mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-23 19:49:43 +01:00
This bumps the CmdPal version to 0.6. It also moves the template project to consume the 0.5 SDK. It also removes the WASDK dependency, because we only need the MSIX tooling.
15 lines
615 B
XML
15 lines
615 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<CmdPalVersion Condition="'$(CmdPalVersion)'=='' and '$(XES_APPXMANIFESTVERSION)'!=''">$(XES_APPXMANIFESTVERSION)</CmdPalVersion>
|
|
|
|
<!-- MIKE: The file you're looking for is src/modules/cmdpal/custom.props -->
|
|
<CmdPalVersion Condition="'$(CmdPalVersion)'==''">0.0.1.0</CmdPalVersion>
|
|
|
|
<DevEnvironment>Local</DevEnvironment>
|
|
|
|
<!-- Forcing for every DLL on by default -->
|
|
<ChecksumAlgorithm>SHA256</ChecksumAlgorithm>
|
|
</PropertyGroup>
|
|
</Project>
|