mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-03 09:46:54 +02:00
23 lines
709 B
Plaintext
23 lines
709 B
Plaintext
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<Project>
|
||
|
|
|
||
|
|
<!--
|
||
|
|
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
|
||
|
|
placed into our final package correctly.
|
||
|
|
|
||
|
|
-->
|
||
|
|
|
||
|
|
<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>
|