Specifying the output path (commonly by using the -o command line option to dotnet build or dotnet publish) when building or publishing a solution can lead to issues, as multiple projects building to the same path may override each other's files.
We should either block specifying the output path for a solution, or do something to fix the behavior (for example by appending the project name to the specified output path for each project).
Related:
Specifying the output path (commonly by using the
-ocommand line option todotnet buildordotnet publish) when building or publishing a solution can lead to issues, as multiple projects building to the same path may override each other's files.We should either block specifying the output path for a solution, or do something to fix the behavior (for example by appending the project name to the specified output path for each project).
Related: