Reputation: 1525
I've got a solution with multiple .NET 3.5 projects.
Is there a way I can create a "global" AssemblyInfo.cs
so that all project AssemblyInfo.cs
files can reference from?
Upvotes: 16
Views: 14750
Reputation: 2596
Create AssemblyInfoInc.cs somewhere in the root of your solution, add global attributes there and add as link to each project.
File Add Dialog:
Upvotes: 42