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