Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
This article describes how to use Aspose.Barcode for .Net .Net Standard libraries with .Net Framework v4.7.2 projects. Aspose.Barcode for .Net uses System.Drawing for any .NET Framework library version and Aspose.Drawing.Common for .Net Standard and .Net Core versions. In this way to use .Net Standard versions of Aspose.Barcode with .Net Framework projects it is needed to add some manual changes to configuration project files.
You can anytime download the example application.
First, you need to create .Net Framework Console application. You can do this in Visual Studio 2022. For this you need to:
The second, you need to add the following NuGet packages to packages.config:
You can see all of packages are added as .Net Framework versions. We need to change this behavior to .Net Standard versions using with editing two files: packages.config and Aspose.Barcode.NetStandard.csproj.
You need to edit packages.config and replace all targetFramework to netstandard2.0 as you can see in the following example:
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Aspose.BarCode" version="24.10.0" targetFramework="netstandard2.0" />
<package id="Aspose.Drawing.Common" version="24.10.0" targetFramework="netstandard2.0" />
<package id="System.Text.Encoding.CodePages" version="8.0.0" targetFramework="netstandard2.0" />
</packages>
You need to edit Aspose.Barcode.NetStandard.csproj and also replace all paths in Reference HintPath to netstandard2.0 as you can see in the following example:
<ItemGroup>
<Reference Include="Aspose.BarCode, Version=24.10.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
<HintPath>..\packages\Aspose.BarCode.24.10.0\lib\netstandard2.0\Aspose.BarCode.dll</HintPath>
</Reference>
<Reference Include="Aspose.Drawing.Common, Version=24.10.0.0, Culture=neutral, PublicKeyToken=716fcc553a201e56, processorArchitecture=MSIL">
<HintPath>..\packages\Aspose.Drawing.Common.24.10.0\lib\netstandard2.0\Aspose.Drawing.Common.dll</HintPath>
</Reference>
<Reference Include="System.Text.Encoding.CodePages, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\System.Text.Encoding.CodePages.8.0.0\lib\netstandard2.0\System.Text.Encoding.CodePages.dll</HintPath>
</Reference>
</ItemGroup>
After all upper manipulations you can use .Net Standard version of the Aspose.Barcode for .Net in .Net Framework project. You can see this with the following code:
BarcodeGenerator gen = new BarcodeGenerator(EncodeTypes.Code128, "Aspose.BarCode");
gen.Parameters.Barcode.XDimension.Pixels = 2;
Aspose.Drawing.Bitmap bmp = gen.GenerateBarCodeImage();
using (BarCodeReader reader = new BarCodeReader(bmp, DecodeType.Code128))
{
foreach (BarCodeResult result in reader.ReadBarCodes())
Console.WriteLine($"{result.CodeTypeName}:{result.CodeText}");
}
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.