From 460613fba409a768a521fe2006b2ebb863234302 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sat, 1 Aug 2020 11:54:21 +1000 Subject: [PATCH] Add -clp:NoSummary to Unix build scripts --- Dist/BuildDebug.sh | 2 +- Dist/BuildRelease.sh | 2 +- Dist/BuildTestDebug.sh | 2 +- Dist/BuildTestRelease.sh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dist/BuildDebug.sh b/Dist/BuildDebug.sh index 68478cb27b..b4528f54be 100755 --- a/Dist/BuildDebug.sh +++ b/Dist/BuildDebug.sh @@ -1,3 +1,3 @@ #!/bin/sh if [ -z "$NUGET_PACKAGES" ]; then export NUGET_PACKAGES="$HOME/.nuget/packages"; fi -cd "$(dirname "$0")/.." && dotnet build BizHawk.sln -c Debug -m "$@" +cd "$(dirname "$0")/.." && dotnet build BizHawk.sln -c Debug -m -clp:NoSummary "$@" diff --git a/Dist/BuildRelease.sh b/Dist/BuildRelease.sh index 102b29db26..7baaefecb5 100755 --- a/Dist/BuildRelease.sh +++ b/Dist/BuildRelease.sh @@ -1,3 +1,3 @@ #!/bin/sh if [ -z "$NUGET_PACKAGES" ]; then export NUGET_PACKAGES="$HOME/.nuget/packages"; fi -cd "$(dirname "$0")/.." && dotnet build BizHawk.sln -c Release -m "$@" +cd "$(dirname "$0")/.." && dotnet build BizHawk.sln -c Release -m -clp:NoSummary "$@" diff --git a/Dist/BuildTestDebug.sh b/Dist/BuildTestDebug.sh index fc3d55bb06..8c2ce2db7e 100755 --- a/Dist/BuildTestDebug.sh +++ b/Dist/BuildTestDebug.sh @@ -1,3 +1,3 @@ #!/bin/sh if [ -z "$NUGET_PACKAGES" ]; then export NUGET_PACKAGES="$HOME/.nuget/packages"; fi -cd "$(dirname "$0")/.." && dotnet test BizHawk.sln -a . -c Debug -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" -m "$@" +cd "$(dirname "$0")/.." && dotnet test BizHawk.sln -a . -c Debug -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" -m -clp:NoSummary "$@" diff --git a/Dist/BuildTestRelease.sh b/Dist/BuildTestRelease.sh index 97e67e30da..e5fa2303d0 100755 --- a/Dist/BuildTestRelease.sh +++ b/Dist/BuildTestRelease.sh @@ -1,3 +1,3 @@ #!/bin/sh if [ -z "$NUGET_PACKAGES" ]; then export NUGET_PACKAGES="$HOME/.nuget/packages"; fi -cd "$(dirname "$0")/.." && dotnet test BizHawk.sln -a . -c Release -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" -m "$@" +cd "$(dirname "$0")/.." && dotnet test BizHawk.sln -a . -c Release -l "junit;LogFilePath=$PWD/test_output/{assembly}.coverage.xml;MethodFormat=Class;FailureBodyFormat=Verbose" -m -clp:NoSummary "$@"