Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

Commit

Permalink
(GH-95) Added support for .net core 3.0 in .NET Core Tool
Browse files Browse the repository at this point in the history
fixes #95
  • Loading branch information
AdmiringWorm committed Dec 19, 2019
1 parent 599d2ed commit 9b557a3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ os:
- linux
- osx
mono: latest
dotnet: 2.1.603
dotnet: 3.0.100

cache:
directories:
Expand Down
2 changes: 1 addition & 1 deletion Source/Codecov.Tests/Codecov.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.msbuild" Version="2.7.0">
Expand Down
2 changes: 1 addition & 1 deletion Source/Codecov.Tool/Codecov.Tool.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.0</TargetFrameworks>
<CodeAnalysisRuleSet>.\Codecov.ruleset</CodeAnalysisRuleSet>
<PackageId>Codecov.Tool</PackageId>
<ToolCommandName>codecov</ToolCommandName>
Expand Down
2 changes: 1 addition & 1 deletion Source/Codecov/Codecov.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup Condition="'$(TargetFramework)' == ''">
<PropertyGroup Condition="'$(TargetFrameworks)' == ''">
<TargetFramework>netcoreapp2.1</TargetFramework>
<RuntimeIdentifiers>win7-x64;linux-x64;osx-x64</RuntimeIdentifiers>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
image:
- Ubuntu
- Visual Studio 2017
- Visual Studio 2019

pull_requests:
do_not_increment_build_number: true
Expand Down

0 comments on commit 9b557a3

Please sign in to comment.