Skip to content

Commit 368a2d9

Browse files
committed
Upgrade to .NET 10.0 and add corresponding package versions
1 parent 1b468fd commit 368a2d9

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Import Condition="Exists($(PropsAbove))" Project="$(PropsAbove)"/>
77

88
<PropertyGroup>
9-
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
9+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
1010
<RootNamespace>Confix</RootNamespace>
1111
<Nullable>enable</Nullable>
1212
<LangVersion>11</LangVersion>

Directory.Packages.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,15 @@
3939
<PackageVersion Include="Snapshooter.Xunit" Version="0.13.0" />
4040
<PackageVersion Include="FluentAssertions" Version="6.11.0" />
4141
</ItemGroup>
42+
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
43+
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="10.0.0" />
44+
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="10.0.0" />
45+
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
46+
<PackageVersion Include="Microsoft.Extensions.FileSystemGlobbing" Version="10.0.0" />
47+
<PackageVersion Include="Microsoft.Extensions.Http" Version="10.0.0" />
48+
<PackageVersion Include="Microsoft.Extensions.Options" Version="10.0.0" />
49+
<PackageVersion Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.0" />
50+
</ItemGroup>
4251
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
4352
<PackageVersion Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
4453
<PackageVersion Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "9.0.100",
3+
"version": "10.0.100",
44
"rollForward": "latestMinor"
55
}
66
}

0 commit comments

Comments
 (0)