新的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资产?