|
1 /* |
|
2 * Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). |
|
3 * All rights reserved. |
|
4 * |
|
5 * Redistribution and use in source and binary forms, with or without |
|
6 * modification, are permitted provided that the following conditions are met: |
|
7 * |
|
8 * - Redistributions of source code must retain the above copyright notice, |
|
9 * this list of conditions and the following disclaimer. |
|
10 * - Redistributions in binary form must reproduce the above copyright notice, |
|
11 * this list of conditions and the following disclaimer in the documentation |
|
12 * and/or other materials provided with the distribution. |
|
13 * - Neither the name of Nokia Corporation nor the names of its contributors |
|
14 * may be used to endorse or promote products derived from this software |
|
15 * without specific prior written permission. |
|
16 * |
|
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
|
18 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
|
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
|
21 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|
22 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|
23 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
|
24 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
|
25 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
|
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
|
27 * POSSIBILITY OF SUCH DAMAGE. |
|
28 * |
|
29 * Initial Contributors: |
|
30 * Nokia Corporation - initial contribution. |
|
31 * |
|
32 * Contributors: |
|
33 * |
|
34 * Description: |
|
35 * |
|
36 */ |
|
37 |
|
38 using System.Reflection; |
|
39 using System.Runtime.CompilerServices; |
|
40 |
|
41 // |
|
42 // General Information about an assembly is controlled through the following |
|
43 // set of attributes. Change these attribute values to modify the information |
|
44 // associated with an assembly. |
|
45 // |
|
46 [assembly: AssemblyTitle("UI")] |
|
47 [assembly: AssemblyDescription("")] |
|
48 [assembly: AssemblyConfiguration("")] |
|
49 [assembly: AssemblyCompany("Nokia")] |
|
50 [assembly: AssemblyProduct("")] |
|
51 [assembly: AssemblyCopyright("Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.")] |
|
52 [assembly: AssemblyTrademark("")] |
|
53 [assembly: AssemblyCulture("")] |
|
54 |
|
55 // |
|
56 // Version information for an assembly consists of the following four values: |
|
57 // |
|
58 // Major Version |
|
59 // Minor Version |
|
60 // Build Number |
|
61 // Revision |
|
62 // |
|
63 // You can specify all the values or you can default the Revision and Build Numbers |
|
64 // by using the '*' as shown below: |
|
65 |
|
66 [assembly: AssemblyVersion("1.1.0.*")] |
|
67 |
|
68 // |
|
69 // In order to sign your assembly you must specify a key to use. Refer to the |
|
70 // Microsoft .NET Framework documentation for more information on assembly signing. |
|
71 // |
|
72 // Use the attributes below to control which key is used for signing. |
|
73 // |
|
74 // Notes: |
|
75 // (*) If no key is specified, the assembly is not signed. |
|
76 // (*) KeyName refers to a key that has been installed in the Crypto Service |
|
77 // Provider (CSP) on your machine. KeyFile refers to a file which contains |
|
78 // a key. |
|
79 // (*) If the KeyFile and the KeyName values are both specified, the |
|
80 // following processing occurs: |
|
81 // (1) If the KeyName can be found in the CSP, that key is used. |
|
82 // (2) If the KeyName does not exist and the KeyFile does exist, the key |
|
83 // in the KeyFile is installed into the CSP and used. |
|
84 // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. |
|
85 // When specifying the KeyFile, the location of the KeyFile should be |
|
86 // relative to the project output directory which is |
|
87 // %Project Directory%\obj\<configuration>. For example, if your KeyFile is |
|
88 // located in the project directory, you would specify the AssemblyKeyFile |
|
89 // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] |
|
90 // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework |
|
91 // documentation for more information on this. |
|
92 // |
|
93 [assembly: AssemblyDelaySign(false)] |
|
94 [assembly: AssemblyKeyFile("")] |
|
95 [assembly: AssemblyKeyName("")] |