Exemplo n.º 1
0
 public DebugLaunchProvider(
     ConfiguredProject configuredProject,
     ProjectProperties projectProperties,
     IBootableProperties bootableProperties)
     : base(configuredProject)
 {
     _projectProperties  = projectProperties;
     _bootableProperties = bootableProperties;
 }
Exemplo n.º 2
0
 public CosmosDebugEngineLaunchTargetsProvider(
     ConfiguredProject configuredProject,
     UnconfiguredProject unconfiguredProject,
     ProjectProperties projectProperties,
     IBootableProperties bootableProperties)
 {
     _configuredProject   = configuredProject;
     _unconfiguredProject = unconfiguredProject;
     _projectProperties   = projectProperties;
     _bootableProperties  = bootableProperties;
 }
Exemplo n.º 3
0
        public DebugLaunchProvider(
            ConfiguredProject configuredProject,
            ProjectProperties projectProperties,
            IBootableProperties bootableProperties,
            IProjectLockService projectLockService)
            : base(configuredProject)
        {
            _projectProperties  = projectProperties;
            _bootableProperties = bootableProperties;

            _projectLockService = projectLockService;
        }
Exemplo n.º 4
0
        public IsoPublishProvider(
            IBuildSupport buildSupport,
            IBuildProject buildProject,
            IProjectThreadingService projectThreadingService,
            IBootableProperties bootableProperties)
            : base(buildSupport, buildProject)
        {
            _viewModel             = new IsoPublishSettingsViewModel();
            _viewModel.PublishPath = projectThreadingService.ExecuteSynchronously(bootableProperties.GetIsoFileFullPathAsync);

            _settingsControl             = new IsoPublishSettingsControl();
            _settingsControl.DataContext = _viewModel;
        }