I have a solution with multiple projects. Each have an assemblyinfo.cs . file Each of these files have a section that is particular for each project like
[assembly: AssemblyTitle(" Activity Manager")]
[assembly: AssemblyDescrip tion("Activity Manager for .Net 3.5 Framework")]
I also have a global assemblyinfo.cs file which has items that are the same for all projects like
[assembly: AssemblyCompany ("MyCompany" )]
[assembly: AssemblyCopyrig ht("© 2010 MyCompany Ltd")]
[assembly: AssemblyVersion ("11.1.1.18824" )]
[assembly: AssemblyFileVer sion("11.1.1.18 824")]
Is there a way of combining the 2 or including the global section in the assemblyinfo.cs for each project.
In C++ I can do a #include but that doesn't work in c#.
[assembly: AssemblyTitle(" Activity Manager")]
[assembly: AssemblyDescrip tion("Activity Manager for .Net 3.5 Framework")]
I also have a global assemblyinfo.cs file which has items that are the same for all projects like
[assembly: AssemblyCompany ("MyCompany" )]
[assembly: AssemblyCopyrig ht("© 2010 MyCompany Ltd")]
[assembly: AssemblyVersion ("11.1.1.18824" )]
[assembly: AssemblyFileVer sion("11.1.1.18 824")]
Is there a way of combining the 2 or including the global section in the assemblyinfo.cs for each project.
In C++ I can do a #include but that doesn't work in c#.
Comment