We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a759ead + 0400d0e commit bbcc4e8Copy full SHA for bbcc4e8
utils/build.ps1
@@ -109,10 +109,11 @@ PS> .\Build.ps1
109
PS> .\Build.ps1 -WindowsSDKs x64 -ProductVersion 1.2.3 -Test foundation,xctest
110
#>
111
[CmdletBinding(PositionalBinding = $false)]
112
-param(
113
- [string] $SourceCache = "S:\SourceCache",
114
- [string] $BinaryCache = "S:\b",
115
- [string] $ImageRoot = "S:",
+param
+(
+ [System.IO.FileInfo] $SourceCache = "S:\SourceCache",
+ [System.IO.FileInfo] $BinaryCache = "S:\b",
116
+ [System.IO.FileInfo] $ImageRoot = "S:",
117
[ValidateSet("codeview", "dwarf")]
118
[string] $CDebugFormat = "dwarf",
119
0 commit comments