summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2020-03-09 17:50:46 +0100
committerBenoit Foucher <benoit@zeroc.com>2020-03-09 17:50:46 +0100
commitb874e9237e790aa95c4f159da1f6e9ddc4438776 (patch)
treefc4394a1c219b0799645e75daafbee661fae9692 /scripts
parentFixed C# mappping to use .NET Core 3.1 (diff)
downloadice-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')
-rw-r--r--scripts/Util.py4
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 "