Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.
In this article, new users can find information and brief tutorials about how to install Aspose.BarCode for .NET and start using its classes in a .NET project. There are three ways to deploy Aspose.BarCode for .NET: adding a NuGet package (simple and fast), referencing an Aspose.BarCode package in a project (more flexible) or installing the library manually from the archive (to perform custom installation). In each case, to start working with code without limitations, it is required to set the license first. You can see how to do that in Licensing.
Below you can walk through all available installation modes and select the one that is the most appropriate in your case. If you have any specific questions or problems with installation, please check how to contact Technical Support.
Installing Aspose.BarCode for .Net through NuGet is the most convenient way to download and deploy Aspose .NET APIs. Execute the steps listed below to complete the installation automatically.
This option suggests adding a reference to a NuGet package through editing the source file of a project (*.csproj). Follow the steps below to launch the installation in this way:
<Project Sdk="Microsoft.NET.Sdk">
<!--Reference to Aspose.Barcode-->
<ItemGroup>
<PackageReference Include="Aspose.BarCode" Version="23.3.1" />
</ItemGroup>
<!--Reference to .Net Core libraries if .Net Core application-->
<ItemGroup Condition="$(DefineConstants.Contains(NETCOREAPP))">
<PackageReference Include="Aspose.Drawing.Common" Version="23.3.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="7.0.0" />
</ItemGroup>
</Project>
This installation mode is introduced for experienced users who would like to perform the customized installation. It allows manually setting up the library from the corresponding archive. Follow the instructions below to deploy Aspose.BarCode for .NET in this manner.
Analyzing your prompt, please hold on...
An error occurred while retrieving the results. Please refresh the page and try again.