| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- /*************************************************************************************
- Extended WPF Toolkit
- Copyright (C) 2007-2013 Xceed Software Inc.
- This program is provided to you under the terms of the Microsoft Public
- License (Ms-PL) as published at http://wpftoolkit.codeplex.com/license
- For more features, controls, and fast professional support,
- pick up the Plus Edition at http://xceed.com/wpf_toolkit
- Stay informed: follow @datagrid on Twitter or Like http://facebook.com/datagrids
- ***********************************************************************************/
- using System.Reflection;
- using System.Resources;
- using System.Runtime.CompilerServices;
- using System.Runtime.InteropServices;
- using System.Windows;
- using System.Windows.Markup;
- using System;
- // General Information about an assembly is controlled through the following
- // set of attributes. Change these attribute values to modify the information
- // associated with an assembly.
- [assembly: AssemblyTitle( "Xceed Extended WPF Toolkit - AvalonDock" )]
- [assembly: AssemblyDescription( "This assembly implements the Xceed.Wpf.AvalonDock namespace, a docking layout system for the Windows Presentation Framework." )]
- [assembly: AssemblyCompany( "Xceed Software Inc." )]
- [assembly: AssemblyProduct( "Xceed Extended WPF Toolkit - AvalonDock" )]
- [assembly: AssemblyCopyright( "Copyright (C) Xceed Software Inc. 2007-2013" )]
- [assembly: AssemblyCulture( "" )]
- // Setting ComVisible to false makes the types in this assembly not visible
- // to COM components. If you need to access a type in this assembly from
- // COM, set the ComVisible attribute to true on that type.
- [assembly: ComVisible(false)]
- [assembly: CLSCompliant( true )]
- //In order to begin building localizable applications, set
- //<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
- //inside a <PropertyGroup>. For example, if you are using US english
- //in your source files, set the <UICulture> to en-US. Then uncomment
- //the NeutralResourceLanguage attribute below. Update the "en-US" in
- //the line below to match the UICulture setting in the project file.
- //[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
- [assembly: ThemeInfo(
- ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located
- //(used if a resource is not found in the page,
- // or application resource dictionaries)
- ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
- //(used if a resource is not found in the page,
- // app, or any theme specific resource dictionaries)
- )]
- [assembly: XmlnsPrefix( "http://schemas.xceed.com/wpf/xaml/avalondock", "xcad" )]
- [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock" )]
- [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Controls" )]
- [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Converters" )]
- [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Layout" )]
- [assembly: XmlnsDefinition( "http://schemas.xceed.com/wpf/xaml/avalondock", "Xceed.Wpf.AvalonDock.Themes" )]
- #pragma warning disable 1699
- [assembly: AssemblyDelaySign( false )]
- [assembly: AssemblyKeyFile( @"..\..\sn.snk" )]
- [assembly: AssemblyKeyName( "" )]
- #pragma warning restore 1699
|