Skip to content

Commit d1fa877

Browse files
authored
feat(deps): update deps to .NET 10 RC 2 #11485 (#11486)
1 parent d277624 commit d1fa877

File tree

48 files changed

+133
-137
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+133
-137
lines changed

.github/workflows/admin-sample.cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ jobs:
318318

319319
- uses: maxim-lobanov/[email protected]
320320
with:
321-
xcode-version: '16.4'
321+
xcode-version: '26.0'
322322

323323
- uses: actions/setup-node@v6
324324
with:

.github/workflows/bit.ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
run: dotnet build src/Bit-CI-release.slnx
5353

5454
- name: Test
55-
run: dotnet test --no-build --verbosity normal --project src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
55+
run: cd src/BlazorUI/Bit.BlazorUI.Tests && dotnet test --no-build --verbosity normal
5656

5757
build:
5858
if: startsWith(github.event.pull_request.title, 'Prerelease') != true && startsWith(github.event.pull_request.title, 'Release') != true && startsWith(github.event.pull_request.title, 'Version') != true
@@ -99,4 +99,4 @@ jobs:
9999
run: dotnet build src/Bit-CI.slnx -p:WarningLevel=0 -p:RunCodeAnalysis=false
100100

101101
- name: Test
102-
run: dotnet test --no-build --verbosity normal --project src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj
102+
run: cd src/BlazorUI/Bit.BlazorUI.Tests/ && dotnet test --no-build

.github/workflows/blazorui.demo.cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ jobs:
196196

197197
- uses: maxim-lobanov/[email protected]
198198
with:
199-
xcode-version: '16.4'
199+
xcode-version: '26.0'
200200

201201
- uses: actions/setup-node@v6
202202
with:

.github/workflows/todo-sample.cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ jobs:
448448

449449
- uses: maxim-lobanov/[email protected]
450450
with:
451-
xcode-version: '16.4'
451+
xcode-version: '26.0'
452452

453453
- name: Create project from Boilerplate
454454
run: |

src/Besql/Bit.Besql/Bit.Besql.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" />
2323
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="9.0.0" Condition="'$(TargetFramework)' == 'net9.0'" />
2424

25-
<PackageReference Include="Microsoft.JSInterop" Version="10.0.0-rc.1.25451.107" Condition="'$(TargetFramework)' == 'net10.0'" />
26-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-rc.1.25451.107" Condition="'$(TargetFramework)' == 'net10.0'" />
27-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-rc.1.25451.107" Condition="'$(TargetFramework)' == 'net10.0'" />
25+
<PackageReference Include="Microsoft.JSInterop" Version="10.0.0-rc.2.25502.107" Condition="'$(TargetFramework)' == 'net10.0'" />
26+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-rc.2.25502.107" Condition="'$(TargetFramework)' == 'net10.0'" />
27+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0-rc.2.25502.107" Condition="'$(TargetFramework)' == 'net10.0'" />
2828
</ItemGroup>
2929

3030
</Project>

src/Besql/Demo/Bit.Besql.Demo.Client/Bit.Besql.Demo.Client.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup>
13-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-rc.1.25451.107" />
13+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.0-rc.2.25502.107" />
1414
</ItemGroup>
1515

1616
<ItemGroup>

src/Besql/Demo/Bit.Besql.Demo/Bit.Besql.Demo.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<ProjectReference Include="..\Bit.Besql.Demo.Client\Bit.Besql.Demo.Client.csproj" />
11-
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0-rc.1.25451.107" />
11+
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.0-rc.2.25502.107" />
1212
</ItemGroup>
1313

1414
<ItemGroup>
@@ -17,15 +17,15 @@
1717
and open Nuget Package Manager Console, and select `Bit.Besql.Demo.Client` project as default project
1818
Then run either Add-Migration MigrationName -OutputDir Data\Migrations or
1919
Optimize-DbContext -OutputDir Data\CompiledModel commands. -->
20-
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0-rc.1.25451.107">
20+
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.0-rc.2.25502.107">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
</PackageReference>
24-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tasks" Version="10.0.0-rc.1.25451.107">
24+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tasks" Version="10.0.0-rc.2.25502.107">
2525
<PrivateAssets>all</PrivateAssets>
2626
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2727
</PackageReference>
28-
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0-rc.1.25451.107">
28+
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0-rc.2.25502.107">
2929
<PrivateAssets>all</PrivateAssets>
3030
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3131
</PackageReference>

src/BlazorUI/Bit.BlazorUI.Assets/Bit.BlazorUI.Assets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<ItemGroup>
2020
<PackageReference Condition="'$(TargetFramework)' == 'net8.0'" Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
2121
<PackageReference Condition="'$(TargetFramework)' == 'net9.0'" Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
22-
<PackageReference Condition="'$(TargetFramework)' == 'net10.0'" Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0-rc.1.25451.107" />
22+
<PackageReference Condition="'$(TargetFramework)' == 'net10.0'" Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0-rc.2.25502.107" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

src/BlazorUI/Bit.BlazorUI.Extras/Bit.BlazorUI.Extras.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<ItemGroup>
2020
<PackageReference Condition="'$(TargetFramework)' == 'net8.0'" Include="Microsoft.AspNetCore.Components.Web" Version="8.0.0" />
2121
<PackageReference Condition="'$(TargetFramework)' == 'net9.0'" Include="Microsoft.AspNetCore.Components.Web" Version="9.0.0" />
22-
<PackageReference Condition="'$(TargetFramework)' == 'net10.0'" Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0-rc.1.25451.107" />
22+
<PackageReference Condition="'$(TargetFramework)' == 'net10.0'" Include="Microsoft.AspNetCore.Components.Web" Version="10.0.0-rc.2.25502.107" />
2323
</ItemGroup>
2424

2525
<ItemGroup>

src/BlazorUI/Bit.BlazorUI.Tests/Bit.BlazorUI.Tests.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="MSTest.Sdk/4.0.0">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Sdk Name="Microsoft.NET.Sdk.Razor" />
44

@@ -18,6 +18,7 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="bunit.web" Version="1.40.0" />
21+
<PackageReference Include="MSTest" Version="4.0.1" />
2122
</ItemGroup>
2223

2324
<ItemGroup>

0 commit comments

Comments
 (0)