Remove the 2.x pieces. Update for preview 6.

This commit is contained in:
Marc Paine 2024-06-25 14:35:32 -07:00
parent d374c76aa3
commit 792efd07dc

View file

@ -9,37 +9,25 @@ let inputBranches =
[ { GitBranchName = "main" [ { GitBranchName = "main"
DisplayName = "main<br>(9.0.x&nbsp;Runtime)" DisplayName = "main<br>(9.0.x&nbsp;Runtime)"
AkaMsChannel = Some("9.0.1xx/daily") } AkaMsChannel = Some("9.0.1xx/daily") }
{ GitBranchName = "release/9.0.1XX-preview4" { GitBranchName = "release/9.0.1xx-preview6"
DisplayName = "9.0.1XX-preview4<br>(9.0-preview4&nbsp;Runtime)" DisplayName = "9.0.1xx-preview6<br>(9.0-preview6&nbsp;Runtime)"
AkaMsChannel = Some("9.0.1XX-preview4/daily") } AkaMsChannel = Some("9.0.1xx-preview6/daily") }
{ GitBranchName = "release/8.0.4xx" { GitBranchName = "release/8.0.4xx"
DisplayName = "8.0.4xx<br>(8.0&nbsp;Runtime)" DisplayName = "8.0.4xx<br>(8.0&nbsp;Runtime)"
AkaMsChannel = Some("8.0.4xx/daily") } AkaMsChannel = Some("8.0.4xx/daily") }]
{ GitBranchName = "release/8.0.3xx"
DisplayName = "8.0.3xx<br>(8.0&nbsp;Runtime)"
AkaMsChannel = Some("8.0.3xx/daily") }
{ GitBranchName = "release/7.0.4xx"
DisplayName = "Release/7.0.4xx<br>(7.0.x&nbsp;Runtime)"
AkaMsChannel = Some("7.0.4xx/daily") }]
let referentNotes = """Reference notes: let referentNotes = """Reference notes:
> **1**: Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing the SDK from the .deb file (via dpkg or similar), then you'll need to install the corresponding dependencies first: > **1**: Our Debian packages are put together slightly differently than the other OS specific installers. Instead of combining everything, we have separate component packages that depend on each other. If you're installing the SDK from the .deb file (via dpkg or similar), then you'll need to install the corresponding dependencies first:
> * [Host, Host FX Resolver, and Shared Framework](https://github.com/dotnet/runtime/blob/main/docs/project/dogfooding.md#nightly-builds-table) > * [Host, Host FX Resolver, and Shared Framework](https://github.com/dotnet/runtime/blob/main/docs/project/dogfooding.md#nightly-builds-table)
> * [ASP.NET Core Shared Framework](https://github.com/aspnet/AspNetCore/blob/main/docs/DailyBuilds.md) > * [ASP.NET Core Shared Framework](https://github.com/aspnet/AspNetCore/blob/main/docs/DailyBuilds.md)"""
.NET Core SDK 2.x downloads can be found at [.NET Core SDK 2.x Installers and Binaries](Downloads2.x.md) but they are [out of support](https://dotnet.microsoft.com/platform/support/policy/dotnet-core)."""
let sdksha2 =
"[sdk-shas-2.2.1XX]: https://github.com/dotnet/versions/tree/master/build-info/dotnet/product/cli/release/2.2#built-repositories"
let wholeTable branches = let wholeTable branches =
String.Join String.Join
(Environment.NewLine + Environment.NewLine, (Environment.NewLine + Environment.NewLine,
[ table branches [ table branches
referentNotes referentNotes
referenceList branches referenceList branches ])
sdksha2 ])
[<EntryPoint>] [<EntryPoint>]
let main argv = let main argv =