forked from SharpRepository/SharpRepository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CommonAssembly.cs
31 lines (26 loc) · 1.59 KB
/
CommonAssembly.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyCompany("SharpRepository")]
[assembly: AssemblyProduct("SharpRepository")]
[assembly: AssemblyCopyright("Copyright © SharpRepository 2013")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The AssemblyVersion is used by the CLR to bind to strongly named assemblies.
// It is stored in the AssemblyDef manifest metadata table of the built assembly,
// and in the AssemblyRef table of any assembly that references it.
// Take care when changing the AssemblyVersion as it may impact referencing
// assemblies.
[assembly: AssemblyVersion("1.2")]
// The AssemblyFileVersion is intended to uniquely identify a build of the individual assembly
// Ideally we would have the build server update this value. This version number is stored
// in the Win32 version resource and can be seen when viewing the Windows Explorer property
// pages for the assembly. The CLR does not care about nor examine the AssemblyFileVersion.
[assembly: AssemblyFileVersion("1.2.0.0")]
// The AssemblyInformationalVersion is intended to represent the version of your entire product.
// The CLR does not care about nor examine the AssemblyInformationalVersion. You will find this
// value represented as the assembly's product version in Windows Explorer.
[assembly: AssemblyInformationalVersion("1.2.0.0")]