Skip to content

Commit

Permalink
(GH-145) Add support for .NET 5.0
Browse files Browse the repository at this point in the history
fixes #145
  • Loading branch information
AdmiringWorm committed Feb 13, 2021
1 parent fbdd94a commit fa8f12b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Source/Cake.Codecov.Tests/Cake.Codecov.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks Condition="'$(OS)' != 'Unix'">netcoreapp2.1;net461</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Unix'">netcoreapp2.1</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' != 'Unix'">net50;netcoreapp2.1;net461</TargetFrameworks>
<TargetFrameworks Condition="'$(OS)' == 'Unix'">net50;netcoreapp2.1</TargetFrameworks>
<LangVersion>8.0</LangVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/Cake.Codecov/Cake.Codecov.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Description>Cake addin that extends Cake with the ability to use Codecov (.NET Edition).</Description>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\Cake.Codecov.xml</DocumentationFile>
<NeutralLanguage>en-GB</NeutralLanguage>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<TargetFrameworks>net50;netstandard2.0;net461</TargetFrameworks>
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<!-- Package information -->
Expand Down

0 comments on commit fa8f12b

Please sign in to comment.