将msbuild参数传递给dotnet运行命令

时间:2018-07-20 19:51:13

标签: msbuild .net-core dotnet-cli

我们可以将msbuild参数传递给dotnet build:

dotnet build MyApp.csproj /p:SolutionDir=C:\MyApp

如何使用dotnet run做同样的事情?

这不起作用:

dotnet run MyApp.csproj /p:SolutionDir=C:\MyApp

我们要记住的用例是将dotnet watchrun命令一起使用,并将msbuild参数传递给run命令的隐式build步骤。

1 个答案:

答案 0 :(得分:1)

dotnet build MyApp.csproj /p:SolutionDir=C:\MyApp & dotnet run myApp.csproj --no-build