Skip to content

Commit cff1b75

Browse files
Upgrade to .NET 6
1 parent 3a854bc commit cff1b75

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- name: Setup .NET Core
1414
uses: actions/setup-dotnet@v1
1515
with:
16-
dotnet-version: 5.0.x
16+
dotnet-version: 6.0.x
1717

1818
- name: Restore
1919
run: dotnet restore
@@ -38,7 +38,7 @@ jobs:
3838
- name: Setup .NET
3939
uses: actions/setup-dotnet@v1
4040
with:
41-
dotnet-version: 5.0.x
41+
dotnet-version: 6.0.x
4242

4343
- name: Install Sonar Scanner
4444
run: dotnet tool install --global dotnet-sonarscanner

.github/workflows/nuget.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/setup-dotnet@v1
1616
with:
17-
dotnet-version: 5.0.x
17+
dotnet-version: 6.0.x
1818

1919
- name: Run tests
2020
run: dotnet test

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Synchronize GitHub issue labels across repositories
1212

1313
## Requirements
1414

15-
- .NET SDK 5.0
15+
- .NET SDK 6
1616

1717
## Installation
1818

src/GitHubLabelSync.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<Version>1.0.0</Version>
3+
<Version>2.0.0</Version>
44
<OutputType>Exe</OutputType>
55
<PackAsTool>true</PackAsTool>
66
<ToolCommandName>sync-labels</ToolCommandName>
7-
<TargetFramework>net5.0</TargetFramework>
7+
<TargetFramework>net6.0</TargetFramework>
88
<Description>Synchronize GitHub issue labels across repositories</Description>
99
<Authors>ecoAPM LLC</Authors>
1010
<Company>ecoAPM LLC</Company>

test/GitHubLabelSync.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net5.0</TargetFramework>
3+
<TargetFramework>net6.0</TargetFramework>
44
<IsPackable>false</IsPackable>
55
</PropertyGroup>
66
<ItemGroup>

0 commit comments

Comments
 (0)