Petezah
Petezah

Reputation: 1525

Create global AssemblyInfo file for all projects

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

Answers (1)

Yauheni Sivukha
Yauheni Sivukha

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:

Adding global assembly info

Upvotes: 42

Related Questions