From d2492a7ec85ce132b2f12ca869ef2e6e8b461e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=82ngelo=20Tadeucci?= Date: Thu, 20 Aug 2026 07:44:18 +0000 Subject: [PATCH] Add arm64 runtime identifiers to Maple2.File.Verify MS2Verify is published self-contained, so it only runs on the CPU architecture it was published for. The RuntimeIdentifiers list held win-x64, linux-x64 and osx-x64 only, so an aarch64 machine had no supported way to build it and could not run the archive verification step that LithMS2-XML build.sh performs after every MS2Create call. Adds linux-arm64 and osx-arm64. No source change is needed, the project already builds and runs on both. --- Maple2.File.Verify/Maple2.File.Verify.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Maple2.File.Verify/Maple2.File.Verify.csproj b/Maple2.File.Verify/Maple2.File.Verify.csproj index 3a4149b..a8e6771 100644 --- a/Maple2.File.Verify/Maple2.File.Verify.csproj +++ b/Maple2.File.Verify/Maple2.File.Verify.csproj @@ -8,7 +8,7 @@ enable MS2Verify Maple2.File.Verify - win-x64;linux-x64;osx-x64 + win-x64;linux-x64;linux-arm64;osx-x64;osx-arm64