File tree 2 files changed +4
-3
lines changed
src/MdDocs.MSBuild.IntegrationTest
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,9 @@ if ($env:TF_BUILD) {
4
4
Write-Host " ##[group]Install .NET SDK"
5
5
}
6
6
7
- # Install .NET 6 runtime (requried for running tests on this platform)
8
- ./ build/ dotnet- install.ps1 - Channel 6.0 - Runtime dotnet
7
+ # Install .NET 6 SDK (required for running tests on this platform)
8
+ # The MSBuild Integration tests require the SDK to be present, so just installing the runtime is not sufficient
9
+ ./ build/ dotnet- install.ps1 - Version 6.0 .404
9
10
10
11
# Install SDK and runtime as specified in global.json
11
12
./ build/ dotnet- install.ps1 - JsonFile " $PSScriptRoot /global.json"
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ private static IEnumerable<MSBuildRuntimeInfo> MSBuildRuntimes
31
31
{
32
32
get
33
33
{
34
- yield return new MSBuildRuntimeInfo ( MSBuildRuntimeType . Core , Version . Parse ( "6.0.100 " ) ) ;
34
+ yield return new MSBuildRuntimeInfo ( MSBuildRuntimeType . Core , Version . Parse ( "6.0.400 " ) ) ;
35
35
yield return new MSBuildRuntimeInfo ( MSBuildRuntimeType . Core , Version . Parse ( "7.0.100" ) ) ;
36
36
yield return new MSBuildRuntimeInfo ( MSBuildRuntimeType . Full , Version . Parse ( "17.0" ) ) ;
37
37
}
You can’t perform that action at this time.
0 commit comments