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-12 01:43:32 +08:00
|
|
|
|
<StartupObject>Microsoft.PowerToys.Settings.UI.Runner.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 />
|
2020-03-12 01:43:32 +08:00
|
|
|
|
|
|
|
|
|
<!-- crutkas TODO: added for fallback, may need to be removed for WinUI3 -->
|
|
|
|
|
<AssetTargetFallback>uap10.0.18362</AssetTargetFallback>
|
2020-03-07 09:46:51 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-04-08 05:19:33 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
|
|
|
|
<OutputPath>..\..\..\$(Platform)\$(Configuration)\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
|
|
|
|
<OutputPath>..\..\..\$(Platform)\$(Configuration)\</OutputPath>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<AdditionalFiles Include="..\..\codeAnalysis\StyleCop.json" Link="StyleCop.json" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<COMReference Include="TwoWayIPCLibLib.dll">
|
|
|
|
|
<Guid>7e00d5a3-11df-45c1-a675-96e408bd5bf5</Guid>
|
|
|
|
|
<VersionMajor>1</VersionMajor>
|
|
|
|
|
<VersionMinor>0</VersionMinor>
|
|
|
|
|
<Lcid>0</Lcid>
|
|
|
|
|
<WrapperTool>tlbimp</WrapperTool>
|
|
|
|
|
<Isolated>false</Isolated>
|
|
|
|
|
</COMReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-07 09:46:51 +08:00
|
|
|
|
<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-04-08 05:19:33 +08:00
|
|
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
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>
|