Fix unknown switch

Official docs have lied to me once again
This commit is contained in:
JustArchi
2020-04-22 23:05:30 +02:00
parent 35d74cae1b
commit 23442b56b7
4 changed files with 13 additions and 13 deletions

2
cc.sh
View File

@@ -94,7 +94,7 @@ if [ "$ASF_UI" -eq 1 ]; then
fi
fi
DOTNET_FLAGS="-c $CONFIGURATION -f $TARGET_FRAMEWORK -p:UseAppHost=false -r ${os_type}-${cpu_architecture} --nologo --self-contained false"
DOTNET_FLAGS="-c $CONFIGURATION -f $TARGET_FRAMEWORK -p:SelfContained=false -p:UseAppHost=false -r ${os_type}-${cpu_architecture} --nologo"
if [ "$SHARED_COMPILATION" -eq 0 ]; then
DOTNET_FLAGS="$DOTNET_FLAGS -p:UseSharedCompilation=false"