~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/core/NU-JpegMeta/.svn/text-base/AssemblyInfo.cs.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

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