Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

PluginIncompatibleType.cs

namespace Nop.Services.Plugins;

public enum PluginIncompatibleType
{
    /// 
    /// The plugin isn't compatible with the current version
    /// 
    NotCompatibleWithCurrentVersion,
    /// 
    /// The main assembly isn't found
    /// 
    MainAssemblyNotFound,
    /// 
    /// Another version of the same library is already loaded in memory
    /// 
    HasCollisions
}