-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReceiptSharp.csproj
More file actions
54 lines (48 loc) · 2.51 KB
/
ReceiptSharp.csproj
File metadata and controls
54 lines (48 loc) · 2.51 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>ReceiptSharp</AssemblyName>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>ReceiptSharp</PackageId>
<Version>2.0.0</Version>
<Authors>receiptline</Authors>
<Company>Open Foodservice System Consortium</Company>
<Product>ReceiptSharp</Product>
<Description>.NET printing library for receipt printers, simple and easy with receipt markdown, printer status support.</Description>
<Copyright>© 2025 Open Foodservice System Consortium</Copyright>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/receiptline/receiptsharp</RepositoryUrl>
<PackageTags>receipt;printer;thermal;qrcode;barcode;markdown;svg;epson;escpos;starprnt</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Remove="src\Fonts\en\CourierPrime-Regular.ttf" />
<None Remove="src\Fonts\ja\BIZUDGothic-Regular.ttf" />
<None Remove="src\Fonts\ko\NotoSansMonoCJKkr-Regular.otf" />
<None Remove="src\Fonts\zh\NotoSansMonoCJKsc-Regular.otf" />
<None Remove="src\Fonts\zh\NotoSansMonoCJKtc-Regular.otf" />
<None Remove="src\Fonts\th\Sarabun-Regular.ttf" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="src\Fonts\en\CourierPrime-Regular.ttf" />
<EmbeddedResource Include="src\Fonts\ja\BIZUDGothic-Regular.ttf" />
<EmbeddedResource Include="src\Fonts\ko\NotoSansMonoCJKkr-Regular.otf" />
<EmbeddedResource Include="src\Fonts\zh\NotoSansMonoCJKsc-Regular.otf" />
<EmbeddedResource Include="src\Fonts\zh\NotoSansMonoCJKtc-Regular.otf" />
<EmbeddedResource Include="src\Fonts\th\Sarabun-Regular.ttf" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.102" PrivateAssets="all" />
<PackageReference Include="SkiaSharp" Version="3.119.1" />
<PackageReference Include="Svg.Skia" Version="3.4.1" />
<PackageReference Include="System.IO.Ports" Version="10.0.2" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="icon.png" Pack="true" PackagePath="" />
<None Update="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>