AssemblyInfo.cs 1.6 KB
Newer Older
N
nulltoken 已提交
1
using System;
T
Tim Clem 已提交
2 3 4
using System.Reflection;
using System.Runtime.InteropServices;

N
nulltoken 已提交
5
// General Information about an assembly is controlled through the following
T
Tim Clem 已提交
6 7
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
8

N
nulltoken 已提交
9
[assembly: AssemblyTitle("LibGit2Sharp")]
N
nulltoken 已提交
10
[assembly: AssemblyDescription("LibGit2Sharp brings all the might and speed of libgit2, a native Git implementation, to the managed world of .Net and Mono.")]
N
nulltoken 已提交
11
[assembly: AssemblyCompany("LibGit2Sharp contributors")]
N
nulltoken 已提交
12 13 14 15 16 17 18 19

#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif

[assembly: AssemblyProduct("LibGit2Sharp")]
N
nulltoken 已提交
20
[assembly: AssemblyCopyright("Copyright © 2011-2014 LibGit2Sharp contributors")]
T
Tim Clem 已提交
21

N
nulltoken 已提交
22 23
[assembly: CLSCompliant(true)]

N
nulltoken 已提交
24 25
// 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
T
Tim Clem 已提交
26
// COM, set the ComVisible attribute to true on that type.
27

T
Tim Clem 已提交
28 29 30
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
31

T
Tim Clem 已提交
32 33 34 35 36
[assembly: Guid("c6f71967-5be1-49f5-b48e-861bff498ea3")]

// Version information for an assembly consists of the following four values:
//
//      Major Version
N
nulltoken 已提交
37
//      Minor Version
T
Tim Clem 已提交
38 39 40
//      Build Number
//      Revision
//
N
nulltoken 已提交
41
// You can specify all the values or you can default the Build and Revision Numbers
T
Tim Clem 已提交
42 43
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
44

N
nulltoken 已提交
45 46
[assembly: AssemblyVersion("0.16.0")]
[assembly: AssemblyFileVersion("0.16.0")]