Skip to content

Commit

Permalink
Properly allow default parameters for get-buildconfig (microsoft#1683)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThadHouse authored Jun 2, 2021
1 parent ecf2657 commit 07c4d29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/get-buildconfig.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ param (
[string]$Config = "Debug",

[Parameter(Mandatory = $false)]
[ValidateSet("x86", "x64", "arm", "arm64")]
[ValidateSet("x86", "x64", "arm", "arm64", "")]
[string]$Arch = "",

[Parameter(Mandatory = $false)]
[ValidateSet("uwp", "windows", "linux", "macos", "")] # For future expansion
[string]$Platform = "",

[Parameter(Mandatory = $false)]
[ValidateSet("schannel", "openssl")]
[ValidateSet("schannel", "openssl", "")]
[string]$Tls = "",

[Parameter(Mandatory = $false)]
Expand Down

0 comments on commit 07c4d29

Please sign in to comment.