I have a solution with a lot of related .csproj files.
Each .csproj file has <Target Name="PublishQA">...
The build failed while trying to compile the whole solution:
> 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]
When I create a .csproj
project directly, it builds just fine.
How to tell msbuild to transfer target to project files ???
Byron whitlock
source share