-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathGenCode128.csproj
More file actions
23 lines (20 loc) · 1.13 KB
/
GenCode128.csproj
File metadata and controls
23 lines (20 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>2.0.0</Version>
<Product>GenCode128 - A Code128 Barcode Generator</Product>
<Authors>Nikolay.IT, Chris Wuestefeld</Authors>
<Description>This is a simple library that lets you do one thing very easily: generate an Image for a Code128 barcode, with a single line of code. This image is suitable for print or display in a WPF, WinForms and ASP.NET applications.</Description>
<PackageReleaseNotes>Target .NET Standard 2.0</PackageReleaseNotes>
<PackageTags>Barcode, GenCode128, Code128, generate barcode</PackageTags>
<RepositoryUrl>https://github.com/SourceCodeBackup/GenCode128</RepositoryUrl>
<PackageProjectUrl>https://github.com/SourceCodeBackup/GenCode128</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<Copyright>Nikolay.IT, Chris Wuestefeld</Copyright>
<PackageId>GenCode128</PackageId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="System.Drawing.Common" Version="5.0.3" />
</ItemGroup>
</Project>