1 | using System.Reflection;
|
---|
2 | using System.Runtime.InteropServices;
|
---|
3 | using System.Windows;
|
---|
4 | using System.Resources;
|
---|
5 |
|
---|
6 | // General Information about an assembly is controlled through the following
|
---|
7 | // set of attributes. Change these attribute values to modify the information
|
---|
8 | // associated with an assembly.
|
---|
9 | [assembly: AssemblyTitle("Dynamic Data Display")]
|
---|
10 | [assembly: AssemblyDescription("Controls for visualization of scientific data")]
|
---|
11 | [assembly: AssemblyConfiguration("")]
|
---|
12 | [assembly: AssemblyCompany("Microsoft")]
|
---|
13 | [assembly: AssemblyProduct("Microsoft Research Dynamic Data Display")]
|
---|
14 | [assembly: AssemblyCopyright("Copyright © Microsoft 2009")]
|
---|
15 | [assembly: AssemblyTrademark("")]
|
---|
16 | [assembly: AssemblyCulture("")]
|
---|
17 |
|
---|
18 | [assembly: ComVisible(false)]
|
---|
19 |
|
---|
20 | //In order to begin building localizable applications, set
|
---|
21 | //<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
|
---|
22 | //inside a <PropertyGroup>. For example, if you are using US english
|
---|
23 | //in your source files, set the <UICulture> to en-US. Then uncomment
|
---|
24 | //the NeutralResourceLanguage attribute below. Update the "en-US" in
|
---|
25 | //the line below to match the UICulture setting in the project file.
|
---|
26 |
|
---|
27 | //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
---|
28 |
|
---|
29 | //[assembly: ThemeInfo(
|
---|
30 | // ResourceDictionaryLocation.SourceAssembly,
|
---|
31 | // ResourceDictionaryLocation.SourceAssembly
|
---|
32 | //)]
|
---|
33 |
|
---|
34 |
|
---|
35 | [assembly: AssemblyVersion("0.3.2.0")]
|
---|
36 | [assembly: NeutralResourcesLanguage("en-US")]
|
---|
37 | [assembly: SatelliteContractVersion("0.3.2.0")]
|
---|
38 | [assembly: AssemblyFileVersionAttribute("0.3.2.0")]
|
---|
39 | [assembly: ThemeInfo(ResourceDictionaryLocation.None, ResourceDictionaryLocation.SourceAssembly)]
|
---|