I am including an instance of the same source files in multiple assemblies using the Add As Link option. I specifically need to include an instance of the same source withi
In .NET Core you can also disable the warning in project.json:
{ "buildOptions": { "nowarn": [ "CS0436" ] } }