// using System; using System.Reflection; [assembly: AssemblyTitleAttribute("OpenTK")] [assembly: AssemblyProductAttribute("OpenTK")] [assembly: AssemblyDescriptionAttribute("A set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL.")] [assembly: AssemblyVersionAttribute("3.0.0")] [assembly: AssemblyFileVersionAttribute("3.0.0")] [assembly: CLSCompliantAttribute(true)] [assembly: AssemblyCopyrightAttribute("Copyright (c) 2006 - 2016 Stefanos Apostolopoulos for the Open Toolkit library.")] namespace System { internal static class AssemblyVersionInformation { internal const System.String AssemblyTitle = "OpenTK"; internal const System.String AssemblyProduct = "OpenTK"; internal const System.String AssemblyDescription = "A set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL."; internal const System.String AssemblyVersion = "3.0.0"; internal const System.String AssemblyFileVersion = "3.0.0"; internal const System.Boolean CLSCompliant = true; internal const System.String AssemblyCopyright = "Copyright (c) 2006 - 2016 Stefanos Apostolopoulos for the Open Toolkit library."; } }