-
Notifications
You must be signed in to change notification settings - Fork 13
/
Makefile
23 lines (19 loc) · 913 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
run-linux-opengl: prepare
cd "Source/GridDominance.OpenGL" && dotnet run
build-linux-opengl: prepare
cd "Source/GridDominance.OpenGL" && dotnet publish -c Release -r linux-x64 /p:PublishReadyToRun=false /p:TieredCompilation=false --self-contained
prepare:
cd "Source/GridDominance.Content.Pipeline" && dotnet build
sign:
jarsigner -verbose \
-sigalg SHA1withRSA \
-digestalg SHA1 \
-keystore BFB_identity.keystore \
-signedjar "Publish/Android.IAB/com.blackforestbytes.griddominance.iab.signed.aab" \
"Publish/Android.IAB/com.blackforestbytes.griddominance.iab.aab" bfb_identity
jarsigner -verbose \
-sigalg SHA1withRSA \
-digestalg SHA1 \
-keystore BFB_identity.keystore \
-signedjar "Publish/Android.Full/com.blackforestbytes.griddominance.full.signed.aab" \
"Publish/Android.Full/com.blackforestbytes.griddominance.full.aab" bfb_identity