We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31233d1 commit 0acb9d9Copy full SHA for 0acb9d9
1 file changed
tests/ILVerify/ilverify.ps1
@@ -29,6 +29,9 @@ Write-Host "Repository path: $repo_path"
29
[string] $script = if ($IsWindows) { Join-Path $repo_path "build.cmd" } else { Join-Path $repo_path "build.sh" }
30
[string] $additional_arguments = if ($IsWindows) { "-noVisualStudio" } else { "" }
31
32
+# Set environment variable to disable UpdateXlf target (not needed for IL verification)
33
+$env:UpdateXlfOnBuild = "false"
34
+
35
# Set configurations to build
36
[string[]] $configurations = @("Debug", "Release")
37
0 commit comments