From a528008aed3e11bc337756c9c5b63eab204e7a89 Mon Sep 17 00:00:00 2001 From: Stuart Meeks Date: Fri, 29 May 2026 16:41:14 +0000 Subject: [PATCH] Remove dead MSIX launch profile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The scaffold's launchSettings.json shipped two profiles: - "Snipdeck.App (Package)" — commandName: MsixPackage - "Snipdeck.App (Unpackaged)" — commandName: Project VS keeps trying to start the Package profile and fails: The project doesn't know how to run the profile with name 'Snipdeck.app (Package)' and command 'MsixPackage'. We dropped MSIX support entirely in #4, so the Package profile is dead. Remove it and unbracket the survivor — there's only one way to run this app now, "Snipdeck.App" doesn't need a qualifier. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/Snipdeck.App/Properties/launchSettings.json | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Snipdeck.App/Properties/launchSettings.json b/src/Snipdeck.App/Properties/launchSettings.json index c966646..1efd828 100644 --- a/src/Snipdeck.App/Properties/launchSettings.json +++ b/src/Snipdeck.App/Properties/launchSettings.json @@ -1,10 +1,7 @@ { "profiles": { - "Snipdeck.App (Package)": { - "commandName": "MsixPackage" - }, - "Snipdeck.App (Unpackaged)": { + "Snipdeck.App": { "commandName": "Project" } } -} \ No newline at end of file +}