protected override void OnItemReady()
        {
            base.OnItemReady();
            FileService.FileChanged += FileService_FileChanged;

            InitLaunchSettingsProvider();
            updating = true;

            launchProfileProvider.LoadLaunchSettings();
            launchProfileProvider.SyncRunConfigurations();

            updating = false;
        }
Ejemplo n.º 2
0
        internal void RefreshLaunchSettings()
        {
            if (launchProfileProvider == null)
            {
                return;
            }

            launchProfileProvider.LoadLaunchSettings();
            InitializeLaunchSettings();
        }
Ejemplo n.º 3
0
        public AspNetCoreRunConfiguration(string name, DotNetProject project)
            : base(name)
        {
            Initialize();

            projectName = project.DefaultNamespace;

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

            InitializeLaunchSettings();
        }