Exemplo n.º 1
0
        internal InteractiveEvaluator(
            IContentType contentType,
            HostServices hostServices,
            IViewClassifierAggregatorService classifierAggregator,
            IInteractiveWindowCommandsFactory commandsFactory,
            IInteractiveWindowCommand[] commands,
            string responseFilePath,
            string initialWorkingDirectory,
            string interactiveHostPath,
            Type replType)
        {
            Debug.Assert(responseFilePath == null || PathUtilities.IsAbsolute(responseFilePath));

            _contentType               = contentType;
            _responseFilePath          = responseFilePath;
            _workspace                 = new InteractiveWorkspace(this, hostServices);
            _contentTypeChangedHandler = new EventHandler <ContentTypeChangedEventArgs>(LanguageBufferContentTypeChanged);
            _classifierAggregator      = classifierAggregator;
            _initialWorkingDirectory   = initialWorkingDirectory;
            _commandsFactory           = commandsFactory;
            _commands = commands.ToImmutableArray();

            var hostPath = interactiveHostPath;

            _interactiveHost = new InteractiveHost(replType, hostPath, initialWorkingDirectory);
            _interactiveHost.ProcessStarting += ProcessStarting;
        }
Exemplo n.º 2
0
        internal InteractiveEvaluator(
            IContentType contentType,
            HostServices hostServices,
            IViewClassifierAggregatorService classifierAggregator,
            IInteractiveWindowCommandsFactory commandsFactory,
            ImmutableArray <IInteractiveWindowCommand> commands,
            string responseFilePath,
            string initialWorkingDirectory,
            string interactiveHostPath,
            Type replType)
        {
            Debug.Assert(responseFilePath == null || PathUtilities.IsAbsolute(responseFilePath));

            _contentType               = contentType;
            _responseFilePath          = responseFilePath;
            _workspace                 = new InteractiveWorkspace(hostServices);
            _contentTypeChangedHandler = new EventHandler <ContentTypeChangedEventArgs>(LanguageBufferContentTypeChanged);
            _classifierAggregator      = classifierAggregator;
            _initialWorkingDirectory   = initialWorkingDirectory;
            _commandsFactory           = commandsFactory;
            _commands = commands;

            // The following settings will apply when the REPL starts without .rsp file.
            // They are discarded once the REPL is reset.
            ReferenceSearchPaths = ImmutableArray <string> .Empty;
            SourceSearchPaths    = ImmutableArray <string> .Empty;
            WorkingDirectory     = initialWorkingDirectory;
            var metadataService = _workspace.CurrentSolution.Services.MetadataService;

            _metadataReferenceResolver = CreateMetadataReferenceResolver(metadataService, ReferenceSearchPaths, _initialWorkingDirectory);
            _sourceReferenceResolver   = CreateSourceReferenceResolver(SourceSearchPaths, _initialWorkingDirectory);

            _interactiveHost = new InteractiveHost(replType, interactiveHostPath, initialWorkingDirectory);
            _interactiveHost.ProcessStarting += ProcessStarting;
        }
 public Service(InteractiveWorkspace workspace)
 => _workspace = workspace;
 public SolutionAnalyzerSetter(InteractiveWorkspace workspace) => _workspace = workspace;