Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
faniereynders authored Jul 6, 2017
1 parent 7dda3d6 commit 984094c
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
3 changes: 3 additions & 0 deletions dotnet-.net.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off
echo Installing .NET Core SDK Helper...
setx path "%PATH%;%CD%"
44 changes: 44 additions & 0 deletions dotnet-sdk.cmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
@echo off

if [%1]==[help] goto help
if [%1]==[] goto help
if [%1]==[list] goto sdk_list
if [%1]==[latest] goto sdk_latest
echo Switching .NET Core SDK version to %1
(
echo {
echo "sdk": {
echo "version": "%1"
echo }
echo }
) > global.json
goto end

:sdk_list
echo The installed .NET Core SDKs are:
dir /b "%programfiles%\dotnet\sdk"
goto end

:sdk_latest
if exist global.json del global.json
echo .NET Core SDK version switched to latest version.
dotnet --version

goto end

:help
echo .NET Core SDK Switcher
echo.
echo Usage: .net sdk [command]
echo Usage: .net sdk [version]
echo.
echo Commands:
echo latest Swtiches to the latest .NET Core SDK version
echo list Lists all installed .NET Core SDKs
echo help Display help
echo.
echo versions:
echo An installed version number of a .NET Core SDK
echo.

:end

0 comments on commit 984094c

Please sign in to comment.