Common.ExtDependencies.props
1 <?xml version="1.0" encoding="utf-8"?> 2 <Project> 3 4 <!-- 5 Common external dependencies for all CmdPal extensions: 6 - Microsoft.WindowsAppSDK 7 - Microsoft.Web.WebView2 8 - Microsoft.CommandPalette.Extensions.Toolkit (via project reference) 9 10 We need the WASDK reference because without it, our image assets won't get 11 placed into our final package correctly. 12 13 --> 14 15 <ItemGroup> 16 <PackageReference Include="Microsoft.WindowsAppSDK" /> 17 <PackageReference Include="Microsoft.Web.WebView2" /> 18 </ItemGroup> 19 <ItemGroup> 20 <ProjectReference Include="..\..\extensionsdk\Microsoft.CommandPalette.Extensions.Toolkit\Microsoft.CommandPalette.Extensions.Toolkit.csproj" /> 21 </ItemGroup> 22 </Project>