summaryrefslogtreecommitdiff
path: root/scripts/IceBoxUtil.py
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2021-12-08 17:26:47 +0100
committerJose <jose@zeroc.com>2021-12-08 17:26:47 +0100
commitb59752f7d75bfb9eab19fec3cdee05357010c05c (patch)
tree20d4c541307d409950f41f13daeb6216b9d9eceb /scripts/IceBoxUtil.py
parent Java 8 build compatibility (diff)
downloadice-b59752f7d75bfb9eab19fec3cdee05357010c05c.tar.bz2
ice-b59752f7d75bfb9eab19fec3cdee05357010c05c.tar.xz
ice-b59752f7d75bfb9eab19fec3cdee05357010c05c.zip
Replace .NET 5.0 builds with .NET 6.0 builds
Diffstat (limited to 'scripts/IceBoxUtil.py')
-rw-r--r--scripts/IceBoxUtil.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/IceBoxUtil.py b/scripts/IceBoxUtil.py
index c541de25472..4129717dde4 100644
--- a/scripts/IceBoxUtil.py
+++ b/scripts/IceBoxUtil.py
@@ -28,8 +28,8 @@ class IceBox(ProcessFromBinDir, Server):
newConfigFile = "{}.{}".format(configFile, framework)
with open(newConfigFile, 'w') as target:
for line in source.readlines():
- if current.config.framework == "net5.0":
- line = line.replace("\\net45\\", "\\net5.0\\")
+ if current.config.framework == "net6.0":
+ line = line.replace("\\net45\\", "\\net6.0\\")
elif current.config.dotnetcore:
line = line.replace("\\net45\\", "\\netstandard2.0\\{0}\\".format(libframework))
target.write(line)