2020-03-07 09:46:51 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
2020-03-10 14:55:08 +08:00
|
|
|
|
<StartupObject>SettingsRunner.Program</StartupObject>
|
2020-03-07 09:46:51 +08:00
|
|
|
|
<Authors>Microsoft Corporation</Authors>
|
|
|
|
|
<Product>PowerToys</Product>
|
|
|
|
|
<Description>Windows system utilities to maximize productivity</Description>
|
|
|
|
|
<Company>Microsoft Corporation</Company>
|
|
|
|
|
<PackageIcon>logo.png</PackageIcon>
|
|
|
|
|
<PackageIconUrl />
|
|
|
|
|
<RepositoryUrl>https://github.com/microsoft/PowerToys</RepositoryUrl>
|
|
|
|
|
<RepositoryType>Github</RepositoryType>
|
|
|
|
|
<PackageTags>PowerToys</PackageTags>
|
|
|
|
|
<Version>0.15.2.0</Version>
|
2020-03-10 13:06:05 +08:00
|
|
|
|
<Platforms>x64</Platforms>
|
2020-03-07 09:46:51 +08:00
|
|
|
|
<ApplicationIcon>icon.ico</ApplicationIcon>
|
|
|
|
|
<Win32Resource />
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="..\settingsui\Assets\logo.png">
|
|
|
|
|
<Pack>True</Pack>
|
|
|
|
|
<PackagePath></PackagePath>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-10 15:45:06 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Toolkit.Wpf.UI.Controls" Version="6.0.0" />
|
2020-03-12 01:24:57 +08:00
|
|
|
|
<PackageReference Include="Microsoft.Toolkit.Wpf.UI.XamlHost" Version="6.0.0" />
|
2020-03-10 15:45:06 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-10 13:06:05 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Microsoft.PowerToys.Settings.UI\Microsoft.PowerToys.Settings.UI.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-07 09:46:51 +08:00
|
|
|
|
</Project>
|