mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-26 06:05:37 +00:00
16 lines
608 B
C#
16 lines
608 B
C#
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// General Information about an assembly is controlled through the following
|
|
// set of attributes. Change these attribute values to modify the information
|
|
// associated with an assembly.
|
|
[assembly: AssemblyTitle("OpenTK.GLWidget")]
|
|
[assembly: AssemblyDescription("Provides integration with Gtk 2 and 3.")]
|
|
|
|
[assembly: System.CLSCompliant(true)]
|
|
[assembly: System.Security.AllowPartiallyTrustedCallers]
|
|
#if NET40
|
|
[assembly: System.Security.SecurityRules(System.Security.SecurityRuleSet.Level1)]
|
|
#endif
|