我有一个包含大量关联 .csproj 文件的解决方案。
每个 .csproj 文件都有一个<Target Name="PublishQA">...
.
当我尝试编译整个解决方案时构建失败:
> msbuild mysolution.sln /t:PublishQA`
"c:\myproj.sln" (publishqa target) (1) ->
c:\myproj.sln.metaproj : error MSB4057: The target "PublishQA" does not exist in the project. [c:\myproj.sln]
当我.csproj
直接构建项目时,它构建得很好。
如何告诉 msbuild 将目标传递给项目文件???