mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
25 lines
1,014 B
C#
25 lines
1,014 B
C#
|
|
using System;
|
|||
|
|
using System.Diagnostics;
|
|||
|
|
using System.Reflection;
|
|||
|
|
using System.Runtime.CompilerServices;
|
|||
|
|
using System.Runtime.InteropServices;
|
|||
|
|
using System.Runtime.Versioning;
|
|||
|
|
using System.Security;
|
|||
|
|
using System.Security.Permissions;
|
|||
|
|
|
|||
|
|
[assembly: AssemblyVersion("1.0.0.0")]
|
|||
|
|
[assembly: CompilationRelaxations(8)]
|
|||
|
|
[assembly: RuntimeCompatibility(WrapNonExceptionThrows = true)]
|
|||
|
|
[assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)]
|
|||
|
|
[assembly: AssemblyTitle("Frequency Edit Control")]
|
|||
|
|
[assembly: AssemblyDescription("Frequency Edit Control")]
|
|||
|
|
[assembly: AssemblyConfiguration("")]
|
|||
|
|
[assembly: AssemblyCompany("")]
|
|||
|
|
[assembly: AssemblyProduct("SDR#")]
|
|||
|
|
[assembly: AssemblyCopyright("Copyright © 2012 Youssef Touil, Ian Gilmour")]
|
|||
|
|
[assembly: AssemblyTrademark("")]
|
|||
|
|
[assembly: ComVisible(false)]
|
|||
|
|
[assembly: Guid("300880ef-fb6f-41ec-b607-d468751fe0ad")]
|
|||
|
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|||
|
|
[assembly: SecurityPermission(SecurityAction.RequestMinimum, SkipVerification = true)]
|