34 lines
1.8 KiB
XML
34 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<Company>animalistic.io</Company>
|
|
<Product>ESCPOS_NET</Product>
|
|
<Authors>Luke Paireepinart</Authors>
|
|
<Description>.NET Standard 2.0 Implementation of ESC/POS command generation and integration with thermal printers.
|
|
Allows creating receipts with all common functionality supported.</Description>
|
|
<Copyright>Copyright 2021 CandL Development, LLC.</Copyright>
|
|
<PackageLicenseUrl></PackageLicenseUrl>
|
|
<RepositoryUrl>https://github.com/lukevp/ESC-POS-.NET</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>epson thermal receipt printing printer usb wifi bluetooth serial esc pos escpos escp esc/pos esc/pos.net esc_pos esc_pos_net esc_pos_usb esc_pos_usb_net</PackageTags>
|
|
<Version>2.0.0</Version>
|
|
<AssemblyVersion>2.0.0.0</AssemblyVersion>
|
|
<FileVersion>2.0.0.0</FileVersion>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/lukevp/ESC-POS-.NET</PackageProjectUrl>
|
|
<PackageReleaseNotes>- Completely rebuilt the network printer code</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.0" />
|
|
<PackageReference Include="SuperSimpleTcp" Version="2.4.0" />
|
|
<PackageReference Include="System.IO.Ports" Version="4.6.0" />
|
|
<PackageReference Include="System.Text.Json" Version="5.0.2" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|