Dev2.Runtime.Configuration.SettingsProvider.GetFilePath C# (CSharp) Method

GetFilePath() public static method

public static GetFilePath ( ) : string
return string
        public static string GetFilePath()
        {
            var rootDir = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);

            // ReSharper disable AssignNullToNotNullAttribute
            return Path.Combine(rootDir, "Settings", "Application.xml");
            // ReSharper restore AssignNullToNotNullAttribute
        }