MSBuild nuget RestoreOutputPath如何使其工作?

时间:2017-08-08 18:10:21

标签: msbuild nuget .net-core .net-core-2.0

新的msbuild csproj格式已经集成了nuget命令。通过在项目文件中使用<RestoreOutputPath>obj\profile7</RestoreOutputPath>命令,可以更改将恢复项目资产的默认路径。

但是如果我将<RestoreOutputPath>obj\profile7</RestoreOutputPath>添加到csproj文件后续命令

dotnet restore myproj.sln
dotnet build myproj.sln

产生构建错误

obj\project.assets.json' not found. Run a NuGet package restore to generate this file.

如何告诉MSBuild在构建命令期间从此obj\Profile7路径获取nuget资产?

0 个答案:

没有答案