forked from pvginkel/PdfiumViewer
-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathPdfiumViewer.Demo.csproj
More file actions
77 lines (77 loc) · 3.07 KB
/
PdfiumViewer.Demo.csproj
File metadata and controls
77 lines (77 loc) · 3.07 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>net48;net8.0-windows;net9.0-windows;net10.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<AssemblyTitle>PdfViewer.Demo</AssemblyTitle>
<Company>Pieter van Ginkel</Company>
<Product>PdfViewer.Demo</Product>
<Copyright>Pieter van Ginkel © 2012-2015</Copyright>
<Version>2.14.0.0</Version>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<Compile Update="ExportBitmapsForm.cs" />
<Compile Update="ExportBitmapsForm.Designer.cs">
<DependentUpon>ExportBitmapsForm.cs</DependentUpon>
</Compile>
<Compile Update="MainForm.cs" />
<Compile Update="MainForm.Designer.cs">
<DependentUpon>MainForm.cs</DependentUpon>
</Compile>
<Compile Update="PageRangeForm.cs" />
<Compile Update="PageRangeForm.Designer.cs">
<DependentUpon>PageRangeForm.cs</DependentUpon>
</Compile>
<Compile Update="PrintMultiplePagesForm.cs" />
<Compile Update="PrintMultiplePagesForm.Designer.cs">
<DependentUpon>PrintMultiplePagesForm.cs</DependentUpon>
</Compile>
<Compile Update="SearchForm.cs" />
<Compile Update="SearchForm.Designer.cs">
<DependentUpon>SearchForm.cs</DependentUpon>
</Compile>
<EmbeddedResource Update="ExportBitmapsForm.resx">
<DependentUpon>ExportBitmapsForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="MainForm.resx">
<DependentUpon>MainForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PageRangeForm.resx">
<DependentUpon>PageRangeForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="PrintMultiplePagesForm.resx">
<DependentUpon>PrintMultiplePagesForm.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Update="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Update="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Update="SearchForm.resx">
<DependentUpon>SearchForm.cs</DependentUpon>
</EmbeddedResource>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Update="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PdfiumViewer\PdfiumViewer.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="bblanchon.PDFium.Win32">
<Version>147.0.7713</Version>
</PackageReference>
</ItemGroup>
</Project>