microsoft/WindowsAppSDK

Provide a machine readable releases.json with EOL dates

Open

#4,314 创建于 2024年4月8日

在 GitHub 查看
 (0 评论) (1 反应) (0 负责人)C++ (453 fork)auto 404
feature proposalgood first issue

仓库指标

Star
 (4,628 star)
PR 合并指标
 (PR 指标待抓取)

描述

Describe the bug

I want to automatically check in my CI if the referenced WindowsAppSDK version is still supported.

Please add something like this for AppSDK.

requirements:

  • machine readable (json)
  • example structure:
{
  "releases":
  [
    {
      "version": "1.5.1",
      "build-version": "1.5.240311000",
      "release-version": "1.5", // just guessing the name here
      "release-date": "2024-03-12",
      "eol-date": "2025-02-28",
      "download-urls": [ // stretch goal
        {"arch": "x64", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-x64.exe"},
        {"arch": "x86", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-x86.exe"},
        {"arch": "arm64", "url": "https://aka.ms/windowsappsdk/1.5/1.5.240311000/windowsappruntimeinstall-arm64.exe"},
      ]
    }
  ]
}

DotnetSDK offers a nice orientation, on how it could look:

Currently, the only way is the non machine readable page: https://learn.microsoft.com/en-us/windows/apps/windows-app-sdk/release-channels?source=recommendations#release-lifecycle

贡献者指南