mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
22 lines
869 B
C#
22 lines
869 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
using System.Runtime.Versioning;
|
||
|
|
using System.Security.Permissions;
|
||
|
|
|
||
|
|
[assembly: CompilationRelaxations(8)]
|
||
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
||
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
||
|
|
[assembly: AssemblyTitle("Fast Scanner for SDR#")]
|
||
|
|
[assembly: AssemblyDescription("")]
|
||
|
|
[assembly: AssemblyConfiguration("")]
|
||
|
|
[assembly: AssemblyCompany("rtl-sdr.ru")]
|
||
|
|
[assembly: AssemblyProduct("")]
|
||
|
|
[assembly: AssemblyCopyright("")]
|
||
|
|
[assembly: AssemblyTrademark("")]
|
||
|
|
[assembly: ComVisible(true)]
|
||
|
|
[assembly: Guid("a80d3b15-c0c9-4d61-8bd6-b87954dce39d")]
|
||
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|
||
|
|
[assembly: AssemblyVersion("0.0.0.0")]
|