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

SetStartupFileAsync() public method

Defines which file contains the application entry point.
public SetStartupFileAsync ( string val ) : System.Threading.Tasks.Task
val string
return System.Threading.Tasks.Task
        public async Task SetStartupFileAsync(string val) {
            var runProps = await GetConfigurationRunPropertiesAsync();
            await runProps.StartupFile.SetValueAsync(val);
        }