Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,12 @@
// Hopefully when https://github.com/dotnet/runtime/issues/122264 is done we can use the versioned workload for every version
writer.WriteLine ($" \"microsoft-net-runtime-mono-tooling\",");
for (var i = earliestDotNetVersion; i < latestDotNetVersion; i++) {
if (i == 10)
continue; // 'microsoft-net-runtime-<platform>-net10' doesn't seem to exist yet, we'll probably have to remove this special case at some point (https://github.com/dotnet/macios/issues/24417)
writer.WriteLine ($" \"microsoft-net-runtime-mono-tooling-net{i}\",");
}
} else {
// Hopefully when https://github.com/dotnet/runtime/issues/122264 is done we can use the versioned workload for every version
writer.WriteLine ($" \"microsoft-net-runtime-{platformLowerCase}\",");
for (var i = earliestDotNetVersion; i < latestDotNetVersion; i++) {
if (i == 10)
continue; // 'microsoft-net-runtime-<platform>-net10' doesn't seem to exist yet, we'll probably have to remove this special case at some point (https://github.com/dotnet/macios/issues/24417).
writer.WriteLine ($" \"microsoft-net-runtime-{platformLowerCase}-net{i}\",");
}
}
Expand Down
Loading