1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is mozilla.org code.
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 2003
20 * the Initial Developer. All Rights Reserved.
23 * Roy Yokoyama <yokoyama@netscape.com> (original author)
25 * Alternatively, the contents of this file may be used under the terms of
26 * either the GNU General Public License Version 2 or later (the "GPL"), or
27 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
28 * in which case the provisions of the GPL or the LGPL are applicable instead
29 * of those above. If you wish to allow use of your version of this file only
30 * under the terms of either the GPL or the LGPL, and not to allow others to
31 * use your version of this file under the terms of the MPL, indicate your
32 * decision by deleting the provisions above and replace them with the notice
33 * and other provisions required by the GPL or the LGPL. If you do not delete
34 * the provisions above, a recipient may use your version of this file under
35 * the terms of any one of the MPL, the GPL or the LGPL.
37 * ***** END LICENSE BLOCK ***** */
41 using namespace System::Reflection
;
42 using namespace System::Runtime::CompilerServices
;
45 // General Information about an assembly is controlled through the following
46 // set of attributes. Change these attribute values to modify the information
47 // associated with an assembly.
49 [assembly
:AssemblyTitleAttribute("DotNETEmbed")];
50 [assembly
:AssemblyDescriptionAttribute("")];
51 [assembly
:AssemblyConfigurationAttribute("")];
52 [assembly
:AssemblyCompanyAttribute("mozilla.org")];
53 [assembly
:AssemblyProductAttribute("Gecko")];
54 [assembly
:AssemblyCopyrightAttribute("")];
55 [assembly
:AssemblyTrademarkAttribute("")];
56 [assembly
:AssemblyCultureAttribute("")];
59 // Version information for an assembly consists of the following four values:
66 // You can specify all the value or you can default the Revision and Build Numbers
67 // by using the '*' as shown below:
69 [assembly
:AssemblyVersionAttribute("1.0.*")];
72 // In order to sign your assembly you must specify a key to use. Refer to the
73 // Microsoft .NET Framework documentation for more information on assembly signing.
75 // Use the attributes below to control which key is used for signing.
78 // (*) If no key is specified, the assembly is not signed.
79 // (*) KeyName refers to a key that has been installed in the Crypto Service
80 // Provider (CSP) on your machine. KeyFile refers to a file which contains
82 // (*) If the KeyFile and the KeyName values are both specified, the
83 // following processing occurs:
84 // (1) If the KeyName can be found in the CSP, that key is used.
85 // (2) If the KeyName does not exist and the KeyFile does exist, the key
86 // in the KeyFile is installed into the CSP and used.
87 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
88 // When specifying the KeyFile, the location of the KeyFile should be
89 // relative to the project directory.
90 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
91 // documentation for more information on this.
93 [assembly
:AssemblyDelaySignAttribute(false)];
94 [assembly
:AssemblyKeyFileAttribute("DotNETEmbed.snk")];
95 [assembly
:AssemblyKeyNameAttribute("")];