2022-01-18 15:52:22 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<PropertyGroup>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
2021-12-10 10:50:46 +01:00
|
|
|
|
<AssemblyTitle>PowerToys.MarkdownPreviewHandler</AssemblyTitle>
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<AssemblyDescription>PowerToys MarkdownPreviewHandler</AssemblyDescription>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<Description>PowerToys MarkdownPreviewHandler</Description>
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<DocumentationFile>$(SolutionDir)$(Platform)\$(Configuration)\modules\FileExplorerPreview\MarkdownPreviewPaneDocumentation.xml</DocumentationFile>
|
2022-05-11 16:49:28 +01:00
|
|
|
|
<OutputPath>..\..\..\..\$(Platform)\$(Configuration)\modules\FileExplorerPreview\</OutputPath>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2022-05-19 14:02:08 +01:00
|
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
2022-05-11 16:49:28 +01:00
|
|
|
|
<RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
<TargetFramework>net7.0-windows10.0.19041.0</TargetFramework>
|
2020-07-15 14:23:59 -03:00
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<PropertyGroup>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<ProjectGuid>{6A71162E-FC4C-4A2C-B90F-3CF94F59A9BB}</ProjectGuid>
|
|
|
|
|
|
<RootNamespace>Microsoft.PowerToys.PreviewHandler.Markdown</RootNamespace>
|
|
|
|
|
|
<EnableComHosting>true</EnableComHosting>
|
2021-12-10 10:50:46 +01:00
|
|
|
|
<AssemblyName>PowerToys.MarkdownPreviewHandler</AssemblyName>
|
2020-07-15 14:23:59 -03:00
|
|
|
|
</PropertyGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<Import Project="..\..\..\Version.props" />
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<ItemGroup>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<Compile Update="MarkdownPreviewHandlerControl.cs" />
|
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
2020-12-11 09:59:42 +01:00
|
|
|
|
<Compile Update="Properties\Settings.Designer.cs">
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
|
|
|
|
|
<DependentUpon>Settings.settings</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>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<ItemGroup>
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="Markdig.Signed" Version="0.27.0" />
|
2022-09-27 18:50:59 +02:00
|
|
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1343.22" />
|
2022-11-08 18:35:06 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Windows.CsWinRT" Version="2.0.0" />
|
2022-10-16 14:23:31 +02:00
|
|
|
|
<PackageReference Include="System.IO.Abstractions" Version="17.2.3" />
|
2020-07-15 14:23:59 -03:00
|
|
|
|
</ItemGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<ItemGroup>
|
2022-10-26 14:02:31 +01:00
|
|
|
|
<ProjectReference Include="..\..\..\common\GPOWrapper\GPOWrapper.vcxproj" />
|
2022-04-19 12:40:33 +02:00
|
|
|
|
<ProjectReference Include="..\..\..\common\Common.UI\Common.UI.csproj" />
|
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" />
|
2020-07-15 14:23:59 -03:00
|
|
|
|
</ItemGroup>
|
2022-03-23 17:31:51 +01:00
|
|
|
|
|
2020-07-15 14:23:59 -03:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="Properties\Settings.settings">
|
|
|
|
|
|
<Generator>SettingsSingleFileGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
2022-12-01 09:40:41 -05:00
|
|
|
|
|
2020-03-11 15:53:49 -07:00
|
|
|
|
</Project>
|