author | ARIAS Santiago |
Mon, 26 Oct 2009 08:36:15 +0100 | |
changeset 173 | e99fe78cd168 |
permissions | -rw-r--r-- |
173
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
1 |
using System.Reflection; |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
2 |
using System.Resources; |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
3 |
using System.Runtime.CompilerServices; |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
4 |
using System.Runtime.InteropServices; |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
5 |
using System.Windows; |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
6 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
7 |
// General Information about an assembly is controlled through the following |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
8 |
// set of attributes. Change these attribute values to modify the information |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
9 |
// associated with an assembly. |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
10 |
[assembly: AssemblyTitle("GestureControl")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
11 |
[assembly: AssemblyDescription("")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
12 |
[assembly: AssemblyConfiguration("")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
13 |
[assembly: AssemblyCompany("Microsoft IT")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
14 |
[assembly: AssemblyProduct("GestureControl")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
15 |
[assembly: AssemblyCopyright("Copyright © Microsoft IT 2009")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
16 |
[assembly: AssemblyTrademark("")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
17 |
[assembly: AssemblyCulture("")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
18 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
19 |
// Setting ComVisible to false makes the types in this assembly not visible |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
20 |
// to COM components. If you need to access a type in this assembly from |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
21 |
// COM, set the ComVisible attribute to true on that type. |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
22 |
[assembly: ComVisible(false)] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
23 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
24 |
//In order to begin building localizable applications, set |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
25 |
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
26 |
//inside a <PropertyGroup>. For example, if you are using US english |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
27 |
//in your source files, set the <UICulture> to en-US. Then uncomment |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
28 |
//the NeutralResourceLanguage attribute below. Update the "en-US" in |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
29 |
//the line below to match the UICulture setting in the project file. |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
30 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
31 |
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
32 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
33 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
34 |
[assembly: ThemeInfo( |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
35 |
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
36 |
//(used if a resource is not found in the page, |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
37 |
// or application resource dictionaries) |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
38 |
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
39 |
//(used if a resource is not found in the page, |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
40 |
// app, or any theme specific resource dictionaries) |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
41 |
)] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
42 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
43 |
|
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
44 |
// Version information for an assembly consists of the following four values: |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
45 |
// |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
46 |
// Major Version |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
47 |
// Minor Version |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
48 |
// Build Number |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
49 |
// Revision |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
50 |
// |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
51 |
// You can specify all the values or you can default the Build and Revision Numbers |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
52 |
// by using the '*' as shown below: |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
53 |
// [assembly: AssemblyVersion("1.0.*")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
54 |
[assembly: AssemblyVersion("1.0.0.0")] |
e99fe78cd168
Gesture Control Integration in the Control Player
ARIAS Santiago
parents:
diff
changeset
|
55 |
[assembly: AssemblyFileVersion("1.0.0.0")] |