What are the best practices for using Assembly Attributes?

后端 未结 8 1251
北荒
北荒 2020-12-12 09:16

I have a solution with multiple project. I am trying to optimize AssemblyInfo.cs files by linking one solution wide assembly info file. What are the best practices for doing

8条回答
  •  萌比男神i
    2020-12-12 09:19

    To share a file between multiple projects you can add an existing file as a link.

    To do this, add an existing file, and click on "Add as Link" in the file selector.
    (source: free.fr)

    As for what to put in the shared file, I would suggest putting things that would be shared across assemblies. Things like copyright, company, perhaps version.

提交回复
热议问题