Skip to content

Consuming module

If you want to install a module

  • Add the related layer GridLab.PSSX. NuGet package into your project:

    Install-Package GridLab.PSSX.<ModuleName>.<LayerName>

  • For example, when we want to extend the domain layer, the domain layer of the module must be added to the dependency list.

    [DependsOn(
        //...other dependencies
        typeof(<ModuleName>DomainModule) // <-- Add module dependency like that
    )]
    public class PSSXDomainModule : AbpModule
    {
    }
    

Packages

Modules follow the module development best practices guide and consists of several NuGet and NPM packages. See the guide if you want to understand the packages and relations between them.