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-12-01 22:40:41 +08: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 20:37:23 +08: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 22:40:41 +08:00
|
|
|
|
</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-12-01 22:40:41 +08:00
|
|
|
|
<ItemGroup>
|
2022-10-13 15:41:21 +08:00
|
|
|
|
<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>
|
2023-02-14 01:10:33 +08:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" />
|
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
|
|
|
|
|
2022-12-20 23:03:25 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Update="Resources\Resources.Designer.cs">
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
</Compile>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Update="Resources\Resources.resx">
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-03-25 10:55:02 +08:00
|
|
|
|
</Project>
|