25 references to PipelineComponentType
System.AddIn (25)
System\Addin\Hosting\ActivationWorker.cs (5)
31private PipelineComponentType _currentComponentType; 129_currentComponentType = PipelineComponentType.AddIn; 181_currentComponentType = PipelineComponentType.AddInAdapter; 232case PipelineComponentType.AddInAdapter: 238case PipelineComponentType.AddIn:
System\Addin\Hosting\AddInStore.cs (8)
855Discover(file, PipelineComponentType.Contract, state, rootDir, warnings); 864Discover(file, PipelineComponentType.AddInAdapter, state, rootDir, warnings); 874if (Discover(file, PipelineComponentType.AddInBase, state, rootDir, warnings)) 1144private static bool Discover(String assemblyFileName, PipelineComponentType componentType, PipelineDeploymentState state, 1169case PipelineComponentType.Contract: 1173case PipelineComponentType.AddInAdapter: 1177case PipelineComponentType.AddInBase: 1241warnings.Add(String.Format(CultureInfo.CurrentCulture, Res.NoAddInModelPartsFound, PipelineComponentType.HostAdapter, assemblyFileName));
System\Addin\Hosting\InspectionWorker.cs (12)
39private PipelineComponentType _currentComponentType; 78if (_currentComponentType == PipelineComponentType.AddIn) 84case PipelineComponentType.HostAdapter: 94case PipelineComponentType.Contract: 97case PipelineComponentType.AddInAdapter: 103case PipelineComponentType.AddInBase: 192internal InspectionResults Inspect(PipelineComponentType componentType, string assemblyFileName, string pipelineRootDirectory) 255case PipelineComponentType.Contract: 262case PipelineComponentType.AddInAdapter: 269case PipelineComponentType.AddInBase: 330if (retval.Components.Count == 0 && _currentComponentType != PipelineComponentType.AddIn && _currentComponentType != PipelineComponentType.AddInBase)