~jozilla/uiml.net/uiml.net-tp

« back to all changes in this revision

Viewing changes to Cassowary/Parsing/AssemblyInfo.cs

  • Committer: Jo Vermeulen
  • Date: 2007-09-05 14:26:30 UTC
  • mfrom: (249.1.16 Uiml.net)
  • Revision ID: jo.vermeulen@uhasselt.be-20070905142630-w5eafpsfntbgz0ko
Merged with Jo's main branch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
  Cassowary.net: an incremental constraint solver for .NET
3
 
  (http://lumumba.uhasselt.be/jo/projects/cassowary.net/)
4
 
  
5
 
  Copyright (C) 2005  Jo Vermeulen (jo.vermeulen@uhasselt.be)
6
 
  
7
 
  This program is free software; you can redistribute it and/or
8
 
  modify it under the terms of the GNU Lesser General Public License
9
 
  as published by the Free Software Foundation; either version 2.1
10
 
  of  the License, or (at your option) any later version.
11
 
 
12
 
  This program is distributed in the hope that it will be useful,
13
 
  but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
 
  GNU Lesser General Public License for more details.
16
 
 
17
 
  You should have received a copy of the GNU Lesser General Public License
18
 
  along with this program; if not, write to the Free Software
19
 
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20
 
*/
21
 
 
22
 
using System;
23
 
 
24
 
using System.Reflection;
25
 
using System.Runtime.CompilerServices;
26
 
 
27
 
//
28
 
// General Information about an assembly is controlled through the following 
29
 
// set of attributes. Change these attribute values to modify the information
30
 
// associated with an assembly.
31
 
//
32
 
[assembly: AssemblyTitle("Cassowary.Parsing")]
33
 
[assembly: AssemblyDescription("Parsing support for Cassowary")]
34
 
[assembly: AssemblyConfiguration("")]
35
 
[assembly: AssemblyCompany("")]
36
 
[assembly: AssemblyProduct("")]
37
 
[assembly: AssemblyCopyright("Copyright (C) 2005  Jo Vermeulen (jo.vermeulen@uhasselt.be)")]
38
 
[assembly: AssemblyTrademark("")]
39
 
[assembly: AssemblyCulture("")]
40
 
 
41
 
//
42
 
// Version information for an assembly consists of the following four values:
43
 
//
44
 
//      Major Version
45
 
//      Minor Version 
46
 
//      Build Number
47
 
//      Revision
48
 
//
49
 
// You can specify all the values or you can default the Revision and Build Numbers 
50
 
// by using the '*' as shown below:
51
 
 
52
 
[assembly: AssemblyVersion("0.1.1.*")]
53
 
 
54
 
//
55
 
// In order to sign your assembly you must specify a key to use. Refer to the 
56
 
// Microsoft .NET Framework documentation for more information on assembly signing.
57
 
//
58
 
// Use the attributes below to control which key is used for signing. 
59
 
//
60
 
// Notes: 
61
 
//   (*) If no key is specified, the assembly is not signed.
62
 
//   (*) KeyName refers to a key that has been installed in the Crypto Service
63
 
//       Provider (CSP) on your machine. KeyFile refers to a file which contains
64
 
//       a key.
65
 
//   (*) If the KeyFile and the KeyName values are both specified, the 
66
 
//       following processing occurs:
67
 
//       (1) If the KeyName can be found in the CSP, that key is used.
68
 
//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
69
 
//           in the KeyFile is installed into the CSP and used.
70
 
//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
71
 
//       When specifying the KeyFile, the location of the KeyFile should be
72
 
//       relative to the project output directory which is
73
 
//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
74
 
//       located in the project directory, you would specify the AssemblyKeyFile 
75
 
//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
76
 
//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
77
 
//       documentation for more information on this.
78
 
//
79
 
[assembly: AssemblyDelaySign(false)]
80
 
[assembly: AssemblyKeyFile("Cassowary.Parsing.snk")]
81
 
[assembly: AssemblyKeyName("")]