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 3a854bc commit cff1b75
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x

- name: Restore
run: dotnet restore
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: 5.0.x
dotnet-version: 6.0.x

- name: Install Sonar Scanner
run: dotnet tool install --global dotnet-sonarscanner
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: 5.0.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 @@ Synchronize GitHub issue labels across repositories

## Requirements

- .NET SDK 5.0
- .NET SDK 6

## Installation

Expand Down
4 changes: 2 additions & 2 deletions src/GitHubLabelSync.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.0.0</Version>
<Version>2.0.0</Version>
<OutputType>Exe</OutputType>
<PackAsTool>true</PackAsTool>
<ToolCommandName>sync-labels</ToolCommandName>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Description>Synchronize GitHub issue labels across repositories</Description>
<Authors>ecoAPM LLC</Authors>
<Company>ecoAPM LLC</Company>
Expand Down
2 changes: 1 addition & 1 deletion test/GitHubLabelSync.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit cff1b75

Please sign in to comment.