summaryrefslogtreecommitdiff
path: root/scripts/Util.py
diff options
context:
space:
mode:
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 f80ad988fe0..f097febc45b 100644
--- a/scripts/Util.py
+++ b/scripts/Util.py
@@ -3362,8 +3362,8 @@ class CSharpMapping(Mapping):
if self.dotnetcore:
self.libTargetFramework = "netstandard2.0"
- self.binTargetFramework = "netcoreapp2.1" if self.framework == "" else self.framework
- self.testTargetFramework = "netcoreapp2.1" if self.framework == "" else self.framework
+ self.binTargetFramework = "netcoreapp3.0" if self.framework == "" else self.framework
+ self.testTargetFramework = "netcoreapp3.0" 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