SimpleApp.csproj 396 B

123456789101112131415
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net5.0</TargetFramework>
  5. <ImplicitUsings>enable</ImplicitUsings>
  6. <Nullable>enable</Nullable>
  7. <LangVersion>10</LangVersion>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\QuestPDF\QuestPDF.csproj" />
  11. </ItemGroup>
  12. </Project>