29 lines
897 B
XML
29 lines
897 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<Nullable>disable</Nullable>
|
|
<StartupObject>Pdf2Img.Program</StartupObject>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<SignAssembly>False</SignAssembly>
|
|
<Copyright>DevRas</Copyright>
|
|
<Company>DevRas</Company>
|
|
<Authors>DevRas</Authors>
|
|
<Platforms>AnyCPU;x64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Windows.SDK.Contracts" Version="10.0.22621.755" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Windows">
|
|
<HintPath>..\..\..\..\..\..\Program Files (x86)\Windows Kits\8.1\References\CommonConfiguration\Neutral\Annotated\Windows.winmd</HintPath>
|
|
<IsWinMDFile>true</IsWinMDFile>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|