2025-08-24 20:50:32 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<Project>
|
|
|
|
|
|
2026-02-24 21:50:17 +01:00
|
|
|
<!--
|
2025-08-24 20:50:32 -05:00
|
|
|
Common external dependencies for all CmdPal extensions:
|
|
|
|
|
- Microsoft.WindowsAppSDK
|
|
|
|
|
- Microsoft.Web.WebView2
|
|
|
|
|
- Microsoft.CommandPalette.Extensions.Toolkit (via project reference)
|
|
|
|
|
|
|
|
|
|
We need the WASDK reference because without it, our image assets won't get
|
2026-02-24 21:50:17 +01:00
|
|
|
placed into our final package correctly.
|
2025-08-24 20:50:32 -05:00
|
|
|
|
|
|
|
|
-->
|
2026-02-24 21:50:17 +01:00
|
|
|
|
2025-08-24 20:50:32 -05:00
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.WindowsAppSDK" />
|
|
|
|
|
<PackageReference Include="Microsoft.Web.WebView2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\extensionsdk\Microsoft.CommandPalette.Extensions.Toolkit\Microsoft.CommandPalette.Extensions.Toolkit.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|