We\'re using Git and we have a solution which is targeting the full net framework. A couple of days ago, I\'ve started migrating the solution to .net core. Unfortunately, someth
I had same error and bin/obj cleanup did not help. After a lengthy investigation I have found that I have mistakenly overridden IntermediateOutputPath
to point to the same directory for all my projects. This messed up NuGet intermediate files during parallel build. Fixing Build.Directory.props
to include $(MSBuildProjectName)
in IntermediateOutputPath
resolved the issue for me.