I have solution that contains multiple projects. Within each project, the Properties folder contains three files:
- AssemblyInfo.cs
- AssemblyVersionInfo.cs (as a link)
- SharedAssemblyInfo.cs (as a link)
This allows me to share the assembly information across each of the projects in the solution.
SharedAssemblyInfo.cs contains a reference to [assembly: CLSCompliant(true)]
.
I am having an issue with duplicate entries.
For example, Project A inherits [assembly: CLSCompliant(true)]
. However, Project B needs to override the default setting. Project B needs to set [assembly: CLSCompliant(false)]
.
Is there way Project B can check for the existence of a setting? If found, then modify the current value.
Thanks.
Steve