1 Star 0 Fork 21

devin.gong/AspNetCore

forked from Microsoft/AspNetCore 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
startvscode.cmd 802 Bytes
一键复制 编辑 原始数据 按行查看 历史
@ECHO OFF
SETLOCAL
:: This command launches a Visual Studio code with environment variables required to use a local version of the .NET Core SDK.
:: This tells .NET Core to use the same dotnet.exe that build scripts use
SET DOTNET_ROOT=%~dp0.dotnet
SET DOTNET_ROOT(x86)=%~dp0.dotnet\x86
:: This tells .NET Core not to go looking for .NET Core in other places
SET DOTNET_MULTILEVEL_LOOKUP=0
:: Put our local dotnet.exe on PATH first so Visual Studio knows which one to use
SET PATH=%DOTNET_ROOT%;%PATH%
:: Sets TFW for Visual Studio Code usage
SET TARGET=net7.0
SET folder=%~1
IF NOT EXIST "%DOTNET_ROOT%\dotnet.exe" (
echo .NET Core has not yet been installed. Run `%~dp0restore.cmd` to install tools
exit /b 1
)
IF "%folder%"=="" (
code .
) else (
code "%folder%"
)
exit /b 1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/gdcx/AspNetCore.git
git@gitee.com:gdcx/AspNetCore.git
gdcx
AspNetCore
AspNetCore
main

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385