Exemplo n.º 1
0
        void FileService_FileChanged(object sender, FileEventArgs e)
        {
            var launchSettingsPath = aspNetCoreRunConf?.launchProfileProvider?.launchSettingsJsonPath;
            var launchSettings     = e.FirstOrDefault(x => x.FileName == launchSettingsPath && !x.FileName.IsDirectory);

            if (launchSettings == null)
            {
                return;
            }

            aspNetCoreRunConf.RefreshLaunchSettings();
        }