From 3b81c38436a5d6aefff1575c6275538c59423d6d Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:01:26 +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.WebGPU/Evergine.Bindings.WebGPU.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj b/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj index e179a24..a671a1b 100644 --- a/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj +++ b/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj @@ -1,4 +1,4 @@ - + Copyright (c) Evergine 2026 @@ -8,6 +8,7 @@ https://github.com/EvergineTeam/WebGPU.NET WebGPU;Evergine;C#;DirectX;OpenGL;OpenGLES;Vulkan;Metal;2D;3D;AR;VR;MixedReality;Mobile icon.png + MIT README.md From 80e130a10a80fdf8e5c6e3de73277466c2169889 Mon Sep 17 00:00:00 2001 From: jcant0n Date: Sat, 8 Aug 2026 01:03:28 +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.WebGPU/Evergine.Bindings.WebGPU.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj b/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj index a671a1b..5ae8fdf 100644 --- a/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj +++ b/WebGPUGen/Evergine.Bindings.WebGPU/Evergine.Bindings.WebGPU.csproj @@ -1,4 +1,4 @@ - + Copyright (c) Evergine 2026