Last active
June 28, 2017 09:29
-
-
Save kunjee17/858bf1462896dc174a6515385601bfc3 to your computer and use it in GitHub Desktop.
reset dot net core sdk while trying different version of it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
echo was: | |
dotnet --version | |
REM 1.0.1 | |
REM pushd C:\dotnetcli\dotnet-1.1.1-sdk-win-x64 | |
REM 1.0.4 | |
pushd C:\dotnetcli\dotnet-dev-win-x64.1.0.4 | |
set PATH=%CD%;%PATH% | |
popd | |
echo now: | |
dotnet --version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment