Skip to content

Commit 161775c

Browse files
authored
Merge pull request #300 from microsoft/master
2 parents 44acfaf + 22fcece commit 161775c

File tree

112 files changed

+1533
-2224
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1533
-2224
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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ steps:
66
displayName: Set version variables
77

88
- script: |
9-
xcopy "out\windows\Installer.Windows\bin\$(configuration)\net461" "$(Build.StagingDirectory)\publish\"
10-
xcopy "out\windows\Payload.Windows\bin\$(configuration)\net461\win-x86" "$(Build.StagingDirectory)\publish\payload\"
9+
xcopy "out\windows\Installer.Windows\bin\$(configuration)\net472" "$(Build.StagingDirectory)\publish\"
10+
xcopy "out\windows\Payload.Windows\bin\$(configuration)\net472\win-x86" "$(Build.StagingDirectory)\publish\payload\"
1111
mkdir "$(Build.StagingDirectory)\publish\payload.sym\"
1212
move "$(Build.StagingDirectory)\publish\payload\*.pdb" "$(Build.StagingDirectory)\publish\payload.sym\"
1313
displayName: Prepare final build artifacts

.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

0 commit comments

Comments
 (0)