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

AssemblyInfo.cs « Assembly « Cscompmgd « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34075f91a1ed776b71da9c5a09d93e172733a3aa (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
//
// AssemblyInfo.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2003 Ximian, Inc.  http://www.ximian.com
//

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

// General Information about the System.Web.Mobile assembly

#if (NET_1_0)
	[assembly: AssemblyVersion ("7.0.3300.0")]
#endif
#if (NET_1_1)
	[assembly: AssemblyVersion ("7.0.5000.0")]
#endif

[assembly: AssemblyTitle ("Managed C# Compiler")]
[assembly: AssemblyDescription ("Interface for the managed C# compiler")]

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

[assembly: ComVisible (false)]

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