mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
22 lines
910 B
C#
22 lines
910 B
C#
|
|
using System.Diagnostics;
|
||
|
|
using System.Reflection;
|
||
|
|
using System.Runtime.CompilerServices;
|
||
|
|
using System.Runtime.InteropServices;
|
||
|
|
using System.Security.Permissions;
|
||
|
|
|
||
|
|
[assembly: AssemblyCopyright("Copyright © Ian Gilmour 2012")]
|
||
|
|
[assembly: AssemblyDescription("")]
|
||
|
|
[assembly: AssemblyConfiguration("")]
|
||
|
|
[assembly: AssemblyCompany("")]
|
||
|
|
[assembly: AssemblyProduct("SDR#")]
|
||
|
|
[assembly: AssemblyTitle("WAV Recorder Plugin for SDR#")]
|
||
|
|
[assembly: AssemblyTrademark("")]
|
||
|
|
[assembly: ComVisible(false)]
|
||
|
|
[assembly: Guid("20600a3f-d333-446a-bb1a-a74de8122045")]
|
||
|
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
||
|
|
[assembly: CompilationRelaxations(8)]
|
||
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
||
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|
||
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|