<t>Issue:<br/>
<br/>
The issue raises after .NET 6 migration.<br/>
There's a new feature that blocks multiple files from being copied to the same target directory with the same file name.<br/>
See https://learn.microsoft.com/en-us/dotnet/core/compatibility/sdk/6.0/duplicate-files-in-output<br/>
<br/>
Solution #1 (workaround):<br/>
<br/>
You can add the following build property to all your publishable (*.Web) projects' *.csproj files.<br/>
This property will bypass this check and works as previously, in .NET5.<br/>
<br/>
<br/>
false<br/>
<br/>
<br/>
```<br/>
<br/>
Solution #2:<br/>
<br/>
Exclude the problematic files to be copied to the output folder.<br/>
In this example we'll exclude these files: `compilerconfig.json` and `package.json`.<br/>
<br/>
Add the following lines to your `common.props` (located in the root directory of your solution):<br/>
<br/>
```<br/>
<br/>
<br/>
true<br/>
Never<br/>
<br/>
<br/>
```</t>