void InitLaunchSettingsProvider()
 {
     if (launchProfileProvider == null)
     {
         launchProfileProvider = new LaunchProfileProvider(this.Project);
     }
 }
Exemplo n.º 2
0
 void InitLaunchSettingsProvider()
 {
     if (launchProfileProvider == null)
     {
         launchProfileProvider = new LaunchProfileProvider(this.Project.BaseDirectory, this.Project.DefaultNamespace);
     }
 }
Exemplo n.º 3
0
        public AspNetCoreRunConfiguration(string name, DotNetProject project)
            : base(name)
        {
            Initialize();

            projectName = project.DefaultNamespace;

            launchProfileProvider = new LaunchProfileProvider(project);
            launchProfileProvider.LoadLaunchSettings();

            InitializeLaunchSettings();
        }