From 657d329cd8a12e5ca821b68171f8037e138ec441 Mon Sep 17 00:00:00 2001 From: Lauren Ciha Date: Mon, 29 Sep 2025 10:58:40 -0700 Subject: [PATCH 1/3] Add deployment model question to the bug report template --- .github/ISSUE_TEMPLATE/bug-report.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index c02fe5efc6..e5d2d519ca 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -47,6 +47,13 @@ body: options: - "Packaged (MSIX)" - "Unpackaged" + - type: dropdown + attributes: + label: Deployment model + description: Please specify the deployment model you're using. + options: + - label: "Self-contained app (includes the .NET runtime)" + - label: "Framework-dependent app (requires .NET runtime to be installed separately)" - type: dropdown attributes: label: Windows version From d9e85dd0e91429947dac5c3a6a0cd72c174f8765 Mon Sep 17 00:00:00 2001 From: Lauren Ciha Date: Mon, 29 Sep 2025 11:14:49 -0700 Subject: [PATCH 2/3] Update check to an accurate and verifiable distinction --- .github/ISSUE_TEMPLATE/bug-report.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index e5d2d519ca..276790ae5e 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -52,8 +52,8 @@ body: label: Deployment model description: Please specify the deployment model you're using. options: - - label: "Self-contained app (includes the .NET runtime)" - - label: "Framework-dependent app (requires .NET runtime to be installed separately)" + - label: "Self-contained app (`true` is in the project file)" + - label: "Framework-dependent app (`` is not in the project file or it is set to false)" - type: dropdown attributes: label: Windows version From dc1a997290637f2bc4f12ff5d314406542a0fda2 Mon Sep 17 00:00:00 2001 From: Lauren Ciha Date: Wed, 1 Oct 2025 09:28:02 -0700 Subject: [PATCH 3/3] Add values to labels and update check for self-contained --- .github/ISSUE_TEMPLATE/bug-report.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yaml b/.github/ISSUE_TEMPLATE/bug-report.yaml index 276790ae5e..15bb25ffc1 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yaml +++ b/.github/ISSUE_TEMPLATE/bug-report.yaml @@ -52,8 +52,10 @@ body: label: Deployment model description: Please specify the deployment model you're using. options: - - label: "Self-contained app (`true` is in the project file)" + - label: "Self-contained app (`true` is in the project file or references `Microsoft.WindowsAppSDK.AI`)" + value: self-contained - label: "Framework-dependent app (`` is not in the project file or it is set to false)" + value: framework-dependent - type: dropdown attributes: label: Windows version