From ff0c80d1f00a454e052488376b13354af0633415 Mon Sep 17 00:00:00 2001 From: David Brownman Date: Wed, 8 Jan 2025 15:13:32 -0800 Subject: [PATCH] Add comment --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 92583c46e..87c26cf39 100644 --- a/justfile +++ b/justfile @@ -19,6 +19,7 @@ ci-test: (_test "--no-build" "" "Release") # ⭐ format all files format *args: + # This sets TargetFramework because of a race condition in dotnet format when it tries to format to multiple targets at a time, which could lead to code with compiler errors after it completes TargetFramework=net5.0 dotnet format src/Stripe.net/Stripe.net.csproj --severity warn {{args}} # for backwards compatibility; ideally removed later