From f7d596a03629107f419b2f75bb0ab24e96a724e6 Mon Sep 17 00:00:00 2001 From: Douglas Miller Date: Mon, 3 Feb 2025 14:23:47 -0600 Subject: [PATCH] fix: Updating build script to set DOTNET_SYSTEM_GLOBALIZATION_INVARIANT --- scripts/build | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/build b/scripts/build index 1af36622..8c22253f 100755 --- a/scripts/build +++ b/scripts/build @@ -3,6 +3,7 @@ set -e if ! command -v dotnet-format; then echo "Installing dotnet formatter..." + export DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=1 dotnet tool install -g dotnet-format --version 4.0.0 fi