我们可以将msbuild参数传递给dotnet build:
dotnet build MyApp.csproj /p:SolutionDir=C:\MyApp
如何使用dotnet run
做同样的事情?
这不起作用:
dotnet run MyApp.csproj /p:SolutionDir=C:\MyApp
我们要记住的用例是将dotnet watch
与run
命令一起使用,并将msbuild参数传递给run
命令的隐式build
步骤。
答案 0 :(得分:1)
dotnet build MyApp.csproj /p:SolutionDir=C:\MyApp & dotnet run myApp.csproj --no-build