2020-04-08 13:53:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-03-24 19:55:02 -07:00
|
|
|
|
|
2022-10-13 03:41:21 -04:00
|
|
|
|
<Import Project="..\..\Version.props" />
|
2020-06-22 12:14:00 +03:00
|
|
|
|
|
2022-10-13 03:41:21 -04: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-08 13:53:09 -07:00
|
|
|
|
|
2022-10-13 03:41:21 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
</PropertyGroup>
|
2020-04-08 13:53:09 -07:00
|
|
|
|
|
2022-10-13 03:41:21 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="backup_restore_settings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2020-03-24 19:55:02 -07:00
|
|
|
|
|
2022-10-13 03:41:21 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="12.2.5" />
|
|
|
|
|
|
<PackageReference Include="System.Text.Json" Version="6.0.2" />
|
|
|
|
|
|
</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 13:06:12 +03:00
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</Project>
|