From 1087c9545a25ef920bbcc9b8d3ba8853aefa0cbb Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:01:17 +0200 Subject: [PATCH 1/2] fix: declare the MIT licence the repository already carries Every push to nuget.org warns "License missing" and the published package carries no licence expression, so nuget.org shows nothing where the licence link belongs and a compliance scanner has nothing to read. The repository has shipped an MIT LICENSE all along. One of eight: the same line was missing from every published Evergine.Bindings package. Each repository's own LICENSE was checked rather than assumed before writing MIT here. --- .../Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj b/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj index 58fc87c..88a7821 100644 --- a/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj +++ b/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -9,6 +9,7 @@ Low-level bindings for OpenGL used in Evergine https://github.com/EvergineTeam/OpenGL.NET icon.png + MIT README.md From 35f55332d2864cf0ed57cd2efc7da56b5a056529 Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:03:25 +0200 Subject: [PATCH 2/2] fix: keep the byte order mark the file already had The first version of this change read the file as utf-8-sig and wrote it back as plain utf-8, which silently dropped the BOM and turned a one-line addition into a two-line diff. Restored: the only change is now the licence line. --- .../Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj b/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj index 88a7821..16b8ab5 100644 --- a/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj +++ b/OpenGLGen/Evergine.Bindings.OpenGL/Evergine.Bindings.OpenGL.csproj @@ -1,4 +1,4 @@ - + net10.0