2022-01-18 15:52:22 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<PropertyGroup>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2021-12-10 10:50:46 +01:00
|
|
|
|
<AssemblyTitle>PowerToys.PdfPreviewHandler</AssemblyTitle>
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<AssemblyDescription>PowerToys PdfPreviewHandler</AssemblyDescription>
|
|
|
|
|
|
<Description>PowerToys PdfPreviewHandler</Description>
|
2023-07-20 00:12:46 +01:00
|
|
|
|
<DocumentationFile>..\..\..\..\$(Platform)\$(Configuration)\PdfPreviewPaneDocumentation.xml</DocumentationFile>
|
|
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)</OutputPath>
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2022-05-19 14:02:08 +01:00
|
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<SelfContained>true</SelfContained>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- SelfContained=true requires RuntimeIdentifier to be set -->
|
|
|
|
|
|
<PropertyGroup Condition="'$(Platform)'=='x64'">
|
2023-11-22 12:46:59 -05:00
|
|
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup Condition="'$(Platform)'=='ARM64'">
|
2023-11-22 12:46:59 -05:00
|
|
|
|
<RuntimeIdentifier>win-arm64</RuntimeIdentifier>
|
2021-08-26 23:43:26 +02:00
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<ProjectGuid>{69E1EE8D-143A-4060-9129-4658ACF14AAF}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>Microsoft.PowerToys.PreviewHandler.Pdf</RootNamespace>
|
2023-11-22 12:46:59 -05:00
|
|
|
|
<TargetFramework>net8.0-windows10.0.20348.0</TargetFramework>
|
2023-07-20 00:12:46 +01:00
|
|
|
|
<TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion>
|
|
|
|
|
|
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
|
2021-12-10 10:50:46 +01:00
|
|
|
|
<AssemblyName>PowerToys.PdfPreviewHandler</AssemblyName>
|
2021-08-26 23:43:26 +02:00
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2024-08-05 06:32:05 -07:00
|
|
|
|
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="PdfPreviewHandlerControl.cs" />
|
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2022-10-26 14:02:31 +01:00
|
|
|
|
<!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info -->
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes>
|
|
|
|
|
|
<CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir>
|
|
|
|
|
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-29 14:41:22 -05:00
|
|
|
|
<!-- Disable missing comment warning. WinRT/C++ libraries added won't have comments on their reflections. -->
|
2022-10-26 14:02:31 +01:00
|
|
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<OutputType>WinExe</OutputType>
|
2022-10-26 14:02:31 +01:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.CsWinRT" />
|
|
|
|
|
|
<PackageReference Include="System.IO.Abstractions" />
|
2021-08-26 23:43:26 +02:00
|
|
|
|
</ItemGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<ItemGroup>
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
2022-10-26 14:02:31 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" />
|
2022-12-14 13:37:23 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\common\interop\PowerToys.Interop.vcxproj" />
|
2021-08-26 23:43:26 +02:00
|
|
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\common\PreviewHandlerCommon.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
|
2021-08-26 23:43:26 +02:00
|
|
|
|
</Project>
|