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-12-01 09:40:41 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<TargetFramework>net7.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>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- SelfContained=true requires RuntimeIdentifier to be set -->
|
|
|
|
|
|
<PropertyGroup Condition="'$(Platform)'=='x64'">
|
|
|
|
|
|
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Platform)'=='ARM64'">
|
|
|
|
|
|
<RuntimeIdentifier>win10-arm64</RuntimeIdentifier>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
</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-12-01 09:40:41 -05:00
|
|
|
|
<ItemGroup>
|
2022-10-13 03:41:21 -04:00
|
|
|
|
<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>
|
2022-10-16 14:23:31 +02:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="17.2.3" />
|
2022-10-13 03:41:21 -04: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 13:06:12 +03:00
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</Project>
|