mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
43 lines
2.2 KiB
XML
43 lines
2.2 KiB
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|||
|
|
<Import Project="..\..\..\Common.Dotnet.CsWinRT.props" />
|
|||
|
|
<Import Project="..\..\..\Common.SelfContained.props" />
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
|
<ProjectGuid>{9BC1C986-1E97-4D07-A7B1-CE226C239EFA}</ProjectGuid>
|
|||
|
|
<RootNamespace>Microsoft.PowerToys.ThumbnailHandler.Bgcode</RootNamespace>
|
|||
|
|
<AssemblyName>PowerToys.BgcodeThumbnailProvider</AssemblyName>
|
|||
|
|
<AssemblyTitle>PowerToys.BgcodeThumbnailProvider</AssemblyTitle>
|
|||
|
|
<AssemblyDescription>PowerToys BgcodePreviewHandler</AssemblyDescription>
|
|||
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|||
|
|
<Description>PowerToys BgcodePreviewHandler</Description>
|
|||
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)</OutputPath>
|
|||
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|||
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|||
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<!-- 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>
|
|||
|
|
<!-- Disable missing comment warning. WinRT/C++ libraries added won't have comments on their reflections. -->
|
|||
|
|
<NoWarn>$(NoWarn);1591</NoWarn>
|
|||
|
|
<OutputType>WinExe</OutputType>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\..\..\common\FilePreviewCommon\FilePreviewCommon.csproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" />
|
|||
|
|
<ProjectReference Include="..\Common\PreviewHandlerCommon.csproj" />
|
|||
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|