2020-04-08 13:53:09 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-05 14:29:11 -07:00
|
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
|
<Import
|
|
|
|
|
|
Condition="exists('$(SolutionDir)src\Common.SelfContained.props')"
|
|
|
|
|
|
Project="$(SolutionDir)src\Common.SelfContained.props" />
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<PropertyGroup>
|
2024-04-02 01:09:47 +02:00
|
|
|
|
<TargetFrameworks>net8.0-windows</TargetFrameworks>
|
|
|
|
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
2023-11-22 12:46:59 -05:00
|
|
|
|
<TargetFramework>net8.0-windows</TargetFramework>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<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
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<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>
|