18 lines
626 B
C#
18 lines
626 B
C#
|
|
namespace Nop.Core.Configuration;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Represents default values related to configuration services
|
|||
|
|
/// </summary>
|
|||
|
|
public static partial class NopConfigurationDefaults
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the path to file that contains app settings
|
|||
|
|
/// </summary>
|
|||
|
|
public static string AppSettingsFilePath => "App_Data/appsettings.json";
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// Gets the path to file that contains app settings for specific hosting environment
|
|||
|
|
/// </summary>
|
|||
|
|
/// <remarks>0 - Environment name</remarks>
|
|||
|
|
public static string AppSettingsEnvironmentFilePath => "App_Data/appsettings.{0}.json";
|
|||
|
|
}
|