(c) 2003 Visual Studio Magazine 
Fawcette Technical Publications


C#	Link All Projects
Listing 1	The SolutionInfo.cs file contains solution-wide information, such as the name of the strong-name keys file, information about the company and products, and version number. All projects in the solution must link to this file. 

using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyCompany("My Company")]
[assembly: AssemblyProduct("My Product")]
[assembly: AssemblyCopyright("(c) My Company")]
[assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyDelaySign(false)]
[assembly: AssemblyKeyFile(@"..\..\..\MyApp.snk")]
[assembly: AssemblyKeyName("")]


C#		Edit Assembly Information
Listing 2	The AssemblyInfo.cs file contains project-specific information, such as the assembly name, description, and locale. You provide version and strong-name information by linking to the SolutionInfo.cs file.  

using System.Reflection;
using System.Runtime.CompilerServices;

[assembly: AssemblyTitle("")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

