Microsoft.VisualStudio.R.Package.ProjectProperties.GetSettingsFileAsync C# (CSharp) Method

GetSettingsFileAsync() public method

Sets R path to the settings file.
Settings file contains project settings as R code. The file is to be sourced before running the application. Null means no settings are defined. In order to read the actual settings, use ConfigurationSettingCollection
public GetSettingsFileAsync ( ) : Task
return Task
        public async Task<string> GetSettingsFileAsync() {
            var runProps = await GetConfigurationSettingsPropertiesAsync();
            return await runProps.SettingsFile.GetEvaluatedValueAsync();
        }