2010-10-04 23:37:33 +02:00
|
|
|
|
using System;
|
2009-02-22 11:43:35 +01:00
|
|
|
|
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.
|
2010-10-02 20:52:34 +02:00
|
|
|
|
[assembly: AssemblyTitle("OpenTK")]
|
2009-02-22 11:43:35 +01:00
|
|
|
|
[assembly: AssemblyDescription("Open source game development toolkit for .Net/Mono.")]
|
|
|
|
|
|
|
|
|
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
|
|
|
|
[assembly: Guid("7652241e-158d-4eb1-85f4-ed40ee356791")]
|
|
|
|
|
|
2009-09-04 12:34:18 +02:00
|
|
|
|
[assembly: CLSCompliant(true)]
|
2009-09-06 16:19:52 +02:00
|
|
|
|
[assembly: System.Security.AllowPartiallyTrustedCallers]
|
2010-10-02 20:52:34 +02:00
|
|
|
|
#if NET40
|
|
|
|
|
[assembly: System.Security.SecurityRules(System.Security.SecurityRuleSet.Level1)]
|
|
|
|
|
#endif
|