~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to src/core/StoreProvider/Test/.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
 
 *  $RCSfile$
3
 
 *
4
 
 *  Copyright (C) 2004 Novell, Inc.
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or
7
 
 *  modify it under the terms of the GNU General Public
8
 
 *  License as published by the Free Software Foundation; either
9
 
 *  version 2 of the License, or (at your option) any later version.
10
 
 *
11
 
 *  This program is distributed in the hope that it will be useful,
12
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14
 
 *  General Public License for more details.
15
 
 *
16
 
 *  You should have received a copy of the GNU General Public
17
 
 *  License along with this program; if not, write to the Free
18
 
 *  Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
 
 *
20
 
 *  Author: Russ Young
21
 
 *
22
 
 ***********************************************************************/
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("")]
33
 
[assembly: AssemblyDescription("")]
34
 
[assembly: AssemblyConfiguration("")]
35
 
[assembly: AssemblyCompany("")]
36
 
[assembly: AssemblyProduct("")]
37
 
[assembly: AssemblyCopyright("")]
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("1.0.*")]
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("")]
81
 
[assembly: AssemblyKeyName("")]