Skip to content

Commit f5b249a

Browse files
authored
feat: update to bit 10.3.0 #61 (#62)
1 parent c7c6702 commit f5b249a

File tree

6 files changed

+14
-12
lines changed

6 files changed

+14
-12
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<WasmBuildNative>true</WasmBuildNative>
@@ -10,8 +10,8 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Bit.Besql" Version="9.12.0" />
14-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.9" />
13+
<PackageReference Include="Bit.Besql" Version="10.3.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
1515
</ItemGroup>
1616

1717
</Project>

videos/Bit.Besql/Bit.Besql.Sample/Bit.Besql.Sample.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<ProjectReference Include="..\Bit.Besql.Sample.Client\Bit.Besql.Sample.Client.csproj" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.9" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.1" />
1212
</ItemGroup>
1313

1414
<ItemGroup>
@@ -19,11 +19,11 @@
1919
and open Nuget Package Manager Console, and select `Bit.Besql.Sample` project as default project
2020
Then run either Add-Migration MigrationName -OutputDir Data\Migrations or
2121
Optimize-DbContext -OutputDir Data/CompiledModel commands. -->
22-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.9">
22+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.1">
2323
<PrivateAssets>all</PrivateAssets>
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2525
</PackageReference>
26-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.9">
26+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.1">
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
</PackageReference>

videos/Bit.Besql/Bit.Besql.Sample/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
app.UseStaticFiles();
3030
app.UseAntiforgery();
3131

32+
app.MapStaticAssets();
3233
app.MapRazorComponents<App>()
3334
.AddInteractiveServerRenderMode()
3435
.AddInteractiveWebAssemblyRenderMode()

videos/Bit.Bswup/Bit.Bswup.Sample.Client/Bit.Bswup.Sample.Client.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
@@ -16,11 +16,11 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.9" />
19+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" />
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Bit.Bswup" Version="9.12.0" />
23+
<PackageReference Include="Bit.Bswup" Version="10.3.0" />
2424
<ServiceWorker Include="wwwroot\service-worker.js" PublishedContent="wwwroot\service-worker.published.js" />
2525
</ItemGroup>
2626

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66
<ImplicitUsings>enable</ImplicitUsings>
77
</PropertyGroup>
88

99
<ItemGroup>
1010
<ProjectReference Include="..\Bit.Bswup.Sample.Client\Bit.Bswup.Sample.Client.csproj" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="9.0.9" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.1" />
1212
</ItemGroup>
1313

1414
</Project>

videos/Bit.Bswup/Bit.Bswup.Sample/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
});
4242
app.UseAntiforgery();
4343

44+
app.MapStaticAssets();
4445
app.MapRazorComponents<App>()
4546
.AddInteractiveServerRenderMode()
4647
.AddInteractiveWebAssemblyRenderMode()

0 commit comments

Comments
 (0)