Skip to content

Commit

Permalink
[C#] 0.2.0. .NET 5 support is added.
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Mar 21, 2021
1 parent 8656a96 commit 129426b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
with:
submodules: true
- name: Test
run: dotnet test -c Release -f netcoreapp3.1
run: dotnet test -c Release -f net5
- name: Generate PDF with CSharp code
if: github.event_name == 'push'
run: |
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.Random.Tests/Platform.Random.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions csharp/Platform.Random/Platform.Random.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<Description>LinksPlatform's Platform.Random Class Library</Description>
<Copyright>Konstantin Diachenko</Copyright>
<AssemblyTitle>Platform.Random</AssemblyTitle>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionPrefix>0.2.0</VersionPrefix>
<Authors>Konstantin Diachenko</Authors>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
<AssemblyName>Platform.Random</AssemblyName>
<PackageId>Platform.Random</PackageId>
<PackageTags>LinksPlatform;Random;RandomExtensions;RandomHelpers</PackageTags>
Expand All @@ -24,8 +24,8 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<LangVersion>latest</LangVersion>
<PackageReleaseNotes>Lowest supported version of .NET Framework is now 4.7.2.
Platform.Ranges dependency updated from 0.1.0 to 0.2.0.</PackageReleaseNotes>
<PackageReleaseNotes>.NET 5 support is added.
Platform.Ranges dependency updated from 0.2.0 to 0.3.0.</PackageReleaseNotes>
</PropertyGroup>

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

0 comments on commit 129426b

Please sign in to comment.