diff options
author | Benoit Foucher <benoit@zeroc.com> | 2020-03-09 17:50:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2020-03-09 17:50:46 +0100 |
commit | b874e9237e790aa95c4f159da1f6e9ddc4438776 (patch) | |
tree | fc4394a1c219b0799645e75daafbee661fae9692 /scripts/Util.py | |
parent | Fixed C# mappping to use .NET Core 3.1 (diff) | |
download | ice-b874e9237e790aa95c4f159da1f6e9ddc4438776.tar.bz2 ice-b874e9237e790aa95c4f159da1f6e9ddc4438776.tar.xz ice-b874e9237e790aa95c4f159da1f6e9ddc4438776.zip |
Fixed C# exe projects to set <UseAppHost>true</UseAppHost> which is now disabled by default on macOS/Catalina
Diffstat (limited to 'scripts/Util.py')
-rw-r--r-- | scripts/Util.py | 4 |
1 files changed, 2 insertions, 2 deletions
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 " |