diff options
Diffstat (limited to 'src/test/sandbox/setup_sandbox.bat')
-rw-r--r-- | src/test/sandbox/setup_sandbox.bat | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/sandbox/setup_sandbox.bat b/src/test/sandbox/setup_sandbox.bat new file mode 100644 index 00000000..f74e7535 --- /dev/null +++ b/src/test/sandbox/setup_sandbox.bat | |||
@@ -0,0 +1,16 @@ | |||
1 | @setlocal | ||
2 | @SET DOTNET_VERSION=8.0 | ||
3 | |||
4 | @if not exist AMD64 (mkdir AMD64) | ||
5 | @if not exist ARM64 (mkdir ARM64) | ||
6 | @REM if not exist VSTest (mkdir VSTest) | ||
7 | |||
8 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-x64.zip --output ".\AMD64\dotnet-runtime.zip" | ||
9 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-x64.zip --output ".\AMD64\dotnet-sdk.zip" | ||
10 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-runtime-win-arm64.zip --output ".\ARM64\dotnet-runtime.zip" | ||
11 | curl -L0 https://aka.ms/dotnet/%DOTNET_VERSION%/dotnet-sdk-win-arm64.zip --output ".\ARM64\dotnet-sdk.zip" | ||
12 | |||
13 | REM "%ProgramFiles(x86)%\Microsoft Visual Studio\Installer\vswhere.exe" -prerelease | ||
14 | |||
15 | |||
16 | @endlocal | ||