Unify mono params

This commit is contained in:
JustArchi
2016-09-12 20:52:30 +02:00
parent 11d4430bbc
commit 4d6f2811bb
6 changed files with 8 additions and 6 deletions

3
cc.sh
View File

@@ -5,7 +5,6 @@ BUILD="Release"
AOT=0
CLEAN=0
MONO_ARGS=("--aot" "--llvm" "--server" "-O=all")
XBUILD_ARGS=("/nologo")
BINARIES=("ArchiSteamFarm/bin/Release/ArchiSteamFarm.exe")
SOLUTION="ArchiSteamFarm.sln"
@@ -66,7 +65,7 @@ if [[ "$AOT" -eq 1 && "$BUILD" = "Release" ]]; then
continue
fi
mono "${MONO_ARGS[@]}" "$BINARY"
mono --aot "$BINARY"
done
fi