Skip to content

Commit 778b6e4

Browse files
committed
Update .NET SDK version references
1 parent 4c37d59 commit 778b6e4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

azure-pipelines.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ stages:
119119
clean: true
120120
submodules: true # keep the warnings quiet about the wiki not being enlisted
121121
- task: UseDotNet@2
122-
displayName: Install .NET 8.0.201 SDK
122+
displayName: Install .NET 8.0.300 SDK
123123
inputs:
124124
packageType: sdk
125-
version: 8.0.201
125+
version: 8.0.300
126126
- script: dotnet --info
127127
displayName: Show dotnet SDK info
128128
- bash: |

azure-pipelines/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- template: install-dependencies.yml
2424
- pwsh: |
2525
Invoke-WebRequest -Uri "https://dot.net/v1/dotnet-install.ps1" -OutFile dotnet-install.ps1
26-
& .\dotnet-install.ps1 -Architecture x86 -Version 8.0.201 -InstallDir "C:\Program Files (x86)\dotnet\" -NoPath -Verbose
26+
& .\dotnet-install.ps1 -Architecture x86 -Version 8.0.300 -InstallDir "C:\Program Files (x86)\dotnet\" -NoPath -Verbose
2727
displayName: ⚙ Install 32-bit .NET SDK and runtimes
2828
2929
- template: dotnet.yml

test/Nerdbank.GitVersioning.Tests/MSBuildExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ internal static void LoadMSBuild()
2525
if (IntPtr.Size == 4)
2626
{
2727
// 32-bit .NET runtime requires special code to find the x86 SDK (where MSBuild is).
28-
MSBuildLocator.RegisterMSBuildPath(@"C:\Program Files (x86)\dotnet\sdk\8.0.201");
28+
MSBuildLocator.RegisterMSBuildPath(@"C:\Program Files (x86)\dotnet\sdk\8.0.300");
2929
}
3030
else
3131
{

0 commit comments

Comments
 (0)