-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow custom OutputFile #10
Comments
Actually not - I never ran into problems with this. |
I have run into this same issue with multitargeting and parallel builds. My workaround has just been to limit MSBuild to 1 CPU. The actual error message is:
Would it be possible to include the short target framework moniker into the initial file name when multitargeting and have it stripped when it's copied to the appropriate output directory? Example: .NET Standard 2.0: This is how I handle multiple frameworks for PublicApiGenerator. Granted, I don't have to copy to output directories in this case. |
@gtbuchanan copy to output directories and nuget packaging is handled by msbuild, so I have no control over this. |
In multi target solutions, the fixed output path of the
[AssemblyName].ExternalAnnotations.xml
leads to problems. If such a solution is build in parallel multiple programs, will attempt to write possible different content to the same file.Is there a possibility to specify the output folder for the external annotations from the
.csproj
file?The text was updated successfully, but these errors were encountered: