17 references to EditorFeaturesWpfResources
Microsoft.CodeAnalysis.EditorFeatures (17)
artifacts\obj\Microsoft.CodeAnalysis.EditorFeatures\Release\net472\Microsoft.CodeAnalysis.EditorFeaturesWpfResources.cs (1)
10
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(
EditorFeaturesWpfResources
)));
InlineRename\CommandHandlers\RenameCommandHandler.cs (1)
95
message: string.Format(
EditorFeaturesWpfResources
.Error_performing_rename_0, ex.Message),
InlineRename\UI\Adornment\RenameFlyout.xaml.cs (1)
110
:
EditorFeaturesWpfResources
.Enter_to_rename_shift_enter_to_preview;
InlineRename\UI\SmartRename\SmartRenameViewModel.cs (5)
141
?
EditorFeaturesWpfResources
.Toggle_AI_suggestions
142
:
EditorFeaturesWpfResources
.Get_AI_suggestions;
146
?
EditorFeaturesWpfResources
.Enter_to_rename_shift_enter_to_preview
147
:
EditorFeaturesWpfResources
.Enter_to_rename_shift_enter_to_preview_ctrl_space_for_ai_suggestion;
149
public static string GeneratingSuggestionsLabel =>
EditorFeaturesWpfResources
.Generating_suggestions;
Interactive\InteractiveCommandHandler.cs (2)
59
using (context.OperationContext.AddScope(allowCancellation: true,
EditorFeaturesWpfResources
.Executing_selection_in_Interactive_Window))
105
EditorFeaturesWpfResources
.Copying_selection_to_Interactive_Window))
Interactive\InteractiveEvaluator.cs (2)
128
throw new NotSupportedException(
EditorFeaturesWpfResources
.The_CurrentWindow_property_may_only_be_assigned_once);
213
window.WriteLine(
EditorFeaturesWpfResources
.Resetting_execution_engine);
Interactive\InteractiveWindowResetCommand.cs (3)
48
=>
EditorFeaturesWpfResources
.Reset_the_execution_environment_to_the_initial_state_and_keep_history_with_the_option_to_switch_the_runtime_of_the_host_process;
63
yield return KeyValuePairUtil.Create(NoConfigParameterName,
EditorFeaturesWpfResources
.Reset_to_a_clean_environment_only_mscorlib_referenced_do_not_run_initialization_script);
64
yield return KeyValuePairUtil.Create(PlatformNames,
EditorFeaturesWpfResources
.Interactive_host_process_platform);
Interactive\ResetInteractive.cs (2)
53
using var context = uiThreadOperationExecutor.BeginExecute(title,
EditorFeaturesWpfResources
.Building_Project, allowCancellation: true, showProgress: false);
103
using var scope = uiThreadOperationContext.AddScope(allowCancellation: true,
EditorFeaturesWpfResources
.Resetting_Interactive);