10 lines
424 B
Batchfile
10 lines
424 B
Batchfile
@Echo off
|
|
|
|
set DNVM_CMD_PATH_FILE="%DOTNET_HOME%\.dotnet\temp-set-envvars.cmd"
|
|
|
|
PowerShell -NoProfile -NoLogo -ExecutionPolicy unrestricted -Command "[System.Threading.Thread]::CurrentThread.CurrentCulture = ''; [System.Threading.Thread]::CurrentThread.CurrentUICulture = '';$CmdPathFile='%DNVM_CMD_PATH_FILE%';& '%~dp0dnvm2.ps1' %*"
|
|
|
|
IF EXIST %DNVM_CMD_PATH_FILE% (
|
|
CALL %DNVM_CMD_PATH_FILE%
|
|
DEL %DNVM_CMD_PATH_FILE%
|
|
)
|