Skip to content

Commit 7269802

Browse files
authored
Merge pull request #288 from NN---/net5.0
.NET 5.0
2 parents 96944cb + 6723971 commit 7269802

File tree

24 files changed

+37
-37
lines changed

24 files changed

+37
-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 Core SDK 3.1.x
3+
displayName: Use .NET SDK 5.0.x
44
inputs:
55
packageType: sdk
6-
version: 3.1.x
6+
version: 5.0.x
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 Core SDK 3.1.x
3+
displayName: Use .NET SDK 5.0.x
44
inputs:
55
packageType: sdk
6-
version: 3.1.x
6+
version: 5.0.x
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 Core SDK 3.1.x
10+
displayName: Use .NET SDK 5.0.x
1111
inputs:
1212
packageType: sdk
13-
version: 3.1.x
13+
version: 5.0.x
1414

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

.azure-pipelines/templates/osx/pack.signed/step5-dist.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ steps:
2020
artifactName: 'tmp.macsymbols'
2121
downloadPath: '$(Build.StagingDirectory)/symbols'
2222

23-
# Skip notarization until we can preserve the hardened runtime bit and sign the .NET Core runtime bits
23+
# Skip notarization until we can preserve the hardened runtime bit and sign the .NET runtime bits
2424
# Tracked: https://github.com/microsoft/Git-Credential-Manager-Core/issues/108
2525
#- script: src/osx/SignFiles.Mac/notarize-pkg.sh -id "$(AppleId)" -p "$(AppleIdPassword)" -pkg "$(Build.StagingDirectory)"/pkg/*.pkg
2626
# displayName: Notarize and staple installer package

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

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

88
- task: UseDotNet@2
9-
displayName: Use .NET Core SDK 3.1.x
9+
displayName: Use .NET SDK 5.0.x
1010
inputs:
1111
packageType: sdk
12-
version: 3.1.x
12+
version: 5.0.x
1313

1414
- task: NuGetToolInstaller@0
1515
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 Core SDK 3.1.x
3+
displayName: Use .NET SDK 5.0.x
44
inputs:
55
packageType: sdk
6-
version: 3.1.x
6+
version: 5.0.x
77

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

.github/workflows/build-installers.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717
with:
1818
fetch-depth: 0 # Indicate full history so Nerdbank.GitVersioning works.
1919

20-
- name: Setup .NET Core
20+
- name: Setup .NET
2121
uses: actions/setup-dotnet@v1
2222
with:
23-
dotnet-version: 3.1.302
23+
dotnet-version: 5.0.103
2424

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414
with:
1515
fetch-depth: 0 # Indicate full history so Nerdbank.GitVersioning works.
1616

17-
- name: Setup .NET Core
17+
- name: Setup .NET
1818
uses: actions/setup-dotnet@v1
1919
with:
20-
dotnet-version: 3.1.302
20+
dotnet-version: 5.0.103
2121

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

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
with:
2222
fetch-depth: 0 # Indicate full history so Nerdbank.GitVersioning works.
2323

24-
- name: Setup .NET Core
24+
- name: Setup .NET
2525
uses: actions/setup-dotnet@v1
2626
with:
27-
dotnet-version: 3.1.302
27+
dotnet-version: 5.0.103
2828

2929
- name: Install dependencies
3030
run: dotnet restore

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dlldata.c
4848
# Benchmark Results
4949
BenchmarkDotNet.Artifacts/
5050

51-
# .NET Core
51+
# .NET
5252
project.lock.json
5353
project.fragment.lock.json
5454
artifacts/

0 commit comments

Comments
 (0)