Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AssemblyInfo.cs « Assembly « WindowsBase « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9feda362032be4516bd148d25f5a79b1f9922734 (plain)
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
32
33
34
35
36
37
38
39
//
// AssemblyInfo.cs
//
// Author:
//   Iain McCoy (iain@mccoy.id.au)
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2003 Ximian, Inc.  http://www.ximian.com
// (C) 2004 Novell (http://www.novell.com)
//
// this file based on mcs/class/Mono.Data.SqlClient/Assembly/AssemblyInfo.cs

using System;
using System.Reflection;
using System.Runtime.InteropServices;

#if (NET_1_0)
	[assembly: AssemblyVersion ("1.0.3300.0")]
#elif (NET_2_0)
	[assembly: AssemblyVersion ("2.0.3600.0")]
#elif (NET_1_1)
	[assembly: AssemblyVersion ("1.0.5000.0")]        
#endif

/* TODO COMPLETE INFORMATION

[assembly: AssemblyTitle ("")]
[assembly: AssemblyDescription ("")]

[assembly: CLSCompliant (true)]
[assembly: AssemblyFileVersion ("0.0.0.1")]

[assembly: ComVisible (false)]

*/

[assembly: AssemblyDelaySign (true)]
[assembly: AssemblyKeyFile ("../mono.pub")]