diff options
author | Bevan Weiss <bevan.weiss@gmail.com> | 2024-06-27 18:34:50 +1000 |
---|---|---|
committer | Bob Arnson <github@bobs.org> | 2024-07-04 19:25:49 -0400 |
commit | 596b4c4ae90b757b069a97ef40de67a7d1f9ab73 (patch) | |
tree | 18edf9a51f46ac0724180f1db5d3b0d368f4050c /src/test/sandbox/runtest_menu.bat | |
parent | 83d92ef88270a740bc96609f8d967986e4f91e99 (diff) | |
download | wix-596b4c4ae90b757b069a97ef40de67a7d1f9ab73.tar.gz wix-596b4c4ae90b757b069a97ef40de67a7d1f9ab73.tar.bz2 wix-596b4c4ae90b757b069a97ef40de67a7d1f9ab73.zip |
No longer support downloading within the Sandbox. Just error instead.
Install both the x64 AND the x86 versions of Windows Desktop Runtime.
Needed for the Burn Integration tests.
And having dotnet files in the sandbox directory was annoying, so put
them all into an assets directory
Signed-off-by: Bevan Weiss <bevan.weiss@gmail.com>
Diffstat (limited to 'src/test/sandbox/runtest_menu.bat')
-rw-r--r-- | src/test/sandbox/runtest_menu.bat | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/sandbox/runtest_menu.bat b/src/test/sandbox/runtest_menu.bat index fc6ad93e..cc7bd4cf 100644 --- a/src/test/sandbox/runtest_menu.bat +++ b/src/test/sandbox/runtest_menu.bat | |||
@@ -8,12 +8,12 @@ REM If we do offer the debugger, we better show the IP address too, since it see | |||
8 | REM to change for each invocation of the Sandbox environment | 8 | REM to change for each invocation of the Sandbox environment |
9 | for /f "tokens=2 delims=[]" %%a in ('ping -n 1 -4 ""') do set IPAddr=%%a | 9 | for /f "tokens=2 delims=[]" %%a in ('ping -n 1 -4 ""') do set IPAddr=%%a |
10 | @if %PROCESSOR_ARCHITECTURE%=="ARM64" ( | 10 | @if %PROCESSOR_ARCHITECTURE%=="ARM64" ( |
11 | @if exist C:\sandbox\Debugger\ARM64\msvsmon.exe ( | 11 | @if exist C:\sandbox\assets\Debugger\ARM64\msvsmon.exe ( |
12 | set "MsVsMonPath=C:\sandbox\Debugger\ARM64\msvsmon.exe /noauth /anyuser /nosecuritywarn" | 12 | set "MsVsMonPath=C:\sandbox\assets\Debugger\ARM64\msvsmon.exe /noauth /anyuser /nosecuritywarn" |
13 | ) | 13 | ) |
14 | ) else ( | 14 | ) else ( |
15 | @if exist C:\sandbox\Debugger\x64\msvsmon.exe ( | 15 | @if exist C:\sandbox\assets\Debugger\x64\msvsmon.exe ( |
16 | set "MsVsMonPath=C:\sandbox\Debugger\x64\msvsmon.exe /noauth /anyuser /nosecuritywarn" | 16 | set "MsVsMonPath=C:\sandbox\assets\Debugger\x64\msvsmon.exe /noauth /anyuser /nosecuritywarn" |
17 | ) | 17 | ) |
18 | ) | 18 | ) |
19 | FOR /F "tokens=* USEBACKQ" %%F IN (`powershell -Command "[System.Net.Dns]::GetHostEntry('localhost').HostName"`) DO ( | 19 | FOR /F "tokens=* USEBACKQ" %%F IN (`powershell -Command "[System.Net.Dns]::GetHostEntry('localhost').HostName"`) DO ( |