2020-04-09 04:53:09 +08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<Import Project="..\..\Version.props" />
|
2020-06-22 17:14:00 +08:00
|
|
|
|
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
<Version>$(Version).0</Version>
|
|
|
|
|
<Authors>Microsoft Corporation</Authors>
|
|
|
|
|
<Product>PowerToys</Product>
|
|
|
|
|
<Description>PowerToys Settings UI Library</Description>
|
|
|
|
|
<AssemblyName>PowerToys.Settings.UI.Lib</AssemblyName>
|
|
|
|
|
<UseWindowsForms>false</UseWindowsForms>
|
|
|
|
|
</PropertyGroup>
|
2020-04-09 04:53:09 +08:00
|
|
|
|
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
</PropertyGroup>
|
2020-04-09 04:53:09 +08:00
|
|
|
|
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="backup_restore_settings.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
2020-03-25 10:55:02 +08:00
|
|
|
|
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<ItemGroup>
|
2022-10-16 20:23:31 +08:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="17.2.3" />
|
2022-10-13 15:41:21 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" />
|
|
|
|
|
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|
|
|
|
</ItemGroup>
|
2021-06-29 18:06:12 +08:00
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</Project>
|