mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-09 13:05:37 +00:00
fix OpenTK assembly name error.
This commit is contained in:
parent
d50c2fcea0
commit
844eb285ef
|
@ -93,7 +93,12 @@ let activeProjects =
|
||||||
|
|
||||||
// Generate assembly info files with the right version & up-to-date information
|
// Generate assembly info files with the right version & up-to-date information
|
||||||
Target "AssemblyInfo" (fun _ ->
|
Target "AssemblyInfo" (fun _ ->
|
||||||
let getAssemblyInfoAttributes projectName =
|
let getAssemblyInfoAttributes (projectName:string) =
|
||||||
|
let projectName =
|
||||||
|
if projectName.Contains(".iOS") || projectName.Contains(".Android") then
|
||||||
|
projectName.Split('.').[0]
|
||||||
|
else
|
||||||
|
projectName
|
||||||
[ Attribute.Title (projectName)
|
[ Attribute.Title (projectName)
|
||||||
Attribute.Product project
|
Attribute.Product project
|
||||||
Attribute.Description summary
|
Attribute.Description summary
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: AssemblyTitleAttribute("OpenTK.iOS")]
|
[assembly: AssemblyTitleAttribute("OpenTK")]
|
||||||
[assembly: AssemblyProductAttribute("OpenTK")]
|
[assembly: AssemblyProductAttribute("OpenTK")]
|
||||||
[assembly: AssemblyDescriptionAttribute("A set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL.")]
|
[assembly: AssemblyDescriptionAttribute("A set of fast, low-level C# bindings for OpenGL, OpenGL ES and OpenAL.")]
|
||||||
[assembly: AssemblyVersionAttribute("2.0.0")]
|
[assembly: AssemblyVersionAttribute("2.0.0")]
|
||||||
|
|
Loading…
Reference in a new issue