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

AssemblyStaticInfo.cs « gendarme - github.com/mono/mono-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c74af5278f9a5ff2613267db4bfbb9adfdafa30a (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
//
// AssemblyStaticInfo.cs for Gendarme
//
// Authors:
//	Sebastien Pouliot  <sebastien@ximian.com>
//
// Copyright (C) 2005-2009 Novell, Inc (http://www.novell.com)
//

using System;
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using System.Security.Permissions;

[assembly: AssemblyTitle ("Gendarme")]
[assembly: AssemblyDescription ("Rule-based assembly analyzer")]
[assembly: AssemblyCopyright ("Copyright (C) 2005-2009 Novell, Inc. and contributors")]
[assembly: AssemblyCompany ("Novell, Inc.")]

[assembly: PermissionSet (SecurityAction.RequestMinimum, Unrestricted = true)]
[assembly: CLSCompliant (false)]
[assembly: ComVisible (false)]

#if RELEASE
[assembly: AssemblyVersion ("2.5.0.0")]
#endif