2022-01-18 15:52:22 +01: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" />
|
|
|
|
|
|
2020-07-21 16:27:12 -07:00
|
|
|
<PropertyGroup>
|
2022-12-14 13:37:23 +01:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2020-12-11 09:59:42 +01:00
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2020-07-21 16:27:12 -07:00
|
|
|
<ProjectGuid>{8FFE09DA-FA4F-4EE1-B3A2-AD5497FBD1AD}</ProjectGuid>
|
2020-09-21 19:44:12 -07:00
|
|
|
<RootNamespace>Microsoft.PowerToys.ThumbnailHandler.Svg</RootNamespace>
|
2021-12-10 10:50:46 +01:00
|
|
|
<AssemblyName>PowerToys.SvgThumbnailProvider</AssemblyName>
|
|
|
|
|
<AssemblyTitle>PowerToys.SvgThumbnailProvider</AssemblyTitle>
|
2020-09-21 19:44:12 -07:00
|
|
|
<AssemblyDescription>PowerToys SvgPreviewHandler</AssemblyDescription>
|
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>
|
2020-07-21 16:27:12 -07:00
|
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
2020-12-11 09:59:42 +01:00
|
|
|
<Description>PowerToys SvgPreviewHandler</Description>
|
2023-07-20 00:12:46 +01:00
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)</OutputPath>
|
2020-09-21 19:44:12 -07:00
|
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
2020-12-11 09:59:42 +01:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2023-11-22 12:46:59 -05:00
|
|
|
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
|
2022-12-14 13:37:23 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
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>
|
|
|
|
|
|
2020-07-21 16:27:12 -07:00
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="Microsoft.Windows.CsWinRT" />
|
|
|
|
|
<PackageReference Include="Microsoft.Web.WebView2" />
|
2020-07-21 16:27:12 -07:00
|
|
|
</ItemGroup>
|
2022-10-26 14:02:31 +01:00
|
|
|
|
2020-07-21 16:27:12 -07:00
|
|
|
<ItemGroup>
|
2022-10-26 14:02:31 +01:00
|
|
|
<ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" />
|
2020-12-15 15:16:09 +03:00
|
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
2020-12-11 09:59:42 +01:00
|
|
|
<ProjectReference Include="..\Common\PreviewHandlerCommon.csproj" />
|
2024-01-24 15:27:42 +00:00
|
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
2020-07-21 16:27:12 -07:00
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|