-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebserver-printing.csproj
26 lines (22 loc) · 1.02 KB
/
webserver-printing.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<StartupObject>WerServer.Program</StartupObject>
<Authors>Sergi Ortiz Gómez</Authors>
<Company>DrUalcman Programación</Company>
<Description>Local web server to print directly to a printer from a web pages request</Description>
<Copyright>(c) 2020</Copyright>
<NeutralLanguage />
<PackageReleaseNotes>PdfiumViewer are used on this project from https://github.com/Bluegrams/PdfiumViewer</PackageReleaseNotes>
<Version>1.0.5</Version>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="PdfiumViewer.Native.x86.v8-xfa" Version="2018.4.8.256" />
<PackageReference Include="PdfiumViewer.Native.x86_64.v8-xfa" Version="2018.4.8.256" />
<PackageReference Include="PdfiumViewer.Updated" Version="2.14.4" />
</ItemGroup>
</Project>