Ever had a solution with loads of projects? You must be familiar with the fact that we always forget to update the
AssemblyInfo
file for each project. A lot of data in that
AssemblyInfo
is copied to other projects and maintaining them (updating version numbers for example) is forgotten most of the time. Do you recognize yourself? Well, here's a tip / trick that makes you have a good weekend. ;)
If we could create an
AssemblyInformation file that would be shared, we don't have to think about updating all projects. We could just update one single file and recompile, all projects are updated accordingly. Here's the good news, we can!
Right click your solution in the Solution Explorer and choose [ Add > New Item ].
New in the new created class, we'll enter all shared assembly information, for example:
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("MyCompany")]
[assembly: AssemblyProduct("This is my new funky product!")]
[assembly: AssemblyCopyright("Copyright © MyCompany 2011")]
[assembly: AssemblyTrademark("")]
[assembly: ComVisible(false)]
Now we repeat this step, add a new item to the solution, and name it
SolutionVersion.cs. We add solution version information in this file:
using System.Reflection;
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
So far so good, we now need to add the files to our existing projects. Right click a project and choose [ Add > Existing Item ]. In the dialog box that appears, browse to the folder where
SolutionInfo.cs and
SolutionVersion.cs are stored, and select them both. Now the trick is to click on the little arrow next to the 'Add' button, and choose 'Add as Link'.
Don't worry that your project doesn't compile anymore. The
AssemblyInformation
is now duplicated, and the C# compiler does not like that. You need to remove the duplicates from the
AssemblyInfo.cs file so it looks like this:
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("WinFormsTestProject")]
[assembly: AssemblyDescription("This is my funky description")]
[assembly: Guid("223d5eba-d959-4337-bd8f-cc64163c0daf")]
Now compile your project and you'll see it works! (at least the assembly information compiles, the rest is up to you :-)
You can repeat this step (adding links to the solution files) for each project in your solution. If you update the
SolutionInfo file and recompile your projects, you'll see that the information is adopted in your assemblies.
I love it when a plan comes together. ;)
I'm developing software for over two decades. I'm working as a cloud solution architect and a team lead at 4DotNet in The Netherlands.
In my current position, I love to help customers with their journey to the cloud. I like to create highly performant software and to help team members to a higher level of software development.
My focus is on the Microsoft development stack, mainly C# and the Microsoft Azure Cloud. I also have a strong affinity with Angular. As a result of my contributions to the community, I received the Microsoft MVP Award for Microsoft Azure.