File: AssemblyStaticInfo.cs

package info (click to toggle)
mono-tools 4.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 13,868 kB
  • sloc: cs: 100,909; sh: 3,845; makefile: 2,040; xml: 126
file content (26 lines) | stat: -rw-r--r-- 686 bytes parent folder | download | duplicates (8)
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
//
// AssemblyStaticInfo.cs for Gendarme
//
// Authors:
//	Sebastien Pouliot  <sebastien@ximian.com>
//
// Copyright (C) 2005-2011 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-2011 Novell, Inc. and contributors")]
[assembly: AssemblyCompany ("Novell, Inc.")]

[assembly: CLSCompliant (false)]
[assembly: ComVisible (false)]

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