mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
15 lines
676 B
C#
15 lines
676 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Security.Permissions;
|
||
|
|
|
||
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
||
|
|
[assembly: AssemblyProduct("SDR#")]
|
||
|
|
[assembly: CompilationRelaxations(8)]
|
||
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
||
|
|
[assembly: AssemblyCopyright("Copyright © Youssef TOUIL 2012")]
|
||
|
|
[assembly: AssemblyTitle("RTL-SDR Controller")]
|
||
|
|
[assembly: AssemblyDescription("USB interface for RTL2832U based DVB-T dongles")]
|
||
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|
||
|
|
[assembly: AssemblyVersion("0.0.0.0")]
|