Skip to content

Commit 58e3987

Browse files
committed
[C#] 0.3.0. .NET 5 support is added.
1 parent 01172be commit 58e3987

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.github/workflows/CD.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
submodules: true
2121
- name: Test
22-
run: dotnet test -c Release -f netcoreapp3.1
22+
run: dotnet test -c Release -f net5
2323
- name: Generate PDF with CSharp code
2424
if: github.event_name == 'push'
2525
run: |

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;netcoreapp2.2</TargetFrameworks>
5+
<TargetFrameworks>net472;netcoreapp3.1;net5</TargetFrameworks>
66
<IsPackable>false</IsPackable>
77
<LangVersion>latest</LangVersion>
88
</PropertyGroup>

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.0</TargetFrameworks>
4+
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
55
<IsPackable>false</IsPackable>
66
<LangVersion>latest</LangVersion>
77
</PropertyGroup>

csharp/Platform.Collections/Platform.Collections.csproj

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
<PropertyGroup>
44
<Description>LinksPlatform's Platform.Collections Class Library</Description>
5-
<Copyright>Konstantin Diachenko</Copyright>
5+
<Copyright>konard;tynkute</Copyright>
66
<AssemblyTitle>Platform.Collections</AssemblyTitle>
7-
<VersionPrefix>0.2.1</VersionPrefix>
8-
<Authors>Konstantin Diachenko</Authors>
9-
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks>
7+
<VersionPrefix>0.3.0</VersionPrefix>
8+
<Authors>konard;tynkute</Authors>
9+
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
1010
<AssemblyName>Platform.Collections</AssemblyName>
1111
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
1212
<PackageId>Platform.Collections</PackageId>
@@ -25,7 +25,12 @@
2525
<IncludeSymbols>true</IncludeSymbols>
2626
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2727
<LangVersion>latest</LangVersion>
28-
<PackageReleaseNotes>Added GetElementOrDefault and TryGetElement extension methods for Arrays and Lists.</PackageReleaseNotes>
28+
<PackageReleaseNotes>.NET 5 support is added.
29+
Platform.Interfaces dependency updated from 0.3.0 to 0.4.0.
30+
Platform.Disposables dependency updated from 0.2.0 to 0.3.0.
31+
Platform.Ranges dependency updated from 0.2.0 to 0.3.0.
32+
Platform.Random dependency updated from 0.1.0 to 0.2.0.
33+
Comments are added to some types.</PackageReleaseNotes>
2934
</PropertyGroup>
3035

3136
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) AND '$(MSBuildRuntimeType)' == 'Core' AND '$(OS)' != 'Windows_NT'">

0 commit comments

Comments
 (0)