1 | using System;
|
---|
2 | using System.Diagnostics.CodeAnalysis;
|
---|
3 | using System.Reflection;
|
---|
4 | using System.Runtime.InteropServices;
|
---|
5 |
|
---|
6 | [assembly: AssemblyTitle("DockPanel Suite for .Net")]
|
---|
7 | [assembly: AssemblyDescription(".Net Docking Library for Windows Forms")]
|
---|
8 | [assembly: AssemblyConfiguration("")]
|
---|
9 | [assembly: AssemblyCompany("Weifen Luo")]
|
---|
10 | [assembly: AssemblyProduct("DockPanel Suite")]
|
---|
11 | [assembly: AssemblyCopyright("Copyright © Weifen Luo and other contributors 2007-2012")]
|
---|
12 | [assembly: AssemblyTrademark("")]
|
---|
13 | [assembly: AssemblyCulture("")]
|
---|
14 | [assembly: CLSCompliant(true)]
|
---|
15 |
|
---|
16 | [assembly: ComVisible(false)]
|
---|
17 |
|
---|
18 | [assembly: Guid("9d690ef9-ce19-4c69-874c-e24d8eb36aff")]
|
---|
19 |
|
---|
20 | [assembly: AssemblyVersion("2.7.0.0")]
|
---|
21 | [assembly: AssemblyFileVersion("2.7.0.0")]
|
---|
22 |
|
---|
23 | [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Weifen")]
|
---|
24 | [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", Scope = "namespace", Target = "WeifenLuo.WinFormsUI.Docking", MessageId = "Luo")]
|
---|
25 | [module: SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", Scope = "resource", Target = "WeifenLuo.WinFormsUI.Docking.Strings.resources", MessageId = "Weifen")]
|
---|
26 | [module: SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", Scope = "resource", Target = "WeifenLuo.WinFormsUI.Docking.Strings.resources", MessageId = "Luo")]
|
---|
27 | [module: SuppressMessage("Microsoft.Naming", "CA1703:ResourceStringsShouldBeSpelledCorrectly", Scope = "resource", Target = "WeifenLuo.WinFormsUI.Docking.Strings.resources", MessageId = "Dockable")] |
---|