mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
16 lines
689 B
C#
16 lines
689 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Runtime.Versioning;
|
||
|
|
using System.Security.Permissions;
|
||
|
|
|
||
|
|
[assembly: CompilationRelaxations(8)]
|
||
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
||
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
||
|
|
[assembly: AssemblyTitle("Collapsible Panel")]
|
||
|
|
[assembly: AssemblyDescription("Collapsible Panel Component")]
|
||
|
|
[assembly: AssemblyProduct("SDR#")]
|
||
|
|
[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")]
|
||
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|
||
|
|
[assembly: AssemblyVersion("0.0.0.0")]
|