Skip to content

Commit

Permalink
Upgrade to .NET 6
Browse files Browse the repository at this point in the history
  • Loading branch information
SteveDesmond-ca committed Nov 12, 2021
1 parent ebb5455 commit c484b01
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
dotnet-version: 6.0.x

- name: Restore
run: dotnet restore
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nuget.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.x
dotnet-version: 6.0.x

- name: Run tests
run: dotnet test
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A simple measure of dependency freshness

## Requirements

- .NET SDK v3.1
- .NET SDK 6

## Installation

Expand Down
2 changes: 1 addition & 1 deletion src/LibYear.Lib/LibYear.Lib.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>4.1.1</Version>
<Version>5.0.0</Version>
<TargetFramework>netstandard2.0</TargetFramework>
<Product>libyear</Product>
<PackageId>libyear-lib</PackageId>
Expand Down
4 changes: 2 additions & 2 deletions src/LibYear/LibYear.App.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>4.1.1</Version>
<Version>5.0.0</Version>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<Product>libyear</Product>
<PackageId>libyear</PackageId>
<ToolCommandName>dotnet-libyear</ToolCommandName>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Authors>ecoAPM LLC</Authors>
<Company>ecoAPM LLC</Company>
<Copyright>ecoAPM LLC</Copyright>
Expand Down
2 changes: 1 addition & 1 deletion test/LibYear.Lib.Tests/LibYear.Lib.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="3.1.0"/>
Expand Down
2 changes: 1 addition & 1 deletion test/LibYear.Tests/LibYear.App.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="3.1.0"/>
Expand Down

0 comments on commit c484b01

Please sign in to comment.