Webiant Logo Webiant Logo
  1. No results found.

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

InstallationConfig.cs

namespace Nop.Core.Configuration;

/// 
/// Represents installation configuration parameters
/// 
public partial class InstallationConfig : IConfig
{
    /// 
    /// Gets or sets a value indicating whether a store owner can install sample data during installation
    /// 
    public bool DisableSampleData { get; protected set; } = false;

    /// 
    /// Gets or sets a list of plugins ignored during nopCommerce installation
    /// 
    public string DisabledPlugins { get; protected set; } = string.Empty;

    /// 
    /// Gets or sets a value indicating whether to download and setup the regional language pack during installation
    /// 
    public bool InstallRegionalResources { get; protected set; } = true;
}