File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed
src/ProjectTemplates/scripts Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change 11@ ECHO OFF
22SETLOCAL
33
4- :: This command launches a Visual Studio solution with environment variables required to use a local version of the .NET Core SDK.
4+ :: This command launches a Visual Studio solution with environment variables required to use a local version of the .NET SDK.
55
6- :: This tells .NET Core to use the same dotnet.exe that build scripts use
6+ :: This tells .NET to use the same dotnet.exe that build scripts use
77SET DOTNET_ROOT = %~dp0 \.dotnet
88SET DOTNET_ROOT(x86) = %~dp0 \.dotnet\x86
99
10- :: This tells .NET Core not to go looking for .NET Core in other places
10+ :: This tells .NET not to go looking for .NET in other places
1111SET DOTNET_MULTILEVEL_LOOKUP = 0
1212
1313:: Put our local dotnet.exe on PATH first so Visual Studio knows which one to use
@@ -23,7 +23,7 @@ IF "%sln%"=="" (
2323)
2424
2525IF NOT EXIST " %DOTNET_ROOT% \dotnet.exe" (
26- echo .NET Core has not yet been installed. Run `%~dp0 restore.cmd` to install tools
26+ echo .NET has not yet been installed. Run `%~dp0 restore.cmd` to install tools
2727 exit /b 1
2828)
2929
Original file line number Diff line number Diff line change 11@ ECHO OFF
22SETLOCAL
33
4- :: This command launches a Visual Studio solution with environment variables required to use a local version of the .NET Core SDK.
4+ :: This command launches a Visual Studio solution with environment variables required to use a local version of the .NET SDK.
55
6- :: This tells .NET Core to use the same dotnet.exe that build scripts use
6+ :: This tells .NET to use the same dotnet.exe that build scripts use
77SET DOTNET_ROOT = %~dp0 .dotnet
88SET DOTNET_ROOT(x86) = %~dp0 .dotnet\x86
99
10- :: This tells .NET Core not to go looking for .NET Core in other places
10+ :: This tells .NET not to go looking for .NET in other places
1111SET DOTNET_MULTILEVEL_LOOKUP = 0
1212
1313:: Put our local dotnet.exe on PATH first so Visual Studio knows which one to use
@@ -23,7 +23,7 @@ IF "%sln%"=="" (
2323)
2424
2525IF NOT EXIST " %DOTNET_ROOT% \dotnet.exe" (
26- echo .NET Core has not yet been installed. Run `%~dp0 restore.cmd` to install tools
26+ echo .NET has not yet been installed. Run `%~dp0 restore.cmd` to install tools
2727 exit /b 1
2828)
2929
Original file line number Diff line number Diff line change 11@ ECHO OFF
22SETLOCAL
33
4- :: This command launches a Visual Studio Code with environment variables required to use a local version of the .NET Core SDK.
4+ :: This command launches a Visual Studio Code with environment variables required to use a local version of the .NET SDK.
55
6- :: This tells .NET Core to use the same dotnet.exe that build scripts use
6+ :: This tells .NET to use the same dotnet.exe that build scripts use
77SET DOTNET_ROOT = %~dp0 .dotnet
88SET DOTNET_ROOT(x86) = %~dp0 .dotnet\x86
99
10- :: This tells .NET Core not to go looking for .NET Core in other places
10+ :: This tells .NET not to go looking for .NET in other places
1111SET DOTNET_MULTILEVEL_LOOKUP = 0
1212
1313:: Put our local dotnet.exe on PATH first so Visual Studio knows which one to use
@@ -19,7 +19,7 @@ SET TARGET=net10.0
1919SET folder = %~1
2020
2121IF NOT EXIST " %DOTNET_ROOT% \dotnet.exe" (
22- echo .NET Core has not yet been installed. Run `%~dp0 restore.cmd` to install tools
22+ echo .NET has not yet been installed. Run `%~dp0 restore.cmd` to install tools
2323 exit /b 1
2424)
2525
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22
3- # This command launches a Visual Studio code with environment variables required to use a local version of the .NET Core SDK.
3+ # This command launches a Visual Studio code with environment variables required to use a local version of the .NET SDK.
44
5- # This tells .NET Core to use the same dotnet.exe that build scripts use
5+ # This tells .NET to use the same dotnet.exe that build scripts use
66DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " && pwd ) "
77export DOTNET_ROOT=" $DIR /.dotnet"
88
9- # This tells .NET Core not to go looking for .NET Core in other places
9+ # This tells .NET not to go looking for .NET in other places
1010export DOTNET_MULTILEVEL_LOOKUP=0
1111
1212# Put our local dotnet on PATH first so Visual Studio knows which one to use
@@ -16,7 +16,7 @@ export PATH="$DOTNET_ROOT:$PATH"
1616export TARGET=net10.0
1717
1818if [ ! -f " $DOTNET_ROOT /dotnet" ]; then
19- echo " .NET Core has not yet been installed. Run ` ./restore.sh` to install tools."
19+ echo " .NET has not yet been installed. Run ` ./restore.sh` to install tools."
2020 exit 1
2121fi
2222
You can’t perform that action at this time.
0 commit comments