mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-02-24 04:00:02 +01:00
21 lines
786 B
XML
21 lines
786 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.CsWinRT.props" />
|
|
<Import Project="$(RepoRoot)src\Monaco.props" />
|
|
<Import Project="$(RepoRoot)src\Common.Dotnet.AotCompatibility.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>PowerToys FilePreviewCommon</Description>
|
|
<AssemblyName>PowerToys.FilePreviewCommon</AssemblyName>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Markdig.Signed" />
|
|
<PackageReference Include="System.Text.Encoding.CodePages" />
|
|
<PackageReference Include="UTF.Unknown" />
|
|
</ItemGroup>
|
|
</Project>
|