Skip to content

Commit d357d40

Browse files
authored
Merge pull request #635 from buchwasa/dotnet6
Update to .NET 6
2 parents 0208797 + 4cb125e commit d357d40

File tree

27 files changed

+41
-37
lines changed

27 files changed

+41
-37
lines changed

.azure-pipelines/templates/linux/compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
steps:
22
- task: UseDotNet@2
3-
displayName: Use .NET SDK 5.0.203
3+
displayName: Use .NET SDK 6.0.201
44
inputs:
55
packageType: sdk
6-
version: 5.0.203
6+
version: 6.0.201
77

88
- task: DotNetCoreCLI@2
99
displayName: Compile common code

.azure-pipelines/templates/osx/compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
steps:
22
- task: UseDotNet@2
3-
displayName: Use .NET SDK 5.0.203
3+
displayName: Use .NET SDK 6.0.201
44
inputs:
55
packageType: sdk
6-
version: 5.0.203
6+
version: 6.0.201
77

88
- task: DotNetCoreCLI@2
99
displayName: Compile common code and macOS Helpers

.azure-pipelines/templates/osx/pack.signed/step3-pack.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ steps:
77
downloadPath: '$(Build.StagingDirectory)/payload'
88

99
- task: UseDotNet@2
10-
displayName: Use .NET SDK 5.0.203
10+
displayName: Use .NET SDK 6.0.201
1111
inputs:
1212
packageType: sdk
13-
version: 5.0.203
13+
version: 6.0.201
1414

1515
- script: dotnet tool install --global nbgv
1616
displayName: Install Nerdbank.GitVersioning tool

.azure-pipelines/templates/windows/compile.signed.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ steps:
1111
signType: '$(SignType)'
1212

1313
- task: UseDotNet@2
14-
displayName: Use .NET SDK 5.0.203
14+
displayName: Use .NET SDK 6.0.201
1515
inputs:
1616
packageType: sdk
17-
version: 5.0.203
17+
version: 6.0.201
1818

1919
- task: NuGetToolInstaller@0
2020
displayName: Install NuGet tool >=4.3.0

.azure-pipelines/templates/windows/compile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
steps:
22
- task: UseDotNet@2
3-
displayName: Use .NET SDK 5.0.203
3+
displayName: Use .NET SDK 6.0.201
44
inputs:
55
packageType: sdk
6-
version: 5.0.203
6+
version: 6.0.201
77

88
- task: DotNetCoreCLI@2
99
displayName: Restore packages

.github/workflows/build-installers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET
2121
uses: actions/setup-dotnet@v1
2222
with:
23-
dotnet-version: 5.0.103
23+
dotnet-version: 6.0.201
2424

2525
- name: Install dependencies
2626
run: dotnet restore --force

.github/workflows/build-signed-deb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup .NET
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 5.0.103
20+
dotnet-version: 6.0.201
2121

2222
- name: Install dependencies
2323
run: dotnet restore --force

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup .NET
2525
uses: actions/setup-dotnet@v1
2626
with:
27-
dotnet-version: 5.0.103
27+
dotnet-version: 6.0.201
2828

2929
- name: Install dependencies
3030
run: dotnet restore

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/out/shared/Git-Credential-Manager/bin/Debug/net5.0/git-credential-manager-core.dll",
13+
"program": "${workspaceFolder}/out/shared/Git-Credential-Manager/bin/Debug/net6.0/git-credential-manager-core.dll",
1414
"args": ["get"],
1515
"cwd": "${workspaceFolder}/out/shared/Git-Credential-Manager",
1616
"console": "integratedTerminal",
@@ -22,7 +22,7 @@
2222
"request": "launch",
2323
"preLaunchTask": "build",
2424
// If you have changed target frameworks, make sure to update the program path.
25-
"program": "${workspaceFolder}/out/shared/Git-Credential-Manager/bin/Debug/net5.0/git-credential-manager-core.dll",
25+
"program": "${workspaceFolder}/out/shared/Git-Credential-Manager/bin/Debug/net6.0/git-credential-manager-core.dll",
2626
"args": ["store"],
2727
"cwd": "${workspaceFolder}/out/shared/Git-Credential-Manager",
2828
"console": "integratedTerminal",

.vscode/tasks.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
"type": "shell",
5757
"group": "test",
5858
"args": [
59-
"~/.nuget/packages/reportgenerator/*/*/net5.0/ReportGenerator.dll",
59+
"~/.nuget/packages/reportgenerator/*/*/net6.0/ReportGenerator.dll",
6060
"-reports:${workspaceFolder}/**/TestResults/**/coverage.cobertura.xml",
6161
"-targetdir:${workspaceFolder}/out/code-coverage"
6262
],
@@ -71,7 +71,7 @@
7171
"type": "shell",
7272
"group": "test",
7373
"args": [
74-
"${env:USERROFILE}/.nuget/packages/reportgenerator/*/*/net5.0/ReportGenerator.dll",
74+
"${env:USERROFILE}/.nuget/packages/reportgenerator/*/*/net6.0/ReportGenerator.dll",
7575
"-reports:${workspaceFolder}/**/TestResults/**/coverage.cobertura.xml",
7676
"-targetdir:${workspaceFolder}/out/code-coverage"
7777
],

0 commit comments

Comments
 (0)