Volo.Abp.Imaging.AspNetCore
See on NugetHow to Install
There are three ways to install Volo.Abp.Imaging.AspNetCore
NuGet package to your project:
1: Installing with the ABP CLI
If you haven't installed the ABP CLI, first install by executing the following command in a command-line terminal:
dotnet tool install -g Volo.Abp.Studio.Cli
abp add-package Volo.Abp.Imaging.AspNetCore
It will add the Volo.Abp.Imaging.AspNetCore
package reference to your project and the AbpImagingAspNetCoreModule
dependency to your module class.
2: Installing with the Dotnet CLI
Add Volo.Abp.Imaging.AspNetCore
NuGet package reference to your project using your IDE or executing the following command:
dotnet add package Volo.Abp.Imaging.AspNetCore
Then add the AbpImagingAspNetCoreModule
dependency to your module class as shown in the following example:
using Volo.Abp.Imaging; [DependsOn(typeOf(AbpImagingAspNetCoreModule))]
public class {YourModule} : AbpModule
{
}
3: Installing with the Package Manager Console
Open the Package Manager Console in Visual Studio (Tools -> Nuget Package Manager -> Package Manager Console) and execute the following command:
Install-Package Volo.Abp.Imaging.AspNetCore
Then add the AbpImagingAspNetCoreModule
dependency to your module class as shown in the following example:
using Volo.Abp.Imaging; [DependsOn(typeOf(AbpImagingAspNetCoreModule))]
public class {YourModule} : AbpModule
{
}