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