Skip to content

Commit

Permalink
Support for .NET 5 is added
Browse files Browse the repository at this point in the history
  • Loading branch information
Konard committed Jun 29, 2021
1 parent 51ebe11 commit 87ea911
Show file tree
Hide file tree
Showing 4 changed files with 3 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
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,3 @@ org.kde.konsole.desktop
*-swp
*.kate-swp
.swp.*

# GitHub refuses chages to .github folder at the moment
.github/
2 changes: 1 addition & 1 deletion csharp/Platform.IO.Tests/Platform.IO.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.1</TargetFrameworks>
<TargetFrameworks>net472;netcoreapp2.1;netcoreapp3.1;net5</TargetFrameworks>
<IsPackable>false</IsPackable>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion csharp/Platform.IO/Platform.IO.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<AssemblyTitle>Platform.IO</AssemblyTitle>
<VersionPrefix>0.2.1</VersionPrefix>
<Authors>Konstantin Diachenko</Authors>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>net472;netstandard2.0;netstandard2.1;net5</TargetFrameworks>
<AssemblyName>Platform.IO</AssemblyName>
<PackageId>Platform.IO</PackageId>
<PackageTags>LinksPlatform;IO;ConsoleCancellation;ConsoleHelpers;FileHelpers;StreamExtensions</PackageTags>
Expand Down

0 comments on commit 87ea911

Please sign in to comment.