Webiant Logo Webiant Logo
  1. No results found.

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

NopVersion.cs

namespace Nop.Core;

/// <summary>
/// Represents nopCommerce version
/// </summary>
public static class NopVersion
{
    /// <summary>
    /// Gets the major store version
    /// </summary>
    public const string CURRENT_VERSION = "4.90";

    /// <summary>
    /// Gets the minor store version
    /// </summary>
    public const string MINOR_VERSION = "2";

    /// <summary>
    /// Gets the full store version
    /// </summary>
    public const string FULL_VERSION = CURRENT_VERSION + "." + MINOR_VERSION;
}