InlineRename\InlineRenameSession.cs (14)
154throw new InvalidOperationException(EditorFeaturesResources.The_triggerSpan_is_not_included_in_the_given_workspace);
385throw new InvalidOperationException(EditorFeaturesResources.This_session_has_already_been_dismissed);
784_triggerView, TriggerSpan, EditorFeaturesResources.Computing_Rename_information,
792title: EditorFeaturesResources.Rename,
793defaultDescription: EditorFeaturesResources.Computing_Rename_information,
829string.Format(EditorFeaturesResources.Preview_Changes_0, EditorFeaturesResources.Rename),
831string.Format(EditorFeaturesResources.Rename_0_to_1_colon, this.OriginalSymbolName, this.ReplacementText),
845using var _ = operationContext.AddScope(allowCancellation: false, EditorFeaturesResources.Updating_files);
858error.Value.message, EditorFeaturesResources.Rename_Symbol, error.Value.severity);
879using var undoTransaction = _workspace.OpenGlobalUndoTransaction(EditorFeaturesResources.Inline_Rename);
882return (NotificationSeverity.Error, EditorFeaturesResources.Rename_operation_was_cancelled_or_is_not_valid);
892return (NotificationSeverity.Error, EditorFeaturesResources.Rename_operation_could_not_complete_due_to_external_change_to_workspace);
909return (NotificationSeverity.Information, EditorFeaturesResources.Rename_operation_was_not_properly_completed_Some_file_might_not_have_been_updated);
Preview\AbstractPreviewFactoryService.cs (11)
161string.Format(EditorFeaturesResources.Adding_reference_0_to_1, metadataReference.Display, oldProject.Name)));
168string.Format(EditorFeaturesResources.Removing_reference_0_from_1, metadataReference.Display, oldProject.Name)));
175string.Format(EditorFeaturesResources.Adding_reference_0_to_1, newSolution.GetRequiredProject(projectReference.ProjectId).Name, oldProject.Name)));
182string.Format(EditorFeaturesResources.Removing_reference_0_from_1, oldSolution.GetRequiredProject(projectReference.ProjectId).Name, oldProject.Name)));
189string.Format(EditorFeaturesResources.Adding_analyzer_reference_0_to_1, analyzer.Display, oldProject.Name)));
196string.Format(EditorFeaturesResources.Removing_analyzer_reference_0_from_1, analyzer.Display, oldProject.Name)));
204string.Format(EditorFeaturesResources.Adding_project_0, project.Name)));
211string.Format(EditorFeaturesResources.Removing_project_0, project.Name)));
218string.Format(EditorFeaturesResources.Changing_project_references_for_0, projectChanges.OldProject.Name)));
258var firstLine = string.Format(EditorFeaturesResources.Adding_0_to_1_with_content_colon,
330var firstLine = string.Format(EditorFeaturesResources.Removing_0_from_1_with_content_colon,
TextStructureNavigation\AbstractTextStructureNavigatorProvider.TextStructureNavigator.cs (10)
52title: EditorFeaturesResources.Text_Navigation,
53defaultDescription: EditorFeaturesResources.Finding_word_extent,
126title: EditorFeaturesResources.Text_Navigation,
127defaultDescription: EditorFeaturesResources.Finding_enclosing_span,
158title: EditorFeaturesResources.Text_Navigation,
159defaultDescription: EditorFeaturesResources.Finding_enclosing_span,
194title: EditorFeaturesResources.Text_Navigation,
195defaultDescription: EditorFeaturesResources.Finding_span_of_next_sibling,
246title: EditorFeaturesResources.Text_Navigation,
247defaultDescription: EditorFeaturesResources.Finding_span_of_previous_sibling,