summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-09-25 01:02:43 +0200
committerJose <jose@zeroc.com>2019-09-25 01:02:43 +0200
commitf7a9f03cd31fe70d4edf07a2c57b6e80ef9e3563 (patch)
tree21be43d2f4a6296b844d77ce775742d2c57aa9ac /scripts/Util.py
parentFix Swift Xcode deployment target settings (diff)
downloadice-f7a9f03cd31fe70d4edf07a2c57b6e80ef9e3563.tar.bz2
ice-f7a9f03cd31fe70d4edf07a2c57b6e80ef9e3563.tar.xz
ice-f7a9f03cd31fe70d4edf07a2c57b6e80ef9e3563.zip
.NET Core 3.0 testing
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index c06cdffb105..f80ad988fe0 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -278,9 +278,9 @@ class Platform(object):
installDir = component.getInstallDir(mapping, current)
if isinstance(mapping, CSharpMapping):
if component.useBinDist(mapping, current):
- return os.path.join(installDir, "tools", "netcoreapp2.1")
+ return os.path.join(installDir, "tools", mapping.getBinTargetFramework(current))
else:
- return os.path.join(installDir, "bin", "netcoreapp2.1")
+ return os.path.join(installDir, "bin", mapping.getBinTargetFramework(current))
return os.path.join(installDir, "bin")
def _getLibDir(self, component, process, mapping, current):