23 references to InteractiveHostResources
InteractiveHost.UnitTests (10)
AbstractInteractiveHostTests.cs (2)
92expectedOutput.Add(string.Format(InteractiveHostResources.Loading_context_from_0, initializationFileName)); 95expectedOutput.Add(InteractiveHostResources.Type_Sharphelp_for_more_information);
InteractiveHostCoreTests.cs (1)
49Assert.True(errorOutput.EndsWith(string.Format(InteractiveHostResources.Hosting_process_exited_with_exit_code_0, process!.ExitCode)));
InteractiveHostDesktopTests.cs (7)
85"Process is terminated due to StackOverflowException.\n" + string.Format(InteractiveHostResources.Hosting_process_exited_with_exit_code_0, process!.ExitCode), errorOutput); 219Assert.Contains(InteractiveHostResources.Specified_file_not_found, errorOut, StringComparison.Ordinal); 220Assert.Contains(InteractiveHostResources.Searched_in_directory_colon, errorOut, StringComparison.Ordinal); 724{string.Format(InteractiveHostResources.Loading_context_from_0, Path.GetFileName(rspFile.Path))} 804$@"{string.Format(InteractiveHostResources.Loading_context_from_0, Path.GetFileName(rspFile.Path))} 832{string.Format(InteractiveHostResources.Loading_context_from_0, Path.GetFileName(rspFile.Path))} 854$@"{string.Format(InteractiveHostResources.Loading_context_from_0, Path.GetFileName(rspFile.Path))}
Microsoft.CodeAnalysis.InteractiveHost (13)
Interactive\Core\InteractiveHost.cs (2)
214WriteOutputInBackground(isError: true, string.Format(InteractiveHostResources.Hosting_process_exited_with_exit_code_0, exitCode.Value)); 256WriteOutputInBackground(isError: true, InteractiveHostResources.Unable_to_create_hosting_process);
Interactive\Core\InteractiveHost.LazyRemoteService.cs (2)
168string.Format(InteractiveHostResources.Failed_to_create_a_remote_process_for_interactive_code_execution, hostPath), 246string.Format(InteractiveHostResources.Failed_to_launch_0_process_exit_code_colon_1_with_output_colon, hostPath, process.ExitCode),
Interactive\Core\InteractiveHost.Service.cs (8)
336Console.Error.WriteLine(string.Format(InteractiveHostResources.Cannot_resolve_reference_0, reference)); 528Console.Out.WriteLine(string.Format(InteractiveHostResources.Loading_context_from_0, Path.GetFileName(initializationFilePath))); 611Console.Out.WriteLine(InteractiveHostResources.Type_Sharphelp_for_more_information); 641Console.Error.WriteLine(InteractiveHostResources.Specified_file_not_found_colon_0, path); 645Console.Error.WriteLine(InteractiveHostResources.Specified_file_not_found); 743? InteractiveHostResources.Searched_in_directory_colon 744: InteractiveHostResources.Searched_in_directories_colon); 802output.WriteLine(string.Format(output.FormatProvider, InteractiveHostResources.plus_additional_0_1, notShown, (notShown == 1) ? "error" : "errors"));
Microsoft.CodeAnalysis.Interactive.InteractiveHostResources.cs (1)
10internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(InteractiveHostResources)));