Alejandro Acuña
2024-10-22 9214c4e5cec380dc263034f9a0e5a10f0dc1ebac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<Project Sdk="Microsoft.NET.Sdk">
 
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp3.1</TargetFramework>
    <DefaultItemExcludes>$(DefaultItemExcludes);GcPdfViewerWeb\**\*</DefaultItemExcludes>
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  </PropertyGroup>
 
  <ItemGroup>
    <PackageReference Include="GrapeCity.Documents.Imaging" Version="5.1.0.790" />
  </ItemGroup>
 
  <ItemGroup>
    <None Update="Resources\**\*">
      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </None>
  </ItemGroup>
 
  <ItemGroup Condition="Exists('GcPdfViewerWeb/SupportApiDemo/Models/PdfViewerOptions.cs')">
    <Compile Include="GcPdfViewerWeb/SupportApiDemo/Models/PdfViewerOptions.cs" Link="Common\PdfViewerOptions.cs" />
  </ItemGroup>
 
  <ItemGroup>
    <None Update="GrapeCityLogo.svg">
      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
    </None>
  </ItemGroup>
 
</Project>