Reusing C# Source Code Across Multiple Assemblies
;
http://weblogs.asp.net/savanness/archive/2003/07/22/10417.aspx
예를 들어,
[assembly:AssemblyCompany("Arithex.com")]
[assembly:AssemblyCopyright("ⓒ 2003 Shawn A. Van Ness. All rights reserved.")]
위와 같은 내용을 모든 프로젝트에서 공유하고 싶을 때가 있습니다.
즉, 하나의 소스에서 고치면 전체 프로젝트에 같이 적용되도록 하고 싶다는 것인데요.
위의 토픽을 보시면 그 방법이 나옵니다. ^^