Skip to content

Instantly share code, notes, and snippets.

@marckm
Created October 17, 2012 20:26
Show Gist options
  • Save marckm/3907935 to your computer and use it in GitHub Desktop.
Save marckm/3907935 to your computer and use it in GitHub Desktop.
Shared Assembly information
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyDescription("My shared AssemblyInfo sample.")]
#if (DEBUG)
[assembly: AssemblyConfiguration("Development version")]
#else
[assembly: AssemblyConfiguration("Release version")]
#endif
[assembly: AssemblyCompany("Maxime Marck")]
[assembly: AssemblyProduct("DemoApp")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment