Skip to content

Commit 2764582

Browse files
authored
Update to dotnet core 3.1 (#20)
1 parent 60be9f3 commit 2764582

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ solution: NugetUtility.sln
33
mono: none
44
sudo: required
55
dist: xenial
6-
dotnet: 2.2
6+
dotnet: 3.1
77
script:
88
- dotnet restore
99
- dotnet build

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Nuget License Utility [![Build Status](https://travis-ci.com/tomchavakis/nuget-license.svg?branch=develop)](https://travis-ci.com/tomchavakis/nuget-license.svg?branch=develop) [![NuGet](https://img.shields.io/nuget/v/BeatPulse.svg)]([https://www.nuget.org/packages/dotnet-project-licenses](https://www.nuget.org/packages/dotnet-project-licenses/))
22

33

4-
A .net core tool to print the licenses of a project.
4+
A .net core tool to print the licenses of a project. This tool support .NET Core and .NET Standard Projects.
55

66
## Usage
77

src/NugetUtility.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>netcoreapp2.2</TargetFramework>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
66
<IsPackable>true</IsPackable>
77
<PackAsTool>true</PackAsTool>
88
<PackageType>DotnetTool</PackageType>
99
<RepositoryType>git</RepositoryType>
1010
<PackageId>dotnet-project-licenses</PackageId>
1111
<ToolCommandName>dotnet-project-licenses</ToolCommandName>
12-
<Version>1.1.1</Version>
12+
<Version>1.2.0</Version>
1313
<Authors>Tom Chavakis</Authors>
1414
<Company>-</Company>
1515
<Title>.NET Core Tool to print a list of the licenses of a projects</Title>
@@ -18,8 +18,8 @@
1818
</PropertyGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="CommandLineParser" Version="2.4.3" />
22-
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
21+
<PackageReference Include="CommandLineParser" Version="2.7.82" />
22+
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
2323
</ItemGroup>
2424

2525
</Project>

0 commit comments

Comments
 (0)