AssemblyInfo.cs 3.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*************************************************************************************
  2. Extended WPF Toolkit
  3. Copyright (C) 2007-2013 Xceed Software Inc.
  4. This program is provided to you under the terms of the Microsoft Public
  5. License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
  6. For more features, controls, and fast professional support,
  7. pick up the Plus Edition at http://xceed.com/wpf_toolkit
  8. Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
  9. ***********************************************************************************/
  10. using System.Reflection;
  11. using System.Resources;
  12. using System.Runtime.CompilerServices;
  13. using System.Runtime.InteropServices;
  14. using System.Windows;
  15. using System.Windows.Markup;
  16. using System;
  17. // General Information about an assembly is controlled through the following
  18. // set of attributes. Change these attribute values to modify the information
  19. // associated with an assembly.
  20. [assembly: AssemblyTitle( "Xceed Extended WPF Toolkit - AvalonDock" )]
  21. [assembly: AssemblyDescription( "This assembly implements the Xceed.Wpf.AvalonDock namespace, a docking layout system for the Windows Presentation Framework." )]
  22. [assembly: AssemblyCompany( "Xceed Software Inc." )]
  23. [assembly: AssemblyProduct( "Xceed Extended WPF Toolkit - AvalonDock" )]
  24. [assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2013" )]
  25. [assembly: AssemblyCulture( "" )]
  26. // Setting ComVisible to false makes the types in this assembly not visible
  27. // to COM components. If you need to access a type in this assembly from
  28. // COM, set the ComVisible attribute to true on that type.
  29. [assembly: ComVisible(false)]
  30. [assembly: CLSCompliant( true )]
  31. //In order to begin building localizable applications, set
  32. //<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
  33. //inside a <PropertyGroup>. For example, if you are using US english
  34. //in your source files, set the <UICulture> to en-US. Then uncomment
  35. //the NeutralResourceLanguage attribute below. Update the "en-US" in
  36. //the line below to match the UICulture setting in the project file.
  37. //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
  38. [assembly: ThemeInfo(
  39. ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located
  40. //(used if a resource is not found in the page,
  41. // or application resource dictionaries)
  42. ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
  43. //(used if a resource is not found in the page,
  44. // app, or any theme specific resource dictionaries)
  45. )]
  46. [assembly: XmlnsPrefix( "http://schemas.xceed.com/wpf/xaml/avalondock", "xcad" )]
  47. [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock" )]
  48. [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Controls" )]
  49. [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Converters" )]
  50. [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Layout" )]
  51. [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Themes" )]
  52. #pragma warning disable 1699
  53. [assembly: AssemblyDelaySign( false )]
  54. [assembly: AssemblyKeyFile( @"..\..\sn.snk" )]
  55. [assembly: AssemblyKeyName( "" )]
  56. #pragma warning restore 1699