2020-04-08 13:53:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
|
<Import Project="..\..\Common.Dotnet.CsWinRT.props" />
|
|
|
|
|
|
<Import Project="..\..\Common.SelfContained.props" />
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<Description>PowerToys Settings UI Library</Description>
|
|
|
|
|
|
<AssemblyName>PowerToys.Settings.UI.Lib</AssemblyName>
|
|
|
|
|
|
</PropertyGroup>
|
2020-04-08 13:53:09 -07:00
|
|
|
|
|
2024-04-02 01:09:47 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="backup_restore_settings.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Resources\Resources.Designer.cs">
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
2020-04-08 13:53:09 -07:00
|
|
|
|
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<ItemGroup>
|
2024-04-02 01:09:47 +02:00
|
|
|
|
<EmbeddedResource Update="Resources\Resources.resx">
|
|
|
|
|
|
<SubType>Designer</SubType>
|
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
<Generator>PublicResXFileCodeGenerator</Generator>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
2022-12-20 16:03:25 +01:00
|
|
|
|
|
2020-03-24 19:55:02 -07:00
|
|
|
|
</Project>
|