From b10325430c5a3713f7da34ce28e56cee6f3fee16 Mon Sep 17 00:00:00 2001
From: Stefan Markovic <57057282+stefansjfw@users.noreply.github.com>
Date: Fri, 8 Nov 2024 19:02:07 +0100
Subject: [PATCH] Integrate into PowerToys.sln (#140)
## Summary of the Pull Request
- integrate all projects into PowerToys.sln
- remove all other .sln files
- remove unneeded files IMO (LET ME KNOW IF SOME OF THOES FILES ARE ACTUALLY NEEDED!)
---
.vsconfig | 5 +-
Microsoft.CmdPal.sln | 104 ----
PowerToys.sln | 517 +++++++++++++++++-
src/modules/cmdpal/.gitignore | 5 -
src/modules/cmdpal/.vsconfig | 43 --
src/modules/cmdpal/Directory.Build.props | 47 --
src/modules/cmdpal/Directory.CppBuild.props | 12 -
.../EverythingExtension.csproj | 3 +
.../HackerNewsExtension.csproj | 3 +
.../MastodonExtension.csproj | 3 +
.../MediaControlsExtension.csproj | 3 +
.../Microsoft.CmdPal.Ext.Apps.csproj | 3 +
.../Microsoft.CmdPal.Ext.Bookmarks.csproj | 3 +
.../Microsoft.CmdPal.Ext.Calc.csproj | 3 +
.../Microsoft.CmdPal.Ext.Settings.csproj | 3 +
.../Microsoft.CmdPal.Ext.Registry.csproj | 3 +
...icrosoft.CmdPal.Ext.WindowsServices.csproj | 3 +
...icrosoft.CmdPal.Ext.WindowsSettings.csproj | 3 +
...icrosoft.CmdPal.Ext.WindowsTerminal.csproj | 3 +
.../ProcessMonitorExtension.csproj | 3 +
.../SSHKeychainExtension.csproj | 3 +
src/modules/cmdpal/Exts/SampleExtension.sln | 179 ------
.../SamplePagesExtension.csproj | 3 +
.../SpongebotExtension.csproj | 3 +
.../TemplateExtension.csproj | 3 +
.../YouTubeExtension/YouTubeExtension.csproj | 3 +
.../Microsoft.CmdPal.Common.csproj | 3 +
.../Microsoft.CmdPal.UI.ViewModels.csproj | 9 +-
.../Microsoft.CmdPal.UI.csproj | 3 +
.../Microsoft.Terminal.UI.vcxproj | 21 +-
.../Microsoft.Terminal.UI/packages.config | 2 +-
.../cmdpal/Microsoft.Terminal.UI/pch.h | 1 -
.../cmdpal/Microsoft.Terminal.UI/version.rc | 6 +-
src/modules/cmdpal/ToolingVersions.props | 12 -
src/modules/cmdpal/WindowsCommandPalette.sln | 339 ------------
.../Microsoft.CmdPal.UI.Poc.csproj | 3 +
.../cmdpal/codeAnalysis/GlobalSuppressions.cs | 57 --
src/modules/cmdpal/codeAnalysis/Rules.ruleset | 74 ---
.../cmdpal/codeAnalysis/StubSuppressions.cs | 63 ---
src/modules/cmdpal/codeAnalysis/StyleCop.json | 21 -
src/modules/cmdpal/exclusion.dic | 0
.../cmdpal/extensionsdk/BuildSDKHelper.cmd | 5 -
.../cmdpal/extensionsdk/BuildSDKHelper.ps1 | 102 ----
src/modules/cmdpal/extensionsdk/CmdPalSDK.sln | 71 ---
.../cmdpal/extensionsdk/Directory.Build.props | 29 -
.../BaseObservable.cs | 1 +
.../ClipboardHelper.cs | 9 +-
.../Command.cs | 4 +-
.../CommandContextItem.cs | 4 +-
.../CommandProvider.cs | 6 +-
.../CommandResult.cs | 3 +-
.../ExtensionHost.cs | 12 +-
...nager.cs => ExtensionInstanceManager`1.cs} | 0
.../ExtensionServer.cs | 2 +-
.../Filter.cs | 2 +
.../Form.cs | 2 +-
.../ListHelpers.cs | 27 +-
.../ListItem.cs | 1 +
.../ListPage.cs | 6 +-
.../LogMessage.cs | 32 ++
.../MarkdownPage.cs | 1 +
...Microsoft.CmdPal.Extensions.Helpers.csproj | 3 +
.../NoOpCommand.cs | 6 +-
.../OpenUrlCommand.cs | 4 +
.../Page.cs | 1 +
.../ProgressState.cs | 68 +--
.../StatusMessage.cs | 44 ++
.../StringMatcher.cs | 15 +-
.../Tag.cs | 7 +-
.../Microsoft.CmdPal.Extensions.vcxproj | 4 +-
.../Microsoft.CmdPal.Extensions/version.rc | 10 +-
.../cmdpal/extensionsdk/_build/.gitkeep | 3 -
.../cmdpal/extensionsdk/azure-pipelines.yml | 4 -
...t.Windows.CommandPalette.Extensions.nuspec | 36 --
...ft.Windows.CommandPalette.Extensions.props | 5 -
....Windows.CommandPalette.Extensions.targets | 7 -
.../{codeAnalysis => }/format_sources.ps1 | 0
src/modules/cmdpal/owners.txt | 11 -
78 files changed, 742 insertions(+), 1385 deletions(-)
delete mode 100644 Microsoft.CmdPal.sln
delete mode 100644 src/modules/cmdpal/.gitignore
delete mode 100644 src/modules/cmdpal/.vsconfig
delete mode 100644 src/modules/cmdpal/Directory.Build.props
delete mode 100644 src/modules/cmdpal/Directory.CppBuild.props
delete mode 100644 src/modules/cmdpal/Exts/SampleExtension.sln
delete mode 100644 src/modules/cmdpal/ToolingVersions.props
delete mode 100644 src/modules/cmdpal/WindowsCommandPalette.sln
delete mode 100644 src/modules/cmdpal/codeAnalysis/GlobalSuppressions.cs
delete mode 100644 src/modules/cmdpal/codeAnalysis/Rules.ruleset
delete mode 100644 src/modules/cmdpal/codeAnalysis/StubSuppressions.cs
delete mode 100644 src/modules/cmdpal/codeAnalysis/StyleCop.json
delete mode 100644 src/modules/cmdpal/exclusion.dic
delete mode 100644 src/modules/cmdpal/extensionsdk/BuildSDKHelper.cmd
delete mode 100644 src/modules/cmdpal/extensionsdk/BuildSDKHelper.ps1
delete mode 100644 src/modules/cmdpal/extensionsdk/CmdPalSDK.sln
delete mode 100644 src/modules/cmdpal/extensionsdk/Directory.Build.props
rename src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions.Helpers/{ExtensionInstanceManager.cs => ExtensionInstanceManager`1.cs} (100%)
create mode 100644 src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions.Helpers/LogMessage.cs
create mode 100644 src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions.Helpers/StatusMessage.cs
delete mode 100644 src/modules/cmdpal/extensionsdk/_build/.gitkeep
delete mode 100644 src/modules/cmdpal/extensionsdk/azure-pipelines.yml
delete mode 100644 src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.nuspec
delete mode 100644 src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.props
delete mode 100644 src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.targets
rename src/modules/cmdpal/{codeAnalysis => }/format_sources.ps1 (100%)
delete mode 100644 src/modules/cmdpal/owners.txt
diff --git a/.vsconfig b/.vsconfig
index bc5f1200fc1d..77ec8b0ffda2 100644
--- a/.vsconfig
+++ b/.vsconfig
@@ -1,12 +1,13 @@
{
"version": "1.0",
- "components": [
+ "components": [
"Microsoft.VisualStudio.Component.CoreEditor",
"Microsoft.VisualStudio.Workload.CoreEditor",
"Microsoft.VisualStudio.Workload.NativeDesktop",
"Microsoft.VisualStudio.Workload.ManagedDesktop",
"Microsoft.VisualStudio.Workload.Universal",
"Microsoft.VisualStudio.Component.Windows10SDK.19041",
+ "Microsoft.VisualStudio.Component.Windows10SDK.20348",
"Microsoft.VisualStudio.Component.Windows10SDK.22621",
"Microsoft.VisualStudio.ComponentGroup.UWP.VC",
"Microsoft.VisualStudio.Component.UWP.VC.ARM64",
@@ -18,4 +19,4 @@
"Microsoft.VisualStudio.Component.VC.ATL.Spectre",
"Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs"
]
-}
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/Microsoft.CmdPal.sln b/Microsoft.CmdPal.sln
deleted file mode 100644
index f53555791468..000000000000
--- a/Microsoft.CmdPal.sln
+++ /dev/null
@@ -1,104 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.11.34929.205
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI.Poc", "src\modules\cmdpal\src\WindowsCommandPalette\Microsoft.CmdPal.UI.Poc.csproj", "{F71CF22B-A5C7-4328-A5B3-F4191AE57314}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Calculator", "src\modules\cmdpal\src\Plugins\Calculator\Calculator.csproj", "{C668A4BF-8BC1-48D1-B00D-FF99D05E6739}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AllApps", "src\modules\cmdpal\src\Plugins\AllApps\AllApps.csproj", "{F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Plugins", "Plugins", "{B7FF739F-7716-4FC3-B622-705486187B87}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Terminal.UI", "src\modules\cmdpal\src\Microsoft.Terminal.UI\Microsoft.Terminal.UI.vcxproj", "{6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extension SDK", "Extension SDK", "{FAA24D36-5515-467C-91E7-101A189AAF48}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Windows.CommandPalette.Extensions", "src\modules\cmdpal\extensionsdk\Microsoft.Windows.CommandPalette.Extensions\Microsoft.Windows.CommandPalette.Extensions.vcxproj", "{305DD37E-C85D-4B08-AAFE-7381FA890463}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Extensions.Helpers", "src\modules\cmdpal\extensionsdk\Microsoft.Windows.CommandPalette.Extensions.Helpers\Microsoft.CmdPal.Extensions.Helpers.csproj", "{79060D06-7174-4D66-8D0B-4FF021154049}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Common", "src\modules\cmdpal\src\common\Microsoft.CmdPal.Common.csproj", "{05CDE6EE-23AE-42AF-A9F5-E398C382675F}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.Build.0 = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.ActiveCfg = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.Build.0 = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.Deploy.0 = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.ActiveCfg = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.Build.0 = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.Deploy.0 = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.ActiveCfg = Release|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.Build.0 = Release|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.Deploy.0 = Release|x64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Debug|ARM64.Build.0 = Debug|ARM64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Debug|x64.ActiveCfg = Debug|x64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Debug|x64.Build.0 = Debug|x64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Release|ARM64.ActiveCfg = Release|ARM64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Release|ARM64.Build.0 = Release|ARM64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Release|x64.ActiveCfg = Release|x64
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739}.Release|x64.Build.0 = Release|x64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Debug|ARM64.Build.0 = Debug|ARM64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Debug|x64.ActiveCfg = Debug|x64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Debug|x64.Build.0 = Debug|x64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Release|ARM64.ActiveCfg = Release|ARM64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Release|ARM64.Build.0 = Release|ARM64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Release|x64.ActiveCfg = Release|x64
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D}.Release|x64.Build.0 = Release|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.Build.0 = Debug|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.ActiveCfg = Debug|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.Build.0 = Debug|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.ActiveCfg = Release|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.Build.0 = Release|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.ActiveCfg = Release|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.Build.0 = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.Build.0 = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.ActiveCfg = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.Build.0 = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.ActiveCfg = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.Build.0 = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.ActiveCfg = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.Build.0 = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|ARM64.ActiveCfg = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|ARM64.Build.0 = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.ActiveCfg = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.Build.0 = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|ARM64.ActiveCfg = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|ARM64.Build.0 = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.ActiveCfg = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.Build.0 = Release|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|ARM64.ActiveCfg = Debug|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|ARM64.Build.0 = Debug|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|x64.ActiveCfg = Debug|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|x64.Build.0 = Debug|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|ARM64.ActiveCfg = Release|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|ARM64.Build.0 = Release|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|x64.ActiveCfg = Release|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {C668A4BF-8BC1-48D1-B00D-FF99D05E6739} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {F5E5B8B9-7F51-43B8-ACED-1BD380BED98D} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {305DD37E-C85D-4B08-AAFE-7381FA890463} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- {79060D06-7174-4D66-8D0B-4FF021154049} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {BC94BFC2-A741-4978-B6A4-9E01B7660E6B}
- EndGlobalSection
-EndGlobal
diff --git a/PowerToys.sln b/PowerToys.sln
index 80722be402a3..a68983acfa34 100644
--- a/PowerToys.sln
+++ b/PowerToys.sln
@@ -630,6 +630,68 @@ Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "EtwTrace", "src\common\Tele
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MouseWithoutBorders.UnitTests", "src\modules\MouseWithoutBorders\MouseWithoutBorders.UnitTests\MouseWithoutBorders.UnitTests.csproj", "{66614C26-314C-4B91-9071-76133422CFEF}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "CommandPallete", "CommandPallete", "{3846508C-77EB-4034-A702-F8BB263C4F79}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI.Poc", "src\modules\cmdpal\WindowsCommandPalette\Microsoft.CmdPal.UI.Poc.csproj", "{A60CB091-3E95-49F3-8315-18EA3B4334B9}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Prototype", "Prototype", "{B9CE05D3-9770-4D73-B445-2500D712CA67}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Built-in Extensions", "Built-in Extensions", "{ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Apps", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.Apps\Microsoft.CmdPal.Ext.Apps.csproj", "{6CE438DF-C245-4997-A360-0A0939E4BA34}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Bookmarks", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.Bookmark\Microsoft.CmdPal.Ext.Bookmarks.csproj", "{E09AA983-C755-474F-83D6-A5CDF528C070}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Calc", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.Calc\Microsoft.CmdPal.Ext.Calc.csproj", "{6D56B64D-FF1F-488F-AFED-9B9854A5D399}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Settings", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.CmdPalSettings\Microsoft.CmdPal.Ext.Settings.csproj", "{C24B056E-6CDB-42DF-8BAF-286489CF0DE8}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Registry", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.Registry\Microsoft.CmdPal.Ext.Registry.csproj", "{92EC89E4-9972-453A-8A1A-3A9E230C146A}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsServices", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.WindowsServices\Microsoft.CmdPal.Ext.WindowsServices.csproj", "{51939B4F-1F62-4BFF-A6A2-C08646E5BE95}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsSettings", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.WindowsSettings\Microsoft.CmdPal.Ext.WindowsSettings.csproj", "{D1160404-D3D1-497A-883A-4059C07C2273}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsTerminal", "src\modules\cmdpal\Exts\Microsoft.CmdPal.Ext.WindowsTerminal\Microsoft.CmdPal.Ext.WindowsTerminal.csproj", "{40F6D69D-E321-400F-A767-5628C7AE453D}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extension SDK", "Extension SDK", "{F3D09629-59A2-4924-A4B9-D6BFAA2C1B49}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.CmdPal.Extensions", "src\modules\cmdpal\extensionsdk\Microsoft.CmdPal.Extensions\Microsoft.CmdPal.Extensions.vcxproj", "{305DD37E-C85D-4B08-AAFE-7381FA890463}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Extensions.Helpers", "src\modules\cmdpal\extensionsdk\Microsoft.CmdPal.Extensions.Helpers\Microsoft.CmdPal.Extensions.Helpers.csproj", "{CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Common", "src\modules\cmdpal\Microsoft.CmdPal.Common\Microsoft.CmdPal.Common.csproj", "{14E62033-58D0-4A7D-8990-52F50A08BBBD}"
+EndProject
+Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Terminal.UI", "src\modules\cmdpal\Microsoft.Terminal.UI\Microsoft.Terminal.UI.vcxproj", "{6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sample Extensions", "Sample Extensions", "{071E18A4-A530-46B8-AB7D-B862EE55E24E}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EverythingExtension", "src\modules\cmdpal\Exts\EverythingExtension\EverythingExtension.csproj", "{BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HackerNewsExtension", "src\modules\cmdpal\Exts\HackerNewsExtension\HackerNewsExtension.csproj", "{1CAA6480-ED3B-462E-8D42-D34497DFB0AB}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MastodonExtension", "src\modules\cmdpal\Exts\MastodonExtension\MastodonExtension.csproj", "{474447BA-8DC2-4DE5-BDD4-DEFC172FD175}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MediaControlsExtension", "src\modules\cmdpal\Exts\MediaControlsExtension\MediaControlsExtension.csproj", "{922A3BEB-8A93-40B4-89FE-96AABD632E69}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessMonitorExtension", "src\modules\cmdpal\Exts\ProcessMonitorExtension\ProcessMonitorExtension.csproj", "{C846F7A7-792A-47D9-B0CB-417C900EE03D}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SamplePagesExtension", "src\modules\cmdpal\Exts\SamplePagesExtension\SamplePagesExtension.csproj", "{C831231F-891C-4572-9694-45062534B42A}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpongebotExtension", "src\modules\cmdpal\Exts\SpongebotExtension\SpongebotExtension.csproj", "{2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSHKeychainExtension", "src\modules\cmdpal\Exts\SSHKeychainExtension\SSHKeychainExtension.csproj", "{BE349BD2-7FF8-47B6-8F74-42B52DDF730A}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TemplateExtension", "src\modules\cmdpal\Exts\TemplateExtension\TemplateExtension.csproj", "{EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YouTubeExtension", "src\modules\cmdpal\Exts\YouTubeExtension\YouTubeExtension.csproj", "{8E47BF33-A402-4582-930C-95E35418F653}"
+EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "UI", "UI", "{7520A2FE-00A2-49B8-83ED-DB216E874C04}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI", "src\modules\cmdpal\Microsoft.CmdPal.UI\Microsoft.CmdPal.UI.csproj", "{8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}"
+EndProject
+Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI.ViewModels", "src\modules\cmdpal\Microsoft.CmdPal.UI.ViewModels\Microsoft.CmdPal.UI.ViewModels.csproj", "{C66020D1-CB10-4CF7-8715-84C97FD5E5E2}"
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|ARM64 = Debug|ARM64
@@ -2246,6 +2308,30 @@ Global
{8A08D663-4995-40E3-B42C-3F910625F284}.Release|x64.Build.0 = Release|x64
{8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.ActiveCfg = Release|x64
{8A08D663-4995-40E3-B42C-3F910625F284}.Release|x86.Build.0 = Release|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|ARM64.Build.0 = Debug|ARM64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x64.ActiveCfg = Debug|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x64.Build.0 = Debug|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x86.ActiveCfg = Debug|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x86.Build.0 = Debug|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|ARM64.ActiveCfg = Release|ARM64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|ARM64.Build.0 = Release|ARM64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x64.ActiveCfg = Release|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x64.Build.0 = Release|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x86.ActiveCfg = Release|x64
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x86.Build.0 = Release|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x64.ActiveCfg = Debug|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x64.Build.0 = Debug|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x86.ActiveCfg = Debug|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x86.Build.0 = Debug|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|ARM64.ActiveCfg = Release|ARM64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|ARM64.Build.0 = Release|ARM64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x64.ActiveCfg = Release|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x64.Build.0 = Release|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x86.ActiveCfg = Release|x64
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x86.Build.0 = Release|x64
{D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.ActiveCfg = Debug|ARM64
{D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|ARM64.Build.0 = Debug|ARM64
{D962A009-834F-4EEC-AABB-430DF8F98E39}.Debug|x64.ActiveCfg = Debug|x64
@@ -2646,30 +2732,6 @@ Global
{F055103B-F80B-4D0C-BF48-057C55620033}.Release|x64.Build.0 = Release|x64
{F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.ActiveCfg = Release|x64
{F055103B-F80B-4D0C-BF48-057C55620033}.Release|x86.Build.0 = Release|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|ARM64.Build.0 = Debug|ARM64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x64.ActiveCfg = Debug|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x64.Build.0 = Debug|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x86.ActiveCfg = Debug|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Debug|x86.Build.0 = Debug|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|ARM64.ActiveCfg = Release|ARM64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|ARM64.Build.0 = Release|ARM64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x64.ActiveCfg = Release|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x64.Build.0 = Release|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x86.ActiveCfg = Release|x64
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA}.Release|x86.Build.0 = Release|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|ARM64.Build.0 = Debug|ARM64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x64.ActiveCfg = Debug|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x64.Build.0 = Debug|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x86.ActiveCfg = Debug|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Debug|x86.Build.0 = Debug|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|ARM64.ActiveCfg = Release|ARM64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|ARM64.Build.0 = Release|ARM64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x64.ActiveCfg = Release|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x64.Build.0 = Release|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x86.ActiveCfg = Release|x64
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77}.Release|x86.Build.0 = Release|x64
{B31FCC55-B5A4-4EA7-B414-2DCEAE6AF332}.Debug|ARM64.ActiveCfg = Debug|ARM64
{B31FCC55-B5A4-4EA7-B414-2DCEAE6AF332}.Debug|ARM64.Build.0 = Debug|ARM64
{B31FCC55-B5A4-4EA7-B414-2DCEAE6AF332}.Debug|x64.ActiveCfg = Debug|x64
@@ -2778,6 +2840,378 @@ Global
{66614C26-314C-4B91-9071-76133422CFEF}.Release|x64.Build.0 = Release|x64
{66614C26-314C-4B91-9071-76133422CFEF}.Release|x86.ActiveCfg = Release|x64
{66614C26-314C-4B91-9071-76133422CFEF}.Release|x86.Build.0 = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|ARM64.Build.0 = Debug|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x64.ActiveCfg = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x64.Build.0 = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x64.Deploy.0 = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x86.ActiveCfg = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x86.Build.0 = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Debug|x86.Deploy.0 = Debug|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|ARM64.ActiveCfg = Release|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|ARM64.Build.0 = Release|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|ARM64.Deploy.0 = Release|ARM64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x64.ActiveCfg = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x64.Build.0 = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x64.Deploy.0 = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x86.ActiveCfg = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x86.Build.0 = Release|x64
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9}.Release|x86.Deploy.0 = Release|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|x64.ActiveCfg = Debug|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|x64.Build.0 = Debug|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|x86.ActiveCfg = Debug|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Debug|x86.Build.0 = Debug|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|ARM64.ActiveCfg = Release|ARM64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|ARM64.Build.0 = Release|ARM64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|x64.ActiveCfg = Release|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|x64.Build.0 = Release|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|x86.ActiveCfg = Release|x64
+ {6CE438DF-C245-4997-A360-0A0939E4BA34}.Release|x86.Build.0 = Release|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|ARM64.Build.0 = Debug|ARM64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|x64.ActiveCfg = Debug|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|x64.Build.0 = Debug|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|x86.ActiveCfg = Debug|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Debug|x86.Build.0 = Debug|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|ARM64.ActiveCfg = Release|ARM64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|ARM64.Build.0 = Release|ARM64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|x64.ActiveCfg = Release|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|x64.Build.0 = Release|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|x86.ActiveCfg = Release|x64
+ {E09AA983-C755-474F-83D6-A5CDF528C070}.Release|x86.Build.0 = Release|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|x64.ActiveCfg = Debug|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|x64.Build.0 = Debug|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|x86.ActiveCfg = Debug|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Debug|x86.Build.0 = Debug|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|ARM64.ActiveCfg = Release|ARM64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|ARM64.Build.0 = Release|ARM64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|x64.ActiveCfg = Release|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|x64.Build.0 = Release|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|x86.ActiveCfg = Release|x64
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399}.Release|x86.Build.0 = Release|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|x64.ActiveCfg = Debug|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|x64.Build.0 = Debug|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|x86.ActiveCfg = Debug|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Debug|x86.Build.0 = Debug|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|ARM64.Build.0 = Release|ARM64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|x64.ActiveCfg = Release|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|x64.Build.0 = Release|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|x86.ActiveCfg = Release|x64
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8}.Release|x86.Build.0 = Release|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|x64.ActiveCfg = Debug|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|x64.Build.0 = Debug|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|x86.ActiveCfg = Debug|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Debug|x86.Build.0 = Debug|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|ARM64.ActiveCfg = Release|ARM64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|ARM64.Build.0 = Release|ARM64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|x64.ActiveCfg = Release|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|x64.Build.0 = Release|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|x86.ActiveCfg = Release|x64
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A}.Release|x86.Build.0 = Release|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|ARM64.Build.0 = Debug|ARM64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|x64.ActiveCfg = Debug|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|x64.Build.0 = Debug|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|x86.ActiveCfg = Debug|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Debug|x86.Build.0 = Debug|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|ARM64.ActiveCfg = Release|ARM64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|ARM64.Build.0 = Release|ARM64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|x64.ActiveCfg = Release|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|x64.Build.0 = Release|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|x86.ActiveCfg = Release|x64
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95}.Release|x86.Build.0 = Release|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|ARM64.Build.0 = Debug|ARM64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|x64.ActiveCfg = Debug|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|x64.Build.0 = Debug|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|x86.ActiveCfg = Debug|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Debug|x86.Build.0 = Debug|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|ARM64.ActiveCfg = Release|ARM64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|ARM64.Build.0 = Release|ARM64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|x64.ActiveCfg = Release|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|x64.Build.0 = Release|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|x86.ActiveCfg = Release|x64
+ {D1160404-D3D1-497A-883A-4059C07C2273}.Release|x86.Build.0 = Release|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|x64.ActiveCfg = Debug|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|x64.Build.0 = Debug|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|x86.ActiveCfg = Debug|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Debug|x86.Build.0 = Debug|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|ARM64.ActiveCfg = Release|ARM64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|ARM64.Build.0 = Release|ARM64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|x64.ActiveCfg = Release|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|x64.Build.0 = Release|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|x86.ActiveCfg = Release|x64
+ {40F6D69D-E321-400F-A767-5628C7AE453D}.Release|x86.Build.0 = Release|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.Build.0 = Debug|ARM64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.ActiveCfg = Debug|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.Build.0 = Debug|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x86.ActiveCfg = Debug|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x86.Build.0 = Debug|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.ActiveCfg = Release|ARM64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.Build.0 = Release|ARM64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.ActiveCfg = Release|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.Build.0 = Release|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x86.ActiveCfg = Release|x64
+ {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x86.Build.0 = Release|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|ARM64.Build.0 = Debug|ARM64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|x64.ActiveCfg = Debug|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|x64.Build.0 = Debug|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|x86.ActiveCfg = Debug|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Debug|x86.Build.0 = Debug|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|ARM64.ActiveCfg = Release|ARM64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|ARM64.Build.0 = Release|ARM64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|x64.ActiveCfg = Release|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|x64.Build.0 = Release|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|x86.ActiveCfg = Release|x64
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24}.Release|x86.Build.0 = Release|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|ARM64.Build.0 = Debug|ARM64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|x64.ActiveCfg = Debug|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|x64.Build.0 = Debug|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|x86.ActiveCfg = Debug|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Debug|x86.Build.0 = Debug|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|ARM64.ActiveCfg = Release|ARM64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|ARM64.Build.0 = Release|ARM64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|x64.ActiveCfg = Release|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|x64.Build.0 = Release|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|x86.ActiveCfg = Release|x64
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD}.Release|x86.Build.0 = Release|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.ActiveCfg = Debug|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.Build.0 = Debug|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x86.ActiveCfg = Debug|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x86.Build.0 = Debug|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.ActiveCfg = Release|ARM64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.Build.0 = Release|ARM64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.ActiveCfg = Release|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.Build.0 = Release|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x86.ActiveCfg = Release|x64
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x86.Build.0 = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x64.ActiveCfg = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x64.Build.0 = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x64.Deploy.0 = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x86.ActiveCfg = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x86.Build.0 = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Debug|x86.Deploy.0 = Debug|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|ARM64.ActiveCfg = Release|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|ARM64.Build.0 = Release|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|ARM64.Deploy.0 = Release|ARM64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x64.ActiveCfg = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x64.Build.0 = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x64.Deploy.0 = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x86.ActiveCfg = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x86.Build.0 = Release|x64
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E}.Release|x86.Deploy.0 = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|ARM64.Build.0 = Debug|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x64.ActiveCfg = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x64.Build.0 = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x64.Deploy.0 = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x86.ActiveCfg = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x86.Build.0 = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Debug|x86.Deploy.0 = Debug|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|ARM64.ActiveCfg = Release|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|ARM64.Build.0 = Release|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|ARM64.Deploy.0 = Release|ARM64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x64.ActiveCfg = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x64.Build.0 = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x64.Deploy.0 = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x86.ActiveCfg = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x86.Build.0 = Release|x64
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB}.Release|x86.Deploy.0 = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|ARM64.Build.0 = Debug|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x64.ActiveCfg = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x64.Build.0 = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x64.Deploy.0 = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x86.ActiveCfg = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x86.Build.0 = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Debug|x86.Deploy.0 = Debug|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|ARM64.ActiveCfg = Release|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|ARM64.Build.0 = Release|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|ARM64.Deploy.0 = Release|ARM64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x64.ActiveCfg = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x64.Build.0 = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x64.Deploy.0 = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x86.ActiveCfg = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x86.Build.0 = Release|x64
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175}.Release|x86.Deploy.0 = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|ARM64.Build.0 = Debug|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x64.ActiveCfg = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x64.Build.0 = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x64.Deploy.0 = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x86.ActiveCfg = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x86.Build.0 = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Debug|x86.Deploy.0 = Debug|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|ARM64.ActiveCfg = Release|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|ARM64.Build.0 = Release|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|ARM64.Deploy.0 = Release|ARM64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x64.ActiveCfg = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x64.Build.0 = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x64.Deploy.0 = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x86.ActiveCfg = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x86.Build.0 = Release|x64
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69}.Release|x86.Deploy.0 = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x64.ActiveCfg = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x64.Build.0 = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x64.Deploy.0 = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x86.ActiveCfg = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x86.Build.0 = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Debug|x86.Deploy.0 = Debug|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|ARM64.Build.0 = Release|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|ARM64.Deploy.0 = Release|ARM64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x64.ActiveCfg = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x64.Build.0 = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x64.Deploy.0 = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x86.ActiveCfg = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x86.Build.0 = Release|x64
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D}.Release|x86.Deploy.0 = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x64.ActiveCfg = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x64.Build.0 = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x64.Deploy.0 = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x86.ActiveCfg = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x86.Build.0 = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Debug|x86.Deploy.0 = Debug|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|ARM64.Build.0 = Release|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|ARM64.Deploy.0 = Release|ARM64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x64.ActiveCfg = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x64.Build.0 = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x64.Deploy.0 = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x86.ActiveCfg = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x86.Build.0 = Release|x64
+ {C831231F-891C-4572-9694-45062534B42A}.Release|x86.Deploy.0 = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|ARM64.Build.0 = Debug|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x64.ActiveCfg = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x64.Build.0 = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x64.Deploy.0 = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x86.ActiveCfg = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x86.Build.0 = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Debug|x86.Deploy.0 = Debug|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|ARM64.ActiveCfg = Release|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|ARM64.Build.0 = Release|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|ARM64.Deploy.0 = Release|ARM64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x64.ActiveCfg = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x64.Build.0 = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x64.Deploy.0 = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x86.ActiveCfg = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x86.Build.0 = Release|x64
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F}.Release|x86.Deploy.0 = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|ARM64.Build.0 = Debug|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x64.ActiveCfg = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x64.Build.0 = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x64.Deploy.0 = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x86.ActiveCfg = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x86.Build.0 = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Debug|x86.Deploy.0 = Debug|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|ARM64.ActiveCfg = Release|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|ARM64.Build.0 = Release|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|ARM64.Deploy.0 = Release|ARM64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x64.ActiveCfg = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x64.Build.0 = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x64.Deploy.0 = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x86.ActiveCfg = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x86.Build.0 = Release|x64
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A}.Release|x86.Deploy.0 = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|ARM64.Build.0 = Debug|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x64.ActiveCfg = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x64.Build.0 = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x64.Deploy.0 = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x86.ActiveCfg = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x86.Build.0 = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Debug|x86.Deploy.0 = Debug|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|ARM64.ActiveCfg = Release|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|ARM64.Build.0 = Release|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|ARM64.Deploy.0 = Release|ARM64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x64.ActiveCfg = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x64.Build.0 = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x64.Deploy.0 = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x86.ActiveCfg = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x86.Build.0 = Release|x64
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB}.Release|x86.Deploy.0 = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x64.ActiveCfg = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x64.Build.0 = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x64.Deploy.0 = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x86.ActiveCfg = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x86.Build.0 = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Debug|x86.Deploy.0 = Debug|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|ARM64.ActiveCfg = Release|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|ARM64.Build.0 = Release|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|ARM64.Deploy.0 = Release|ARM64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x64.ActiveCfg = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x64.Build.0 = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x64.Deploy.0 = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x86.ActiveCfg = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x86.Build.0 = Release|x64
+ {8E47BF33-A402-4582-930C-95E35418F653}.Release|x86.Deploy.0 = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|ARM64.Build.0 = Debug|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|ARM64.Deploy.0 = Debug|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x64.ActiveCfg = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x64.Build.0 = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x64.Deploy.0 = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x86.ActiveCfg = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x86.Build.0 = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Debug|x86.Deploy.0 = Debug|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|ARM64.ActiveCfg = Release|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|ARM64.Build.0 = Release|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|ARM64.Deploy.0 = Release|ARM64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x64.ActiveCfg = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x64.Build.0 = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x64.Deploy.0 = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x86.ActiveCfg = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x86.Build.0 = Release|x64
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90}.Release|x86.Deploy.0 = Release|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|ARM64.ActiveCfg = Debug|ARM64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|ARM64.Build.0 = Debug|ARM64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|x64.ActiveCfg = Debug|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|x64.Build.0 = Debug|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|x86.ActiveCfg = Debug|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Debug|x86.Build.0 = Debug|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|ARM64.ActiveCfg = Release|ARM64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|ARM64.Build.0 = Release|ARM64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|x64.ActiveCfg = Release|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|x64.Build.0 = Release|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|x86.ActiveCfg = Release|x64
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2}.Release|x86.Build.0 = Release|x64
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@@ -2956,6 +3390,8 @@ Global
{B5EB9FE9-37EF-47C3-B8B8-81AD3C2972C2} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}
{A663E672-B26D-4EC0-BEAB-FE2E424AC46F} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}
{8A08D663-4995-40E3-B42C-3F910625F284} = {322566EF-20DC-43A6-B9F8-616AF942579A}
+ {923DF87C-CA99-4D1C-B1D2-959174E95BFA} = {322566EF-20DC-43A6-B9F8-616AF942579A}
+ {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77} = {322566EF-20DC-43A6-B9F8-616AF942579A}
{D962A009-834F-4EEC-AABB-430DF8F98E39} = {322566EF-20DC-43A6-B9F8-616AF942579A}
{9873BA05-4C41-4819-9283-CF45D795431B} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC}
{FC373B24-3293-453C-AAF5-CF2909DCEE6A} = {9873BA05-4C41-4819-9283-CF45D795431B}
@@ -2995,8 +3431,6 @@ Global
{8ACB33D9-C95B-47D4-8363-9731EE0930A0} = {CA716AE6-FE5C-40AC-BB8F-2C87912687AC}
{CA716AE6-FE5C-40AC-BB8F-2C87912687AC} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC}
{F055103B-F80B-4D0C-BF48-057C55620033} = {5A7818A8-109C-4E1C-850D-1A654E234B0E}
- {923DF87C-CA99-4D1C-B1D2-959174E95BFA} = {322566EF-20DC-43A6-B9F8-616AF942579A}
- {D5E42C63-57C5-4EF6-AECE-1E2FCA725B77} = {322566EF-20DC-43A6-B9F8-616AF942579A}
{A2221D7E-55E7-4BEA-90D1-4F162D670BBF} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC}
{BE126CBB-AE12-406A-9837-A05ACFCA57A7} = {A2221D7E-55E7-4BEA-90D1-4F162D670BBF}
{14CB58B7-D280-4A7A-95DE-4B2DF14EA000} = {A2221D7E-55E7-4BEA-90D1-4F162D670BBF}
@@ -3009,6 +3443,37 @@ Global
{37D07516-4185-43A4-924F-3C7A5D95ECF6} = {A2221D7E-55E7-4BEA-90D1-4F162D670BBF}
{8F021B46-362B-485C-BFBA-CCF83E820CBD} = {8F62026A-294B-41C6-8839-87463613F216}
{66614C26-314C-4B91-9071-76133422CFEF} = {B6C42F16-73EB-477E-8B0D-4E6CF6C20AAC}
+ {3846508C-77EB-4034-A702-F8BB263C4F79} = {4574FDD0-F61D-4376-98BF-E5A1262C11EC}
+ {A60CB091-3E95-49F3-8315-18EA3B4334B9} = {B9CE05D3-9770-4D73-B445-2500D712CA67}
+ {B9CE05D3-9770-4D73-B445-2500D712CA67} = {3846508C-77EB-4034-A702-F8BB263C4F79}
+ {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2} = {3846508C-77EB-4034-A702-F8BB263C4F79}
+ {6CE438DF-C245-4997-A360-0A0939E4BA34} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {E09AA983-C755-474F-83D6-A5CDF528C070} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {6D56B64D-FF1F-488F-AFED-9B9854A5D399} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {C24B056E-6CDB-42DF-8BAF-286489CF0DE8} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {92EC89E4-9972-453A-8A1A-3A9E230C146A} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {51939B4F-1F62-4BFF-A6A2-C08646E5BE95} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {D1160404-D3D1-497A-883A-4059C07C2273} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {40F6D69D-E321-400F-A767-5628C7AE453D} = {ECB8E0D1-7603-4E5C-AB10-D1E545E6F8E2}
+ {F3D09629-59A2-4924-A4B9-D6BFAA2C1B49} = {3846508C-77EB-4034-A702-F8BB263C4F79}
+ {305DD37E-C85D-4B08-AAFE-7381FA890463} = {F3D09629-59A2-4924-A4B9-D6BFAA2C1B49}
+ {CA4D810F-C8F4-4B61-9DA9-71807E0B9F24} = {F3D09629-59A2-4924-A4B9-D6BFAA2C1B49}
+ {14E62033-58D0-4A7D-8990-52F50A08BBBD} = {B9CE05D3-9770-4D73-B445-2500D712CA67}
+ {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F} = {B9CE05D3-9770-4D73-B445-2500D712CA67}
+ {071E18A4-A530-46B8-AB7D-B862EE55E24E} = {3846508C-77EB-4034-A702-F8BB263C4F79}
+ {BDEC52D7-F53F-428C-ACC5-9D6A73A7077E} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {1CAA6480-ED3B-462E-8D42-D34497DFB0AB} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {474447BA-8DC2-4DE5-BDD4-DEFC172FD175} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {922A3BEB-8A93-40B4-89FE-96AABD632E69} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {C846F7A7-792A-47D9-B0CB-417C900EE03D} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {C831231F-891C-4572-9694-45062534B42A} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {2C2AF4F4-3DB2-416F-9F38-2B710D961E6F} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {BE349BD2-7FF8-47B6-8F74-42B52DDF730A} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {EEBDB1CA-BBDD-421D-9D86-67145D0C6EEB} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {8E47BF33-A402-4582-930C-95E35418F653} = {071E18A4-A530-46B8-AB7D-B862EE55E24E}
+ {7520A2FE-00A2-49B8-83ED-DB216E874C04} = {3846508C-77EB-4034-A702-F8BB263C4F79}
+ {8FBDABA4-40EE-4C0E-9BC8-2F6444A6EF90} = {7520A2FE-00A2-49B8-83ED-DB216E874C04}
+ {C66020D1-CB10-4CF7-8715-84C97FD5E5E2} = {7520A2FE-00A2-49B8-83ED-DB216E874C04}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C3A2F9D1-7930-4EF4-A6FC-7EE0A99821D0}
diff --git a/src/modules/cmdpal/.gitignore b/src/modules/cmdpal/.gitignore
deleted file mode 100644
index 062f40d6fd74..000000000000
--- a/src/modules/cmdpal/.gitignore
+++ /dev/null
@@ -1,5 +0,0 @@
-
-# Allow launchSettings.json in the Properties folder to be committed to source
-# control. This overrides the one in the root .gitignore, because all the cmdpal
-# projects will explode without this file
-!**/Properties/launchSettings.json
diff --git a/src/modules/cmdpal/.vsconfig b/src/modules/cmdpal/.vsconfig
deleted file mode 100644
index ecae00d0c605..000000000000
--- a/src/modules/cmdpal/.vsconfig
+++ /dev/null
@@ -1,43 +0,0 @@
-{
- "version": "1.0",
- "components": [
- "Microsoft.VisualStudio.Component.Roslyn.Compiler",
- "Microsoft.Component.MSBuild",
- "Microsoft.VisualStudio.Component.Roslyn.LanguageServices",
- "Microsoft.VisualStudio.Component.SQL.CLR",
- "Microsoft.VisualStudio.Component.CoreEditor",
- "Microsoft.VisualStudio.Workload.CoreEditor",
- "Microsoft.Net.Component.4.8.SDK",
- "Microsoft.Net.Component.4.7.2.TargetingPack",
- "Microsoft.Net.ComponentGroup.DevelopmentPrerequisites",
- "Microsoft.VisualStudio.Component.TypeScript.TSServer",
- "Microsoft.VisualStudio.ComponentGroup.WebToolsExtensions",
- "Microsoft.VisualStudio.Component.JavaScript.TypeScript",
- "Microsoft.VisualStudio.Component.TextTemplating",
- "Microsoft.VisualStudio.Component.NuGet",
- "Microsoft.Component.ClickOnce",
- "Microsoft.VisualStudio.Component.ManagedDesktop.Core",
- "Microsoft.NetCore.Component.SDK",
- "Microsoft.VisualStudio.Component.FSharp",
- "Microsoft.ComponentGroup.ClickOnce.Publish",
- "Microsoft.NetCore.Component.DevelopmentTools",
- "Microsoft.Net.Component.4.8.TargetingPack",
- "Microsoft.Net.ComponentGroup.4.8.DeveloperTools",
- "Microsoft.VisualStudio.Component.IntelliTrace.FrontEnd",
- "Microsoft.VisualStudio.Component.DiagnosticTools",
- "Microsoft.VisualStudio.Component.EntityFramework",
- "Microsoft.VisualStudio.Component.LiveUnitTesting",
- "Microsoft.VisualStudio.Component.Debugger.JustInTime",
- "Component.Microsoft.VisualStudio.LiveShare.2022",
- "Microsoft.VisualStudio.Component.IntelliCode",
- "Microsoft.VisualStudio.Component.Windows10SDK",
- "Microsoft.VisualStudio.ComponentGroup.MSIX.Packaging",
- "Microsoft.VisualStudio.Component.ManagedDesktop.Prerequisites",
- "Microsoft.VisualStudio.Component.DotNetModelBuilder",
- "Microsoft.VisualStudio.ComponentGroup.WindowsAppSDK.Cs",
- "Microsoft.ComponentGroup.Blend",
- "Microsoft.VisualStudio.Workload.ManagedDesktop",
- "Microsoft.VisualStudio.Component.Windows10SDK.20348",
- "Microsoft.VisualStudio.Component.Windows10SDK.19041"
- ]
-}
\ No newline at end of file
diff --git a/src/modules/cmdpal/Directory.Build.props b/src/modules/cmdpal/Directory.Build.props
deleted file mode 100644
index 09bd959a54f1..000000000000
--- a/src/modules/cmdpal/Directory.Build.props
+++ /dev/null
@@ -1,47 +0,0 @@
-
-
-
- Copyright (C) 2022 Microsoft Corporation
- Microsoft Corp.
- Copyright (C) 2022 Microsoft Corporation
- CmdPal
- Microsoft Corporation
- en-US
- x64;ARM64
- CmdPal
- true
- Recommended
- $(Platform)
- false
-
-
-
-
- true
-
-
-
- <_PropertySheetDisplayName>CmdPal.Root.Props
- $(MsbuildThisFileDirectory)\Cpp.Build.props
-
-
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
-
- all
- runtime; build; native; contentfiles; analyzers; buildtransitive
-
-
-
-
diff --git a/src/modules/cmdpal/Directory.CppBuild.props b/src/modules/cmdpal/Directory.CppBuild.props
deleted file mode 100644
index 59efed82bd55..000000000000
--- a/src/modules/cmdpal/Directory.CppBuild.props
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
- $(Platform)
- x86
- $(SolutionDir)tools\bin\$(CppPlatformTarget)\$(Configuration)\
- $(CppBaseOutDir)$(MSBuildProjectName)\
-
-
-
-
-
-
\ No newline at end of file
diff --git a/src/modules/cmdpal/Exts/EverythingExtension/EverythingExtension.csproj b/src/modules/cmdpal/Exts/EverythingExtension/EverythingExtension.csproj
index 39a2b6f28fb2..4fc1dd909ff4 100644
--- a/src/modules/cmdpal/Exts/EverythingExtension/EverythingExtension.csproj
+++ b/src/modules/cmdpal/Exts/EverythingExtension/EverythingExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/HackerNewsExtension/HackerNewsExtension.csproj b/src/modules/cmdpal/Exts/HackerNewsExtension/HackerNewsExtension.csproj
index 7096708e919f..a7fa8f751240 100644
--- a/src/modules/cmdpal/Exts/HackerNewsExtension/HackerNewsExtension.csproj
+++ b/src/modules/cmdpal/Exts/HackerNewsExtension/HackerNewsExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/MastodonExtension/MastodonExtension.csproj b/src/modules/cmdpal/Exts/MastodonExtension/MastodonExtension.csproj
index f91831fa511b..87192817276e 100644
--- a/src/modules/cmdpal/Exts/MastodonExtension/MastodonExtension.csproj
+++ b/src/modules/cmdpal/Exts/MastodonExtension/MastodonExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/MediaControlsExtension/MediaControlsExtension.csproj b/src/modules/cmdpal/Exts/MediaControlsExtension/MediaControlsExtension.csproj
index aeaeda978597..60a12ea95e0f 100644
--- a/src/modules/cmdpal/Exts/MediaControlsExtension/MediaControlsExtension.csproj
+++ b/src/modules/cmdpal/Exts/MediaControlsExtension/MediaControlsExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Apps/Microsoft.CmdPal.Ext.Apps.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Apps/Microsoft.CmdPal.Ext.Apps.csproj
index 7b8aa18f11ed..335c8bdff116 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Apps/Microsoft.CmdPal.Ext.Apps.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Apps/Microsoft.CmdPal.Ext.Apps.csproj
@@ -3,6 +3,9 @@
Microsoft.CmdPal.Ext.Apps
enable
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Bookmark/Microsoft.CmdPal.Ext.Bookmarks.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Bookmark/Microsoft.CmdPal.Ext.Bookmarks.csproj
index c04420982575..5fc61e5843fb 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Bookmark/Microsoft.CmdPal.Ext.Bookmarks.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Bookmark/Microsoft.CmdPal.Ext.Bookmarks.csproj
@@ -3,6 +3,9 @@
Microsoft.CmdPal.Ext.Bookmarks
enable
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Calc/Microsoft.CmdPal.Ext.Calc.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Calc/Microsoft.CmdPal.Ext.Calc.csproj
index 2d3cba680e33..eec83673a1a6 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Calc/Microsoft.CmdPal.Ext.Calc.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Calc/Microsoft.CmdPal.Ext.Calc.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.Calc
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.CmdPalSettings/Microsoft.CmdPal.Ext.Settings.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.CmdPalSettings/Microsoft.CmdPal.Ext.Settings.csproj
index 8784bd413dc4..97764f07e1fb 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.CmdPalSettings/Microsoft.CmdPal.Ext.Settings.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.CmdPalSettings/Microsoft.CmdPal.Ext.Settings.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.Settings
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Registry/Microsoft.CmdPal.Ext.Registry.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Registry/Microsoft.CmdPal.Ext.Registry.csproj
index 9e49e7552fd5..d036a14d384b 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Registry/Microsoft.CmdPal.Ext.Registry.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.Registry/Microsoft.CmdPal.Ext.Registry.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.Registry
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsServices/Microsoft.CmdPal.Ext.WindowsServices.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsServices/Microsoft.CmdPal.Ext.WindowsServices.csproj
index cc1f301c5327..00b1deb164bb 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsServices/Microsoft.CmdPal.Ext.WindowsServices.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsServices/Microsoft.CmdPal.Ext.WindowsServices.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.WindowsServices
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsSettings/Microsoft.CmdPal.Ext.WindowsSettings.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsSettings/Microsoft.CmdPal.Ext.WindowsSettings.csproj
index ba4bab627a67..2b38ec529752 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsSettings/Microsoft.CmdPal.Ext.WindowsSettings.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsSettings/Microsoft.CmdPal.Ext.WindowsSettings.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.WindowsSettings
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsTerminal/Microsoft.CmdPal.Ext.WindowsTerminal.csproj b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsTerminal/Microsoft.CmdPal.Ext.WindowsTerminal.csproj
index 8b3eb3157840..1bbc7fba7503 100644
--- a/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsTerminal/Microsoft.CmdPal.Ext.WindowsTerminal.csproj
+++ b/src/modules/cmdpal/Exts/Microsoft.CmdPal.Ext.WindowsTerminal/Microsoft.CmdPal.Ext.WindowsTerminal.csproj
@@ -2,6 +2,9 @@
Microsoft.CmdPal.Ext.WindowsTerminal
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/ProcessMonitorExtension/ProcessMonitorExtension.csproj b/src/modules/cmdpal/Exts/ProcessMonitorExtension/ProcessMonitorExtension.csproj
index 3efa57c02414..2f94079d0564 100644
--- a/src/modules/cmdpal/Exts/ProcessMonitorExtension/ProcessMonitorExtension.csproj
+++ b/src/modules/cmdpal/Exts/ProcessMonitorExtension/ProcessMonitorExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/SSHKeychainExtension/SSHKeychainExtension.csproj b/src/modules/cmdpal/Exts/SSHKeychainExtension/SSHKeychainExtension.csproj
index 1b125cd50746..936d144a538f 100644
--- a/src/modules/cmdpal/Exts/SSHKeychainExtension/SSHKeychainExtension.csproj
+++ b/src/modules/cmdpal/Exts/SSHKeychainExtension/SSHKeychainExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/SampleExtension.sln b/src/modules/cmdpal/Exts/SampleExtension.sln
deleted file mode 100644
index 1b13ed55601b..000000000000
--- a/src/modules/cmdpal/Exts/SampleExtension.sln
+++ /dev/null
@@ -1,179 +0,0 @@
-
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.3.32901.215
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{5934D46A-E416-4600-B711-99A7CAAE8F1B}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Run.SDK", "Run.SDK", "{FAA24D36-5515-467C-91E7-101A189AAF48}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.CmdPal.Extensions", "..\extensionsdk\Microsoft.CmdPal.Extensions\Microsoft.CmdPal.Extensions.vcxproj", "{305DD37E-C85D-4B08-AAFE-7381FA890463}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Extensions.Helpers", "..\extensionsdk\Microsoft.CmdPal.Extensions.Helpers\Microsoft.CmdPal.Extensions.Helpers.csproj", "{79060D06-7174-4D66-8D0B-4FF021154049}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HackerNewsExtension", "HackerNewsExtension\HackerNewsExtension.csproj", "{D343B8C6-4F11-483F-B070-AB6D357534CE}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AzureResourcesExtension", "AzureResourcesExtension\AzureResourcesExtension.csproj", "{95963263-7457-43F3-BC2E-261AA2F97167}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GitHubExtension", "GitHubExtension\GitHubExtension.csproj", "{23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpongebotExtension", "SpongebotExtension\SpongebotExtension.csproj", "{D33107A4-B0E9-4691-85C9-B4B6F381ABAB}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MediaControlsExtension", "MediaControlsExtension\MediaControlsExtension.csproj", "{F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessMonitorExtension", "ProcessMonitorExtension\ProcessMonitorExtension.csproj", "{8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|arm64 = Debug|arm64
- Debug|x64 = Debug|x64
- Debug|x86 = Debug|x86
- Release|arm64 = Release|arm64
- Release|x64 = Release|x64
- Release|x86 = Release|x86
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|arm64.ActiveCfg = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|arm64.Build.0 = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.ActiveCfg = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.Build.0 = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x86.ActiveCfg = Debug|Win32
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x86.Build.0 = Debug|Win32
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|arm64.ActiveCfg = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|arm64.Build.0 = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.ActiveCfg = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.Build.0 = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x86.ActiveCfg = Release|Win32
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x86.Build.0 = Release|Win32
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|arm64.ActiveCfg = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|arm64.Build.0 = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.ActiveCfg = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.Build.0 = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x86.ActiveCfg = Debug|x86
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x86.Build.0 = Debug|x86
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|arm64.ActiveCfg = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|arm64.Build.0 = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.ActiveCfg = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.Build.0 = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x86.ActiveCfg = Release|x86
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x86.Build.0 = Release|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|arm64.ActiveCfg = Debug|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|arm64.Build.0 = Debug|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|arm64.Deploy.0 = Debug|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x64.ActiveCfg = Debug|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x64.Build.0 = Debug|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x64.Deploy.0 = Debug|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x86.ActiveCfg = Debug|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x86.Build.0 = Debug|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Debug|x86.Deploy.0 = Debug|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|arm64.ActiveCfg = Release|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|arm64.Build.0 = Release|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|arm64.Deploy.0 = Release|ARM64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x64.ActiveCfg = Release|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x64.Build.0 = Release|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x64.Deploy.0 = Release|x64
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x86.ActiveCfg = Release|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x86.Build.0 = Release|x86
- {D343B8C6-4F11-483F-B070-AB6D357534CE}.Release|x86.Deploy.0 = Release|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|arm64.ActiveCfg = Debug|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|arm64.Build.0 = Debug|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|arm64.Deploy.0 = Debug|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x64.ActiveCfg = Debug|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x64.Build.0 = Debug|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x64.Deploy.0 = Debug|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x86.ActiveCfg = Debug|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x86.Build.0 = Debug|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Debug|x86.Deploy.0 = Debug|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|arm64.ActiveCfg = Release|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|arm64.Build.0 = Release|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|arm64.Deploy.0 = Release|ARM64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x64.ActiveCfg = Release|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x64.Build.0 = Release|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x64.Deploy.0 = Release|x64
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x86.ActiveCfg = Release|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x86.Build.0 = Release|x86
- {95963263-7457-43F3-BC2E-261AA2F97167}.Release|x86.Deploy.0 = Release|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|arm64.ActiveCfg = Debug|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|arm64.Build.0 = Debug|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|arm64.Deploy.0 = Debug|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x64.ActiveCfg = Debug|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x64.Build.0 = Debug|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x64.Deploy.0 = Debug|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x86.ActiveCfg = Debug|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x86.Build.0 = Debug|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Debug|x86.Deploy.0 = Debug|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|arm64.ActiveCfg = Release|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|arm64.Build.0 = Release|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|arm64.Deploy.0 = Release|ARM64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x64.ActiveCfg = Release|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x64.Build.0 = Release|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x64.Deploy.0 = Release|x64
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x86.ActiveCfg = Release|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x86.Build.0 = Release|x86
- {23BCC6EF-D94C-4198-834E-FBB9CADFFEE9}.Release|x86.Deploy.0 = Release|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|arm64.ActiveCfg = Debug|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|arm64.Build.0 = Debug|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|arm64.Deploy.0 = Debug|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x64.ActiveCfg = Debug|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x64.Build.0 = Debug|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x64.Deploy.0 = Debug|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x86.ActiveCfg = Debug|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x86.Build.0 = Debug|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Debug|x86.Deploy.0 = Debug|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|arm64.ActiveCfg = Release|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|arm64.Build.0 = Release|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|arm64.Deploy.0 = Release|ARM64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x64.ActiveCfg = Release|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x64.Build.0 = Release|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x64.Deploy.0 = Release|x64
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x86.ActiveCfg = Release|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x86.Build.0 = Release|x86
- {D33107A4-B0E9-4691-85C9-B4B6F381ABAB}.Release|x86.Deploy.0 = Release|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|arm64.ActiveCfg = Debug|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|arm64.Build.0 = Debug|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|arm64.Deploy.0 = Debug|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x64.ActiveCfg = Debug|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x64.Build.0 = Debug|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x64.Deploy.0 = Debug|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x86.ActiveCfg = Debug|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x86.Build.0 = Debug|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Debug|x86.Deploy.0 = Debug|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|arm64.ActiveCfg = Release|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|arm64.Build.0 = Release|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|arm64.Deploy.0 = Release|ARM64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x64.ActiveCfg = Release|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x64.Build.0 = Release|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x64.Deploy.0 = Release|x64
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x86.ActiveCfg = Release|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x86.Build.0 = Release|x86
- {F5F2CFAF-99B7-423B-BC61-BB03FF34DAC8}.Release|x86.Deploy.0 = Release|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|arm64.ActiveCfg = Debug|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|arm64.Build.0 = Debug|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|arm64.Deploy.0 = Debug|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x64.ActiveCfg = Debug|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x64.Build.0 = Debug|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x64.Deploy.0 = Debug|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x86.ActiveCfg = Debug|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x86.Build.0 = Debug|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Debug|x86.Deploy.0 = Debug|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|arm64.ActiveCfg = Release|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|arm64.Build.0 = Release|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|arm64.Deploy.0 = Release|ARM64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x64.ActiveCfg = Release|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x64.Build.0 = Release|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x64.Deploy.0 = Release|x64
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x86.ActiveCfg = Release|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x86.Build.0 = Release|x86
- {8CBF6DCB-3F37-4D2B-8C53-97D97F36B2DC}.Release|x86.Deploy.0 = Release|x86
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {305DD37E-C85D-4B08-AAFE-7381FA890463} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- {79060D06-7174-4D66-8D0B-4FF021154049} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {030B5641-B206-46BB-BF71-36FF009088FA}
- EndGlobalSection
-EndGlobal
diff --git a/src/modules/cmdpal/Exts/SamplePagesExtension/SamplePagesExtension.csproj b/src/modules/cmdpal/Exts/SamplePagesExtension/SamplePagesExtension.csproj
index 71fb260638e4..0691f4029b0c 100644
--- a/src/modules/cmdpal/Exts/SamplePagesExtension/SamplePagesExtension.csproj
+++ b/src/modules/cmdpal/Exts/SamplePagesExtension/SamplePagesExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/SpongebotExtension/SpongebotExtension.csproj b/src/modules/cmdpal/Exts/SpongebotExtension/SpongebotExtension.csproj
index 311fb931af55..cfe52e7900cc 100644
--- a/src/modules/cmdpal/Exts/SpongebotExtension/SpongebotExtension.csproj
+++ b/src/modules/cmdpal/Exts/SpongebotExtension/SpongebotExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/TemplateExtension/TemplateExtension.csproj b/src/modules/cmdpal/Exts/TemplateExtension/TemplateExtension.csproj
index fd6552d2ff9c..455a7eb8a584 100644
--- a/src/modules/cmdpal/Exts/TemplateExtension/TemplateExtension.csproj
+++ b/src/modules/cmdpal/Exts/TemplateExtension/TemplateExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Exts/YouTubeExtension/YouTubeExtension.csproj b/src/modules/cmdpal/Exts/YouTubeExtension/YouTubeExtension.csproj
index cd8089d21248..7ed8b7157f12 100644
--- a/src/modules/cmdpal/Exts/YouTubeExtension/YouTubeExtension.csproj
+++ b/src/modules/cmdpal/Exts/YouTubeExtension/YouTubeExtension.csproj
@@ -7,6 +7,9 @@
win-$(Platform).pubxml
false
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Microsoft.CmdPal.Common/Microsoft.CmdPal.Common.csproj b/src/modules/cmdpal/Microsoft.CmdPal.Common/Microsoft.CmdPal.Common.csproj
index e86a7ee22218..6b81f29380f9 100644
--- a/src/modules/cmdpal/Microsoft.CmdPal.Common/Microsoft.CmdPal.Common.csproj
+++ b/src/modules/cmdpal/Microsoft.CmdPal.Common/Microsoft.CmdPal.Common.csproj
@@ -4,6 +4,9 @@
Microsoft.CmdPal.Common
enable
true
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Microsoft.CmdPal.UI.ViewModels.csproj b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Microsoft.CmdPal.UI.ViewModels.csproj
index 3561639191c4..7cc7e02618bc 100644
--- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Microsoft.CmdPal.UI.ViewModels.csproj
+++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Microsoft.CmdPal.UI.ViewModels.csproj
@@ -3,6 +3,9 @@
enable
enable
+ false
+ false
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
@@ -10,8 +13,8 @@
-
-
+
+
-
+
diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI/Microsoft.CmdPal.UI.csproj b/src/modules/cmdpal/Microsoft.CmdPal.UI/Microsoft.CmdPal.UI.csproj
index e2d7b3f62ed1..6b0eec53c54d 100644
--- a/src/modules/cmdpal/Microsoft.CmdPal.UI/Microsoft.CmdPal.UI.csproj
+++ b/src/modules/cmdpal/Microsoft.CmdPal.UI/Microsoft.CmdPal.UI.csproj
@@ -9,6 +9,9 @@
true
enable
enable
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/Microsoft.Terminal.UI/Microsoft.Terminal.UI.vcxproj b/src/modules/cmdpal/Microsoft.Terminal.UI/Microsoft.Terminal.UI.vcxproj
index 0b95927336a7..6e45167fac9b 100644
--- a/src/modules/cmdpal/Microsoft.Terminal.UI/Microsoft.Terminal.UI.vcxproj
+++ b/src/modules/cmdpal/Microsoft.Terminal.UI/Microsoft.Terminal.UI.vcxproj
@@ -1,13 +1,11 @@
+
..\..\..\..\
$(PathToRoot)packages\Microsoft.WindowsAppSDK.1.6.240923002
- $(PathToRoot)packages\Microsoft.Windows.CppWinRT.2.0.240111.5
- $(PathToRoot)packages\Microsoft.Web.WebView2.1.0.2739.15
-
true
true
@@ -21,7 +19,7 @@
false
Windows Store
10.0
- 10.0.19041.0
+ 10.0.22621.0
10.0.19041.0
@@ -44,7 +42,7 @@
- bin\$(Platform)\$(Configuration)\
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
obj\$(Platform)\$(Configuration)\
@@ -187,22 +185,25 @@
-
-
+
+
This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.
-
-
-
+
+
+
+
+ {cc6e41ac-8174-4e8a-8d22-85dd7f4851df}
+
\ No newline at end of file
diff --git a/src/modules/cmdpal/Microsoft.Terminal.UI/packages.config b/src/modules/cmdpal/Microsoft.Terminal.UI/packages.config
index dd32fe41886b..8cf86ded5010 100644
--- a/src/modules/cmdpal/Microsoft.Terminal.UI/packages.config
+++ b/src/modules/cmdpal/Microsoft.Terminal.UI/packages.config
@@ -3,5 +3,5 @@
-
+
\ No newline at end of file
diff --git a/src/modules/cmdpal/Microsoft.Terminal.UI/pch.h b/src/modules/cmdpal/Microsoft.Terminal.UI/pch.h
index d3d95fdde9b8..865ccac52e0b 100644
--- a/src/modules/cmdpal/Microsoft.Terminal.UI/pch.h
+++ b/src/modules/cmdpal/Microsoft.Terminal.UI/pch.h
@@ -7,7 +7,6 @@
#pragma once
-#define WIN32_LEAN_AND_MEAN
#define NOMCX
#define NOHELP
#define NOCOMM
diff --git a/src/modules/cmdpal/Microsoft.Terminal.UI/version.rc b/src/modules/cmdpal/Microsoft.Terminal.UI/version.rc
index dfedac2a5a25..e9c12c36f477 100644
--- a/src/modules/cmdpal/Microsoft.Terminal.UI/version.rc
+++ b/src/modules/cmdpal/Microsoft.Terminal.UI/version.rc
@@ -1,5 +1,7 @@
#include "winres.h"
+#include "../../../../common/version/version.h"
+
VS_VERSION_INFO VERSIONINFO
FILEVERSION VERSION_COMMAS
PRODUCTVERSION VERSION_COMMAS
@@ -19,9 +21,9 @@ BEGIN
BEGIN
VALUE "CompanyName", "Microsoft Corporation"
VALUE "FileDescription", "Microsoft.Terminal.UI"
- VALUE "FileVersion", VERSION_NUMBER
+ VALUE "FileVersion", FILE_VERSION_STRING
VALUE "ProductName", "Microsoft.Terminal.UI"
- VALUE "ProductVersion", VERSION_NUMBER
+ VALUE "ProductVersion", PRODUCT_VERSION_STRING
VALUE "LegalCopyright", "Copyright (c) Microsoft Corporation"
END
END
diff --git a/src/modules/cmdpal/ToolingVersions.props b/src/modules/cmdpal/ToolingVersions.props
deleted file mode 100644
index 4b461fae7982..000000000000
--- a/src/modules/cmdpal/ToolingVersions.props
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
- net8.0-windows10.0.20348.0
- 10.0.19041.0
- 10.0.19041.0
- x64;arm64;
- win-x64;win-arm64
-
-
diff --git a/src/modules/cmdpal/WindowsCommandPalette.sln b/src/modules/cmdpal/WindowsCommandPalette.sln
deleted file mode 100644
index 363bd648ffb8..000000000000
--- a/src/modules/cmdpal/WindowsCommandPalette.sln
+++ /dev/null
@@ -1,339 +0,0 @@
-Microsoft Visual Studio Solution File, Format Version 12.00
-# Visual Studio Version 17
-VisualStudioVersion = 17.11.34929.205
-MinimumVisualStudioVersion = 10.0.40219.1
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI.Poc", "WindowsCommandPalette\Microsoft.CmdPal.UI.Poc.csproj", "{F71CF22B-A5C7-4328-A5B3-F4191AE57314}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Sample Extensions", "Sample Extensions", "{B7FF739F-7716-4FC3-B622-705486187B87}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.Terminal.UI", "Microsoft.Terminal.UI\Microsoft.Terminal.UI.vcxproj", "{6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Extension SDK", "Extension SDK", "{FAA24D36-5515-467C-91E7-101A189AAF48}"
-EndProject
-Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.CmdPal.Extensions", "extensionsdk\Microsoft.CmdPal.Extensions\Microsoft.CmdPal.Extensions.vcxproj", "{305DD37E-C85D-4B08-AAFE-7381FA890463}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Extensions.Helpers", "extensionsdk\Microsoft.CmdPal.Extensions.Helpers\Microsoft.CmdPal.Extensions.Helpers.csproj", "{79060D06-7174-4D66-8D0B-4FF021154049}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Common", "Microsoft.CmdPal.Common\Microsoft.CmdPal.Common.csproj", "{05CDE6EE-23AE-42AF-A9F5-E398C382675F}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SpongebotExtension", "Exts\SpongebotExtension\SpongebotExtension.csproj", "{57617906-DEC8-4D62-A270-6EBE3F8E5C0D}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HackerNewsExtension", "Exts\HackerNewsExtension\HackerNewsExtension.csproj", "{1A506BBA-06A9-476E-B5D3-1495F299D53F}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MediaControlsExtension", "Exts\MediaControlsExtension\MediaControlsExtension.csproj", "{D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ProcessMonitorExtension", "Exts\ProcessMonitorExtension\ProcessMonitorExtension.csproj", "{9456257A-3292-4A8D-AF63-9830EABE7ED2}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Prototype", "Prototype", "{B4B13D2C-8C19-43D0-9FD4-3084F42EA4C2}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TemplateExtension", "exts\TemplateExtension\TemplateExtension.csproj", "{EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MastodonExtension", "exts\MastodonExtension\MastodonExtension.csproj", "{65E22130-6A8F-4AB7-80EC-FF75475DE821}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Built-in Extensions", "Built-in Extensions", "{272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Bookmarks", "Exts\Microsoft.CmdPal.Ext.Bookmark\Microsoft.CmdPal.Ext.Bookmarks.csproj", "{C5BADA22-70FF-41D1-9529-28F4891316A8}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Calc", "Exts\Microsoft.CmdPal.Ext.Calc\Microsoft.CmdPal.Ext.Calc.csproj", "{42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Settings", "Exts\Microsoft.CmdPal.Ext.CmdPalSettings\Microsoft.CmdPal.Ext.Settings.csproj", "{7F6796A4-4233-4CEC-914F-95EC7A5283A0}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SSHKeychainExtension", "exts\SSHKeychainExtension\SSHKeychainExtension.csproj", "{77D99BE0-F69C-4F27-8153-951CEC5110FE}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SamplePagesExtension", "exts\SamplePagesExtension\SamplePagesExtension.csproj", "{399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EverythingExtension", "Exts\EverythingExtension\EverythingExtension.csproj", "{A9DB52EF-F69A-4254-9766-63DCC5BD5B67}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "YouTubeExtension", "Exts\YouTubeExtension\YouTubeExtension.csproj", "{276243F6-4B25-411C-B110-1E7DB575F13D}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI", "Microsoft.CmdPal.UI\Microsoft.CmdPal.UI.csproj", "{1DF70F56-ABB2-4798-BBA5-0B9568715BA1}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.UI.ViewModels", "Microsoft.CmdPal.UI.ViewModels\Microsoft.CmdPal.UI.ViewModels.csproj", "{D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}"
-EndProject
-Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "UI", "UI", "{865E9369-C53A-40B8-829C-F7843F66D3A1}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Apps", "Exts\Microsoft.CmdPal.Ext.Apps\Microsoft.CmdPal.Ext.Apps.csproj", "{2012F5FE-BF53-4E51-868D-0E5A74C11878}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsTerminal", "Exts\Microsoft.CmdPal.Ext.WindowsTerminal\Microsoft.CmdPal.Ext.WindowsTerminal.csproj", "{2A14C3D5-4680-4A9D-A860-B0BBAF28275D}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsServices", "Exts\Microsoft.CmdPal.Ext.WindowsServices\Microsoft.CmdPal.Ext.WindowsServices.csproj", "{97E5A897-056A-4227-8BC4-81A0CA0D1AD5}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.Registry", "Exts\Microsoft.CmdPal.Ext.Registry\Microsoft.CmdPal.Ext.Registry.csproj", "{D2C9B954-DCB8-42A1-957C-57436FEE7930}"
-EndProject
-Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Microsoft.CmdPal.Ext.WindowsSettings", "Exts\Microsoft.CmdPal.Ext.WindowsSettings\Microsoft.CmdPal.Ext.WindowsSettings.csproj", "{296A0765-757B-410B-8E68-86993AF4EC98}"
-EndProject
-Global
- GlobalSection(SolutionConfigurationPlatforms) = preSolution
- Debug|ARM64 = Debug|ARM64
- Debug|x64 = Debug|x64
- Release|ARM64 = Release|ARM64
- Release|x64 = Release|x64
- EndGlobalSection
- GlobalSection(ProjectConfigurationPlatforms) = postSolution
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.Build.0 = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.ActiveCfg = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.Build.0 = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Debug|x64.Deploy.0 = Debug|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.ActiveCfg = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.Build.0 = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|ARM64.Deploy.0 = Release|ARM64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.ActiveCfg = Release|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.Build.0 = Release|x64
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314}.Release|x64.Deploy.0 = Release|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|ARM64.Build.0 = Debug|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.ActiveCfg = Debug|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Debug|x64.Build.0 = Debug|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.ActiveCfg = Release|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|ARM64.Build.0 = Release|ARM64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.ActiveCfg = Release|x64
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F}.Release|x64.Build.0 = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|ARM64.Build.0 = Debug|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.ActiveCfg = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Debug|x64.Build.0 = Debug|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.ActiveCfg = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|ARM64.Build.0 = Release|ARM64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.ActiveCfg = Release|x64
- {305DD37E-C85D-4B08-AAFE-7381FA890463}.Release|x64.Build.0 = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|ARM64.ActiveCfg = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|ARM64.Build.0 = Debug|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.ActiveCfg = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Debug|x64.Build.0 = Debug|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|ARM64.ActiveCfg = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|ARM64.Build.0 = Release|arm64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.ActiveCfg = Release|x64
- {79060D06-7174-4D66-8D0B-4FF021154049}.Release|x64.Build.0 = Release|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|ARM64.ActiveCfg = Debug|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|ARM64.Build.0 = Debug|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|x64.ActiveCfg = Debug|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Debug|x64.Build.0 = Debug|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|ARM64.ActiveCfg = Release|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|ARM64.Build.0 = Release|arm64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|x64.ActiveCfg = Release|x64
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F}.Release|x64.Build.0 = Release|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|ARM64.Build.0 = Debug|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|x64.ActiveCfg = Debug|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|x64.Build.0 = Debug|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Debug|x64.Deploy.0 = Debug|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|ARM64.ActiveCfg = Release|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|ARM64.Build.0 = Release|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|ARM64.Deploy.0 = Release|ARM64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|x64.ActiveCfg = Release|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|x64.Build.0 = Release|x64
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D}.Release|x64.Deploy.0 = Release|x64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Debug|ARM64.Build.0 = Debug|ARM64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Debug|x64.ActiveCfg = Debug|x64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Debug|x64.Build.0 = Debug|x64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Release|ARM64.ActiveCfg = Release|ARM64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Release|ARM64.Build.0 = Release|ARM64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Release|x64.ActiveCfg = Release|x64
- {1A506BBA-06A9-476E-B5D3-1495F299D53F}.Release|x64.Build.0 = Release|x64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Debug|ARM64.Build.0 = Debug|ARM64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Debug|x64.ActiveCfg = Debug|x64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Debug|x64.Build.0 = Debug|x64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Release|ARM64.ActiveCfg = Release|ARM64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Release|ARM64.Build.0 = Release|ARM64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Release|x64.ActiveCfg = Release|x64
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA}.Release|x64.Build.0 = Release|x64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Debug|ARM64.Build.0 = Debug|ARM64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Debug|x64.ActiveCfg = Debug|x64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Debug|x64.Build.0 = Debug|x64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Release|ARM64.ActiveCfg = Release|ARM64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Release|ARM64.Build.0 = Release|ARM64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Release|x64.ActiveCfg = Release|x64
- {9456257A-3292-4A8D-AF63-9830EABE7ED2}.Release|x64.Build.0 = Release|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|ARM64.Build.0 = Debug|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|x64.ActiveCfg = Debug|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|x64.Build.0 = Debug|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Debug|x64.Deploy.0 = Debug|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|ARM64.ActiveCfg = Release|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|ARM64.Build.0 = Release|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|ARM64.Deploy.0 = Release|ARM64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|x64.ActiveCfg = Release|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|x64.Build.0 = Release|x64
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB}.Release|x64.Deploy.0 = Release|x64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Debug|ARM64.Build.0 = Debug|ARM64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Debug|x64.ActiveCfg = Debug|x64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Debug|x64.Build.0 = Debug|x64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Release|ARM64.ActiveCfg = Release|ARM64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Release|ARM64.Build.0 = Release|ARM64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Release|x64.ActiveCfg = Release|x64
- {65E22130-6A8F-4AB7-80EC-FF75475DE821}.Release|x64.Build.0 = Release|x64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Debug|ARM64.Build.0 = Debug|ARM64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Debug|x64.ActiveCfg = Debug|x64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Debug|x64.Build.0 = Debug|x64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Release|ARM64.ActiveCfg = Release|ARM64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Release|ARM64.Build.0 = Release|ARM64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Release|x64.ActiveCfg = Release|x64
- {C5BADA22-70FF-41D1-9529-28F4891316A8}.Release|x64.Build.0 = Release|x64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Debug|ARM64.Build.0 = Debug|ARM64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Debug|x64.ActiveCfg = Debug|x64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Debug|x64.Build.0 = Debug|x64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Release|ARM64.ActiveCfg = Release|ARM64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Release|ARM64.Build.0 = Release|ARM64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Release|x64.ActiveCfg = Release|x64
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4}.Release|x64.Build.0 = Release|x64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Debug|ARM64.Build.0 = Debug|ARM64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Debug|x64.ActiveCfg = Debug|x64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Debug|x64.Build.0 = Debug|x64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Release|ARM64.ActiveCfg = Release|ARM64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Release|ARM64.Build.0 = Release|ARM64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Release|x64.ActiveCfg = Release|x64
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0}.Release|x64.Build.0 = Release|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|ARM64.Build.0 = Debug|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|x64.ActiveCfg = Debug|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|x64.Build.0 = Debug|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Debug|x64.Deploy.0 = Debug|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|ARM64.ActiveCfg = Release|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|ARM64.Build.0 = Release|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|ARM64.Deploy.0 = Release|ARM64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|x64.ActiveCfg = Release|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|x64.Build.0 = Release|x64
- {77D99BE0-F69C-4F27-8153-951CEC5110FE}.Release|x64.Deploy.0 = Release|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|ARM64.Build.0 = Debug|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|x64.ActiveCfg = Debug|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|x64.Build.0 = Debug|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Debug|x64.Deploy.0 = Debug|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|ARM64.ActiveCfg = Release|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|ARM64.Build.0 = Release|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|ARM64.Deploy.0 = Release|ARM64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|x64.ActiveCfg = Release|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|x64.Build.0 = Release|x64
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1}.Release|x64.Deploy.0 = Release|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|ARM64.Build.0 = Debug|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|x64.ActiveCfg = Debug|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|x64.Build.0 = Debug|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Debug|x64.Deploy.0 = Debug|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|ARM64.ActiveCfg = Release|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|ARM64.Build.0 = Release|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|ARM64.Deploy.0 = Release|ARM64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|x64.ActiveCfg = Release|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|x64.Build.0 = Release|x64
- {276243F6-4B25-411C-B110-1E7DB575F13D}.Release|x64.Deploy.0 = Release|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|ARM64.Build.0 = Debug|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|x64.ActiveCfg = Debug|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|x64.Build.0 = Debug|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Debug|x64.Deploy.0 = Debug|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|ARM64.ActiveCfg = Release|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|ARM64.Build.0 = Release|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|ARM64.Deploy.0 = Release|ARM64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|x64.ActiveCfg = Release|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|x64.Build.0 = Release|x64
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1}.Release|x64.Deploy.0 = Release|x64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Debug|ARM64.Build.0 = Debug|ARM64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Debug|x64.ActiveCfg = Debug|x64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Debug|x64.Build.0 = Debug|x64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Release|ARM64.ActiveCfg = Release|ARM64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Release|ARM64.Build.0 = Release|ARM64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Release|x64.ActiveCfg = Release|x64
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE}.Release|x64.Build.0 = Release|x64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Debug|ARM64.Build.0 = Debug|ARM64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Debug|x64.ActiveCfg = Debug|x64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Debug|x64.Build.0 = Debug|x64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Release|ARM64.ActiveCfg = Release|ARM64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Release|ARM64.Build.0 = Release|ARM64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Release|x64.ActiveCfg = Release|x64
- {2012F5FE-BF53-4E51-868D-0E5A74C11878}.Release|x64.Build.0 = Release|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|ARM64.Build.0 = Debug|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|ARM64.Deploy.0 = Debug|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|x64.ActiveCfg = Debug|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|x64.Build.0 = Debug|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Debug|x64.Deploy.0 = Debug|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|ARM64.ActiveCfg = Release|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|ARM64.Build.0 = Release|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|ARM64.Deploy.0 = Release|ARM64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|x64.ActiveCfg = Release|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|x64.Build.0 = Release|x64
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67}.Release|x64.Deploy.0 = Release|x64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Debug|ARM64.Build.0 = Debug|ARM64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Debug|x64.ActiveCfg = Debug|x64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Debug|x64.Build.0 = Debug|x64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Release|ARM64.ActiveCfg = Release|ARM64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Release|ARM64.Build.0 = Release|ARM64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Release|x64.ActiveCfg = Release|x64
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D}.Release|x64.Build.0 = Release|x64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Debug|ARM64.Build.0 = Debug|ARM64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Debug|x64.ActiveCfg = Debug|x64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Debug|x64.Build.0 = Debug|x64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Release|ARM64.ActiveCfg = Release|ARM64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Release|ARM64.Build.0 = Release|ARM64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Release|x64.ActiveCfg = Release|x64
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5}.Release|x64.Build.0 = Release|x64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Debug|ARM64.Build.0 = Debug|ARM64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Debug|x64.ActiveCfg = Debug|x64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Debug|x64.Build.0 = Debug|x64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Release|ARM64.ActiveCfg = Release|ARM64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Release|ARM64.Build.0 = Release|ARM64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Release|x64.ActiveCfg = Release|x64
- {D2C9B954-DCB8-42A1-957C-57436FEE7930}.Release|x64.Build.0 = Release|x64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Debug|ARM64.ActiveCfg = Debug|ARM64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Debug|ARM64.Build.0 = Debug|ARM64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Debug|x64.ActiveCfg = Debug|x64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Debug|x64.Build.0 = Debug|x64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Release|ARM64.ActiveCfg = Release|ARM64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Release|ARM64.Build.0 = Release|ARM64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Release|x64.ActiveCfg = Release|x64
- {296A0765-757B-410B-8E68-86993AF4EC98}.Release|x64.Build.0 = Release|x64
- EndGlobalSection
- GlobalSection(SolutionProperties) = preSolution
- HideSolutionNode = FALSE
- EndGlobalSection
- GlobalSection(NestedProjects) = preSolution
- {F71CF22B-A5C7-4328-A5B3-F4191AE57314} = {B4B13D2C-8C19-43D0-9FD4-3084F42EA4C2}
- {6515F03F-E56D-4DB4-B23D-AC4FB80DB36F} = {B4B13D2C-8C19-43D0-9FD4-3084F42EA4C2}
- {305DD37E-C85D-4B08-AAFE-7381FA890463} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- {79060D06-7174-4D66-8D0B-4FF021154049} = {FAA24D36-5515-467C-91E7-101A189AAF48}
- {05CDE6EE-23AE-42AF-A9F5-E398C382675F} = {B4B13D2C-8C19-43D0-9FD4-3084F42EA4C2}
- {57617906-DEC8-4D62-A270-6EBE3F8E5C0D} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {1A506BBA-06A9-476E-B5D3-1495F299D53F} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {D08AE85F-B6FE-4E1C-8402-DB396B70D6DA} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {9456257A-3292-4A8D-AF63-9830EABE7ED2} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {EB13FDBD-7DD5-4E7E-8BEB-727B3C9331CB} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {65E22130-6A8F-4AB7-80EC-FF75475DE821} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {C5BADA22-70FF-41D1-9529-28F4891316A8} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {42DB35EE-1EDB-41E4-9C9F-A3520EBC5CC4} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {7F6796A4-4233-4CEC-914F-95EC7A5283A0} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {77D99BE0-F69C-4F27-8153-951CEC5110FE} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {399B53F1-5AA6-4FE0-8C3C-66E07B84E6F1} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {276243F6-4B25-411C-B110-1E7DB575F13D} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {1DF70F56-ABB2-4798-BBA5-0B9568715BA1} = {865E9369-C53A-40B8-829C-F7843F66D3A1}
- {D2FC419D-0ABC-425F-9D43-A7782AC4A0AE} = {865E9369-C53A-40B8-829C-F7843F66D3A1}
- {2012F5FE-BF53-4E51-868D-0E5A74C11878} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {A9DB52EF-F69A-4254-9766-63DCC5BD5B67} = {B7FF739F-7716-4FC3-B622-705486187B87}
- {2A14C3D5-4680-4A9D-A860-B0BBAF28275D} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {97E5A897-056A-4227-8BC4-81A0CA0D1AD5} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {D2C9B954-DCB8-42A1-957C-57436FEE7930} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- {296A0765-757B-410B-8E68-86993AF4EC98} = {272D0E9A-8FC3-49F5-8FAD-79ABAE8AB1E4}
- EndGlobalSection
- GlobalSection(ExtensibilityGlobals) = postSolution
- SolutionGuid = {BC94BFC2-A741-4978-B6A4-9E01B7660E6B}
- EndGlobalSection
-EndGlobal
diff --git a/src/modules/cmdpal/WindowsCommandPalette/Microsoft.CmdPal.UI.Poc.csproj b/src/modules/cmdpal/WindowsCommandPalette/Microsoft.CmdPal.UI.Poc.csproj
index ca0c5cd9b62b..bc6631f8d4e4 100644
--- a/src/modules/cmdpal/WindowsCommandPalette/Microsoft.CmdPal.UI.Poc.csproj
+++ b/src/modules/cmdpal/WindowsCommandPalette/Microsoft.CmdPal.UI.Poc.csproj
@@ -9,6 +9,9 @@
true
enable
enable
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
+ false
+ false
diff --git a/src/modules/cmdpal/codeAnalysis/GlobalSuppressions.cs b/src/modules/cmdpal/codeAnalysis/GlobalSuppressions.cs
deleted file mode 100644
index b9d2471ea9e8..000000000000
--- a/src/modules/cmdpal/codeAnalysis/GlobalSuppressions.cs
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright (c) Microsoft Corporation.
-// Licensed under the MIT License.
-
-// This file is used by Code Analysis to maintain SuppressMessage
-// attributes that are applied to this project.
-// Project-level suppressions either have no target or are given
-// a specific target and scoped to a namespace, type, member, etc.
-using System.Diagnostics.CodeAnalysis;
-
-[assembly: SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1101:PrefixLocalCallsWithThis", Justification = "We follow the C# Core Coding Style which avoids using `this` unless absolutely necessary.")]
-[assembly: SuppressMessage("StyleCop.CSharp.ReadabilityRules", "SA1414:Tuple types in signatures should have element names", Justification = "It is not a priority and have hight impact in code changes.")]
-
-[assembly: SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1200:UsingDirectivesMustBePlacedWithinNamespace", Justification = "We follow the C# Core Coding Style which puts using statements outside the namespace.")]
-[assembly: SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1201:ElementsMustAppearInTheCorrectOrder", Justification = "It is not a priority and have hight impact in code changes.")]
-[assembly: SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1202:ElementsMustBeOrderedByAccess", Justification = "It is not a priority and have hight impact in code changes.")]
-[assembly: SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1203:ConstantsMustAppearBeforeFields", Justification = "It is not a priority and have hight impact in code changes.")]
-[assembly: SuppressMessage("StyleCop.CSharp.OrderingRules", "SA1204:StaticElementsMustAppearBeforeInstanceElements", Justification = "It is not a priority and have hight impact in code changes.")]
-
-[assembly: SuppressMessage("StyleCop.CSharp.NamingRules", "SA1309:FieldNamesMustNotBeginWithUnderscore", Justification = "We follow the C# Core Coding Style which uses underscores as prefixes rather than using `this.`.")]
-[assembly: SuppressMessage("StyleCop.CSharp.NamingRules", "SA1316:Tuple element names should use correct casing", Justification = "It is not a priority and have hight impact in code changes.")]
-
-[assembly: SuppressMessage("StyleCop.CSharp.SpecialRules", "SA0001:XmlCommentAnalysisDisabled", Justification = "Not enabled as we don't want or need XML documentation.")]
-[assembly: SuppressMessage("StyleCop.CSharp.MaintainabilityRules", "SA1402:File may only contain a single type", Justification = "It is not a priority and have hight impact in code changes.")]
-[assembly: SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1629:DocumentationTextMustEndWithAPeriod", Justification = "Not enabled as we don't want or need XML documentation.")]
-
-[assembly: SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly", Scope = "member", Target = "Microsoft.Templates.Core.Locations.TemplatesSynchronization.#SyncStatusChanged", Justification = "Using an Action
- bin\$(Platform)\$(Configuration)\
+ $(SolutionDir)$(Platform)\$(Configuration)\WinUI3Apps\CmdPal
obj\$(Platform)\$(Configuration)\
diff --git a/src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions/version.rc b/src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions/version.rc
index db82ca9415e3..2886a3d574c5 100644
--- a/src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions/version.rc
+++ b/src/modules/cmdpal/extensionsdk/Microsoft.CmdPal.Extensions/version.rc
@@ -1,8 +1,10 @@
#include "winres.h"
+#include "../../../../common/version/version.h"
+
VS_VERSION_INFO VERSIONINFO
- FILEVERSION VERSION_COMMAS
- PRODUCTVERSION VERSION_COMMAS
+ FILEVERSION FILE_VERSION
+ PRODUCTVERSION PRODUCT_VERSION
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -19,9 +21,9 @@ BEGIN
BEGIN
VALUE "CompanyName", "Microsoft Corporation"
VALUE "FileDescription", "Microsoft.CmdPal.Extensions.Helpers"
- VALUE "FileVersion", VERSION_NUMBER
+ VALUE "FileVersion", FILE_VERSION_STRING
VALUE "ProductName", "Microsoft.CmdPal.Extensions.Helpers"
- VALUE "ProductVersion", VERSION_NUMBER
+ VALUE "ProductVersion", PRODUCT_VERSION_STRING
VALUE "LegalCopyright", "Copyright (c) Microsoft Corporation"
END
END
diff --git a/src/modules/cmdpal/extensionsdk/_build/.gitkeep b/src/modules/cmdpal/extensionsdk/_build/.gitkeep
deleted file mode 100644
index 9514cec20867..000000000000
--- a/src/modules/cmdpal/extensionsdk/_build/.gitkeep
+++ /dev/null
@@ -1,3 +0,0 @@
-Do not delete this folder.
-This folder is where the locally built SDK Nuget packages end up to get ingested into Dev Home.
-The build system is always expecting it.
diff --git a/src/modules/cmdpal/extensionsdk/azure-pipelines.yml b/src/modules/cmdpal/extensionsdk/azure-pipelines.yml
deleted file mode 100644
index a36a582130f7..000000000000
--- a/src/modules/cmdpal/extensionsdk/azure-pipelines.yml
+++ /dev/null
@@ -1,4 +0,0 @@
-pool:
- vmImage: 'windows-latest'
-
-
\ No newline at end of file
diff --git a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.nuspec b/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.nuspec
deleted file mode 100644
index 29735125e304..000000000000
--- a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.nuspec
+++ /dev/null
@@ -1,36 +0,0 @@
-
-
-
- Microsoft.CmdPal.Extensions
- 1.0.0
- Command Palette SDK
- Microsoft
- Microsoft
- false
- Command Palette SDK provides support for creating Command Palette extensions on Windows.
- Release notes are available on the Dev Home repository.
- Command Palette Windows Extension
- © Microsoft Corporation. All rights reserved.
-
- https://github.com/microsoft/powertoys
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.props b/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.props
deleted file mode 100644
index c429d530e577..000000000000
--- a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.props
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- $([MSBuild]::NormalizeDirectory('$(MSBuildThisFileDirectory)', '..'))
-
-
diff --git a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.targets b/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.targets
deleted file mode 100644
index ddc629472487..000000000000
--- a/src/modules/cmdpal/extensionsdk/nuget/Microsoft.Windows.CommandPalette.Extensions.targets
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
-
- Always
-
-
-
diff --git a/src/modules/cmdpal/codeAnalysis/format_sources.ps1 b/src/modules/cmdpal/format_sources.ps1
similarity index 100%
rename from src/modules/cmdpal/codeAnalysis/format_sources.ps1
rename to src/modules/cmdpal/format_sources.ps1
diff --git a/src/modules/cmdpal/owners.txt b/src/modules/cmdpal/owners.txt
deleted file mode 100644
index f0b984e88aba..000000000000
--- a/src/modules/cmdpal/owners.txt
+++ /dev/null
@@ -1,11 +0,0 @@
-; This owners.txt file was initially populated by StartRight. Every code
-; change inside of an Ownership Enforcer enabled branch (such as master) must be
-; approved by at least one expert listed in an applicable owners.txt file. This
-; root owners.txt file is applicable to every change. Targeted experts can be
-; defined by placing an owners.txt file inside any subdirectory. More information
-; about Ownership Enforcer can be found at https://aka.ms/ownershipenforcer.
-duhowett
-cazamor
-adityar
-chrnguyen
-migrie
\ No newline at end of file