diff --git a/scripts/channel_map.py b/scripts/channel_map.py index 63603429408..ceb376381f7 100644 --- a/scripts/channel_map.py +++ b/scripts/channel_map.py @@ -2,14 +2,19 @@ class ChannelMap(): channel_map = { + 'release/6.0': { + 'tfm': 'net6.0', + 'branch': '6.0.1xx', + 'quality': 'daily' + }, '6.0': { 'tfm': 'net6.0', - 'branch': 'main', + 'branch': '6.0.1xx', 'quality': 'daily' }, 'main': { - 'tfm': 'net6.0', - 'branch': 'main', + 'tfm': 'net7.0', + 'branch': '7.0.1xx', 'quality': 'daily' }, 'master': { diff --git a/scripts/dotnet.py b/scripts/dotnet.py index 3afaa63aaaa..58c5ae3cfb7 100755 --- a/scripts/dotnet.py +++ b/scripts/dotnet.py @@ -770,7 +770,7 @@ def install( # run, we will be testing the "wrong" version, ie, not the version we specified. if (not versions) and channels: for channel in channels: - cmdline_args = common_cmdline_args + ['-Channel', channel if channel != "main" else "6.0.1xx"] + cmdline_args = common_cmdline_args + ['-Channel', ChannelMap.get_branch(channel)] if ChannelMap.get_quality_from_channel(channel) is not None: cmdline_args += ['-Quality', ChannelMap.get_quality_from_channel(channel)] RunCommand(cmdline_args, verbose=verbose, retry=1).run(