From b874e9237e790aa95c4f159da1f6e9ddc4438776 Mon Sep 17 00:00:00 2001 From: Benoit Foucher Date: Mon, 9 Mar 2020 17:50:46 +0100 Subject: Fixed C# exe projects to set true which is now disabled by default on macOS/Catalina --- scripts/Util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/Util.py') diff --git a/scripts/Util.py b/scripts/Util.py index 2e42bc4f03b..6d33f548fe5 100644 --- a/scripts/Util.py +++ b/scripts/Util.py @@ -3548,8 +3548,8 @@ class CSharpMapping(Mapping): else: path = os.path.join(current.testcase.getPath(current), current.getBuildDir(exe)) - useDotnetExe = (current.config.dotnetcore and - (current.config.testTargetFramework in ["netcoreapp2.1"] or process.isFromBinDir() or isinstance(platform, Darwin))) + useDotnetExe = current.config.dotnetcore and \ + (current.config.testTargetFramework in ["netcoreapp2.1"] or process.isFromBinDir()) command = "" if useDotnetExe: command += "dotnet " -- cgit v1.2.3