From 207ae7ee6550b9d82dfce2ac3cbed0689e51de30 Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:01:15 +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.Vulkan/Evergine.Bindings.Vulkan.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj b/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj index 0ae2f64..325c02b 100644 --- a/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj +++ b/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj @@ -1,4 +1,4 @@ - + net10.0 @@ -8,6 +8,7 @@ Low-level bindings for Vulkan used in Evergine https://github.com/EvergineTeam/Vulkan.NET icon.png + MIT README.md From e00bd2f8b9fe832a97f9819858908cd13f588a5f Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:03:24 +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.Vulkan/Evergine.Bindings.Vulkan.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj b/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj index 325c02b..e2debcc 100644 --- a/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj +++ b/VulkanGen/Evergine.Bindings.Vulkan/Evergine.Bindings.Vulkan.csproj @@ -1,4 +1,4 @@ - + net10.0