You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: justfile
+1-5Lines changed: 1 addition & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
setquiet
2
2
3
-
import? '../sdk-codegen/justfile'
3
+
import? '../sdk-codegen/utils.just'
4
4
5
5
_default:
6
6
just --list --unsorted
@@ -22,10 +22,6 @@ format *args:
22
22
# 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
23
23
TargetFramework=net5.0 dotnet format src/Stripe.net/Stripe.net.csproj --severity warn {{args}}
24
24
25
-
# for backwards compatibility; ideally removed later
26
-
[private]
27
-
aliascodegen-format:=format
28
-
29
25
# verify, but don't modify, the project's formatting
0 commit comments