23 references to InteractiveHostResources
InteractiveHost.UnitTests (10)
AbstractInteractiveHostTests.cs (2)
92
expectedOutput.Add(string.Format(
InteractiveHostResources
.Loading_context_from_0, initializationFileName));
95
expectedOutput.Add(
InteractiveHostResources
.Type_Sharphelp_for_more_information);
InteractiveHostCoreTests.cs (1)
49
Assert.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);
219
Assert.Contains(
InteractiveHostResources
.Specified_file_not_found, errorOut, StringComparison.Ordinal);
220
Assert.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)
214
WriteOutputInBackground(isError: true, string.Format(
InteractiveHostResources
.Hosting_process_exited_with_exit_code_0, exitCode.Value));
256
WriteOutputInBackground(isError: true,
InteractiveHostResources
.Unable_to_create_hosting_process);
Interactive\Core\InteractiveHost.LazyRemoteService.cs (2)
168
string.Format(
InteractiveHostResources
.Failed_to_create_a_remote_process_for_interactive_code_execution, hostPath),
246
string.Format(
InteractiveHostResources
.Failed_to_launch_0_process_exit_code_colon_1_with_output_colon, hostPath, process.ExitCode),
Interactive\Core\InteractiveHost.Service.cs (8)
336
Console.Error.WriteLine(string.Format(
InteractiveHostResources
.Cannot_resolve_reference_0, reference));
528
Console.Out.WriteLine(string.Format(
InteractiveHostResources
.Loading_context_from_0, Path.GetFileName(initializationFilePath)));
611
Console.Out.WriteLine(
InteractiveHostResources
.Type_Sharphelp_for_more_information);
641
Console.Error.WriteLine(
InteractiveHostResources
.Specified_file_not_found_colon_0, path);
645
Console.Error.WriteLine(
InteractiveHostResources
.Specified_file_not_found);
743
?
InteractiveHostResources
.Searched_in_directory_colon
744
:
InteractiveHostResources
.Searched_in_directories_colon);
802
output.WriteLine(string.Format(output.FormatProvider,
InteractiveHostResources
.plus_additional_0_1, notShown, (notShown == 1) ? "error" : "errors"));
Microsoft.CodeAnalysis.Interactive.InteractiveHostResources.cs (1)
10
internal static global::System.Resources.ResourceManager ResourceManager => s_resourceManager ?? (s_resourceManager = new global::System.Resources.ResourceManager(typeof(
InteractiveHostResources
)));