Ai
1 Star 0 Fork 0

anydev/dotnet-minimal-api-integration-testing

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
startvscode.cmd 713 Bytes
一键复制 编辑 原始数据 按行查看 历史
martincostello 提交于 2024-02-14 06:00 +08:00 . Update to ASP.NET Core 9 preview 1
@ECHO OFF
SETLOCAL
:: This command launches Visual Studio Code with environment variables required to use a local version of the .NET SDK.
:: This tells .NET to use the same dotnet.exe that the build script uses.
SET DOTNET_ROOT=%~dp0.dotnetcli
SET DOTNET_ROOT(x86)=%~dp0.dotnetcli\x86
:: Put our local dotnet.exe on PATH first so Visual Studio Code knows which one to use.
SET PATH=%DOTNET_ROOT%;%PATH%
:: Sets the Target Framework for Visual Studio Code.
SET TARGET=net9.0
SET FOLDER=%~1
IF NOT EXIST "%DOTNET_ROOT%\dotnet.exe" (
echo The .NET SDK has not yet been installed. Run `%~dp0build.ps1` to install it
exit /b 1
)
IF "%FOLDER%"=="" (
code .
) else (
code "%FOLDER%"
)
exit /b 1
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/anydev/dotnet-minimal-api-integration-testing.git
git@gitee.com:anydev/dotnet-minimal-api-integration-testing.git
anydev
dotnet-minimal-api-integration-testing
dotnet-minimal-api-integration-testing
dotnet-vnext

搜索帮助