Skip to content

Commit 7c8dc0a

Browse files
authored
Merge pull request #37 from jonsagara/feature/net10
Added support for .NET 10.
2 parents 79fd01b + e87cc0c commit 7c8dc0a

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
4+
5+
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
46

57
<!-- C# Stuff -->
68
<ImplicitUsings>enable</ImplicitUsings>

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": "10.0.100-rc.2.25502.107",
3+
"version": "10.0.100",
44
"rollForward": "latestPatch"
55
}
66
}

src/IdParser.Core.Benchmarks/IdParser.Core.Benchmarks.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net10.0</TargetFramework>
5+
<TargetFrameworks>net10.0</TargetFrameworks>
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="BenchmarkDotNet" Version="0.15.4" />
10-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0-rc.2.25502.107" />
9+
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
10+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/IdParser.Core.Client/IdParser.Core.Client.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net10.0-windows</TargetFramework>
3+
<TargetFrameworks>net10.0-windows</TargetFrameworks>
44
<OutputType>WinExe</OutputType>
55
<AssemblyName>ID Parser</AssemblyName>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
@@ -34,7 +34,7 @@
3434
</Reference>
3535
</ItemGroup>
3636
<ItemGroup>
37-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0-rc.2.25502.107" />
37+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
3838
<PackageReference Include="Newtonsoft.Json" Version="13.0.4" />
3939
<PackageReference Include="System.Data.DataSetExtensions" Version="4.5.0" />
4040
</ItemGroup>

src/IdParser.Core.Test/IdParser.Core.Test.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
65
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
76
<AssemblyTitle>IdParser.Core.Test</AssemblyTitle>
87
<Product>IdParser.Core.Test</Product>
@@ -31,7 +30,7 @@
3130
</Content>
3231
</ItemGroup>
3332
<ItemGroup>
34-
<PackageReference Include="xunit.v3" Version="3.1.0" />
33+
<PackageReference Include="xunit.v3" Version="3.2.0" />
3534
</ItemGroup>
3635

3736
<ItemGroup>

src/IdParser.Core/IdParser.Core.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
5-
4+
65
<!-- NuGet -->
7-
<Version>3.2.0-alpha1</Version>
6+
<Version>3.2.0</Version>
87
<AssemblyVersion>3.2.0</AssemblyVersion>
98
<FileVersion>3.2.0</FileVersion>
109
<Authors>Connor O'Shea, Jon Sagara</Authors>
@@ -47,7 +46,7 @@
4746
</ItemGroup>
4847

4948
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
50-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0-rc.2.25502.107" />
49+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
5150
</ItemGroup>
5251

5352
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|net6.0|AnyCPU'">

0 commit comments

Comments
 (0)