summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/Util.py')
-rw-r--r--scripts/Util.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/Util.py b/scripts/Util.py
index 083dad4d9b6..4e821a69bfb 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -248,9 +248,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.2")
+ return os.path.join(installDir, "tools", "netcoreapp2.1")
else:
- return os.path.join(installDir, "bin", "netcoreapp2.2")
+ return os.path.join(installDir, "bin", "netcoreapp2.1")
return os.path.join(installDir, "bin")
def _getLibDir(self, component, process, mapping, current):
@@ -3277,8 +3277,8 @@ class CSharpMapping(Mapping):
if self.dotnetcore:
self.libTargetFramework = "netstandard2.0"
- self.binTargetFramework = "netcoreapp2.2" if self.framework == "" else self.framework
- self.testTargetFramework = "netcoreapp2.2" if self.framework == "" else self.framework
+ self.binTargetFramework = "netcoreapp2.1" if self.framework == "" else self.framework
+ self.testTargetFramework = "netcoreapp2.1" if self.framework == "" else self.framework
else:
self.libTargetFramework = "net45" if self.framework == "" else "netstandard2.0"
self.binTargetFramework = "net45" if self.framework == "" else self.framework