Skip to content

Commit fd10fae

Browse files
Add .net6 support
1 parent da7ede7 commit fd10fae

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/CD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
submodules: true
3636
- name: Test CSharp
37-
run: dotnet test -c Release -f net5
37+
run: dotnet test -c Release -f net6
3838

3939
deploy:
4040
needs: [testCpp, testCSharp]

csharp/Platform.Collections.Benchmarks/Platform.Collections.Benchmarks.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>net472;netcoreapp3.1;net5</TargetFrameworks>
5+
<TargetFrameworks>net472;netcoreapp3.1;net5;net6</TargetFrameworks>
66
<IsPackable>false</IsPackable>
77
<LangVersion>latest</LangVersion>
88
<Nullable>enable</Nullable>

csharp/Platform.Collections.Tests/Platform.Collections.Tests.csproj

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

33
<PropertyGroup>
4-
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5;net6</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<LangVersion>latest</LangVersion>
77
<Nullable>enable</Nullable>

csharp/Platform.Collections/Platform.Collections.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssemblyTitle>Platform.Collections</AssemblyTitle>
77
<VersionPrefix>0.3.1</VersionPrefix>
88
<Authors>konard;tynkute</Authors>
9-
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
9+
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5;net6</TargetFrameworks>
1010
<AssemblyName>Platform.Collections</AssemblyName>
1111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1212
<PackageId>Platform.Collections</PackageId>

0 commit comments

Comments
 (0)