Skip to content

Commit 19b77bf

Browse files
authored
Improve user experience of restoring/building/testing (#2261)
Add open-vs.cmd, restore.sh and restore.cmd. Fix build.cmd, test.cmd and test.sh. We will now always try to install the Windows 10 SDK except if the -skipInstallWindowsSdk switch is provided. This should reduce the number of issues linked to this SDK being missing. Provides a script to allow opening the solution ensuring that the local SDK is used. It won't prevent users to see issue if they open the sln directly but this should reduce friction, especially after the contributing readme is up to date.
1 parent 2a1ef22 commit 19b77bf

10 files changed

+111
-28
lines changed

Build.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -restore -build %*"
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\build.ps1""" -installWindowsSdk -restore -build %*"
33
exit /b %ErrorLevel%

Test.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\common\Build.ps1""" -test -integrationTest %*"
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\build.ps1""" -test -integrationTest %*"
33
exit /b %ErrorLevel%

azure-pipelines.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -120,18 +120,10 @@ stages:
120120
displayName: 'Install Windows SDK'
121121
inputs:
122122
targetType: filePath
123-
filePath: './eng/Install-WindowsSDK.ps1'
123+
filePath: './eng/install-windows-sdk.ps1'
124124
failOnStderr: true
125125
showWarnings: true
126126

127-
# This steps help to understand versions of .NET runtime installed on the machine,
128-
# which is useful to diagnose some governance issues.
129-
- task: DotNetCoreCLI@2
130-
displayName: 'dotnet --info'
131-
inputs:
132-
command: custom
133-
custom: '--info'
134-
135127
- script: eng\common\CIBuild.cmd
136128
-configuration $(_BuildConfig)
137129
-prepareMachine

eng/Install-WindowsSDK.ps1

-16
This file was deleted.

eng/build.ps1

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
[CmdletBinding(PositionalBinding=$false)]
2+
Param(
3+
[string][Alias('c')]$configuration = "Debug",
4+
[string]$platform = $null,
5+
[string] $projects,
6+
[string][Alias('v')]$verbosity = "minimal",
7+
[string] $msbuildEngine = $null,
8+
[bool] $warnAsError = $true,
9+
[bool] $nodeReuse = $true,
10+
[switch][Alias('r')]$restore,
11+
[switch] $deployDeps,
12+
[switch][Alias('b')]$build,
13+
[switch] $rebuild,
14+
[switch] $deploy,
15+
[switch][Alias('t')]$test,
16+
[switch] $integrationTest,
17+
[switch] $performanceTest,
18+
[switch] $sign,
19+
[switch] $pack,
20+
[switch] $publish,
21+
[switch] $clean,
22+
[switch][Alias('bl')]$binaryLog,
23+
[switch][Alias('nobl')]$excludeCIBinarylog,
24+
[switch] $ci,
25+
[switch] $prepareMachine,
26+
[string] $runtimeSourceFeed = '',
27+
[string] $runtimeSourceFeedKey = '',
28+
[switch] $excludePrereleaseVS,
29+
[switch] $nativeToolsOnMachine,
30+
[switch] $help,
31+
[switch] $vs,
32+
[switch] $installWindowsSdk,
33+
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties
34+
)
35+
36+
if ($vs) {
37+
. $PSScriptRoot\common\tools.ps1
38+
39+
# This tells .NET Core to use the bootstrapped runtime
40+
$env:DOTNET_ROOT=InitializeDotNetCli -install:$true -createSdkLocationFile:$true
41+
42+
# This tells MSBuild to load the SDK from the directory of the bootstrapped SDK
43+
$env:DOTNET_MSBUILD_SDK_RESOLVER_CLI_DIR=$env:DOTNET_ROOT
44+
45+
# This tells .NET Core not to go looking for .NET Core in other places
46+
$env:DOTNET_MULTILEVEL_LOOKUP=0;
47+
48+
# Put our local dotnet.exe on PATH first so Visual Studio knows which one to use
49+
$env:PATH=($env:DOTNET_ROOT + ";" + $env:PATH);
50+
51+
# Disable .NET runtime signature validation errors which errors for local builds
52+
$env:VSDebugger_ValidateDotnetDebugLibSignatures=0;
53+
54+
# Launch Visual Studio with the locally defined environment variables
55+
& "$PSScriptRoot\..\TestFx.sln"
56+
57+
return
58+
}
59+
60+
if ($installWindowsSdk) {
61+
& $PSScriptRoot\install-windows-sdk.ps1
62+
} else {
63+
Write-Host "Skipping Windows SDK installation"
64+
}
65+
66+
# Remove extra parameters that are not used by the common build script
67+
$null = $PSBoundParameters.Remove("vs")
68+
$null = $PSBoundParameters.Remove("installWindowsSdk")
69+
70+
& $PSScriptRoot\common\Build.ps1 @PSBoundParameters

eng/install-windows-sdk.ps1

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
if (Test-Path "${env:ProgramFiles(x86)}\Windows Kits\10\UnionMetadata\10.0.16299.0") {
2+
Write-Host "Windows SDK 10.0.16299 is already installed, skipping..."
3+
} else {
4+
Write-Host "Downloading Windows SDK 10.0.16299..."
5+
Invoke-WebRequest -Method Get -Uri https://go.microsoft.com/fwlink/p/?linkid=864422 -OutFile sdksetup.exe -UseBasicParsing
6+
7+
Write-Host "Installing Windows SDK, if setup requests elevation please approve." -ForegroundColor Green
8+
$process = Start-Process -Wait sdksetup.exe -ArgumentList "/quiet", "/norestart", "/ceip off", "/features OptionId.UWPManaged" -PassThru
9+
10+
if ($process.ExitCode -eq 0) {
11+
Remove-Item sdksetup.exe -Force
12+
Write-Host "Installation succeeded"
13+
}
14+
else {
15+
Write-Error "Failed to install Windows SDK (Exit code: $($process.ExitCode))"
16+
}
17+
}

open-vs.cmd

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\build.ps1""" -vs %*"

restore.cmd

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
@echo off
2+
powershell -ExecutionPolicy ByPass -NoProfile -command "& """%~dp0eng\Build.ps1""" -installWindowsSdk -restore %*"

restore.sh

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/env bash
2+
3+
source="${BASH_SOURCE[0]}"
4+
5+
# resolve $SOURCE until the file is no longer a symlink
6+
while [[ -h $source ]]; do
7+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
8+
source="$(readlink "$source")"
9+
10+
# if $source was a relative symlink, we need to resolve it relative to the path where the
11+
# symlink file was located
12+
[[ $source != /* ]] && source="$scriptroot/$source"
13+
done
14+
15+
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16+
"$scriptroot/eng/common/build.sh" --restore $@

test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/common/build.sh" --test $@
16+
"$scriptroot/eng/common/build.sh" --test --integrationTest $@

0 commit comments

Comments
 (0)