mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
17 lines
709 B
C#
17 lines
709 B
C#
using System.Diagnostics;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Security.Permissions;
|
|
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
|
[assembly: AssemblyTitle("Collapsible Panel")]
|
|
[assembly: AssemblyDescription("Collapsible Panel Component")]
|
|
[assembly: AssemblyProduct("SDRSharper Revised")]
|
|
[assembly: AssemblyCopyright("Copyright © BluGecko 2018")]
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
|
[assembly: CompilationRelaxations(8)]
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|
|
[assembly: AssemblyVersion("0.9.0.0")]
|
|
[assembly: AssemblyFileVersion("0.9.0.0")]
|
|
|