Skip to content

Commit 2748379

Browse files
committed
chore: upgrade to .NET 10.0 stable and add framework-specific dependencies
- Update SDK from RC to stable 10.0.100 release - Configure framework-specific Microsoft.Extensions.Http versions: - net8.0: 8.0.1 - net9.0: 9.0.11 - net10.0: 10.0.0 - Update Devlead.Console to 2025.11.23.493
1 parent de24b05 commit 2748379

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
33
"rollForward": "latestFeature",
4-
"version": "10.0.100-rc.2.25502.107"
4+
"version": "10.0.100"
55
}
66
}

src/DPI/DPI.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
@@ -11,12 +11,14 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Devlead.Console" Version="2025.11.4.431" />
14+
<PackageReference Include="Devlead.Console" Version="2025.11.23.493" />
1515
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
1616
<PackageReference Include="Cake.Core" Version="6.0.0" />
1717
<PackageReference Include="Cake.Common" Version="6.0.0" />
1818
<PackageReference Include="Cake.Bridge.DependencyInjection" Version="2025.11.17.398" />
19-
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.11" />
19+
<PackageReference Include="Microsoft.Extensions.Http" Version="8.0.1 " Condition="'$(TargetFramework)' == 'net8.0'" />
20+
<PackageReference Include="Microsoft.Extensions.Http" Version="9.0.11" Condition="'$(TargetFramework)' == 'net9.0'" />
21+
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" Condition="'$(TargetFramework)' == 'net10.0'" />
2022
</ItemGroup>
2123

2224
<ItemGroup>

0 commit comments

Comments
 (0)