47 lines
2.2 KiB
Forth
47 lines
2.2 KiB
Forth
module TableGenerator.App
|
|
|
|
open System
|
|
open TableGenerator.Shared
|
|
open TableGenerator.Reference
|
|
open TableGenerator.Table
|
|
|
|
let inputBranches =
|
|
[ { GitBranchName = "main"
|
|
DisplayName = "main<br>(9.0.x Runtime)"
|
|
AkaMsChannel = Some("9.0.1xx/daily") }
|
|
{ GitBranchName = "release/9.0.1xx-preview3"
|
|
DisplayName = "9.0.1xx-preview3<br>(9.0-preview3 Runtime)"
|
|
AkaMsChannel = Some("9.0.1xx-preview3/daily") }
|
|
{ GitBranchName = "release/8.0.4xx"
|
|
DisplayName = "8.0.4xx<br>(8.0 Runtime)"
|
|
AkaMsChannel = Some("8.0.4xx/daily") }
|
|
{ GitBranchName = "release/8.0.3xx"
|
|
DisplayName = "8.0.3xx<br>(8.0 Runtime)"
|
|
AkaMsChannel = Some("8.0.3xx/daily") }
|
|
{ GitBranchName = "release/7.0.4xx"
|
|
DisplayName = "Release/7.0.4xx<br>(7.0.x Runtime)"
|
|
AkaMsChannel = Some("7.0.4xx/daily") }]
|
|
|
|
|
|
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:
|
|
> * [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)
|
|
|
|
.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 =
|
|
String.Join
|
|
(Environment.NewLine + Environment.NewLine,
|
|
[ table branches
|
|
referentNotes
|
|
referenceList branches
|
|
sdksha2 ])
|
|
|
|
[<EntryPoint>]
|
|
let main argv =
|
|
Console.WriteLine(wholeTable inputBranches)
|
|
0
|