204 references to Resources
vstest.console.arm64 (204)
src\vstest\src\vstest.console\CommandLine\CommandLineOptions.cs (3)
18using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 266throw new TestSourceException(CommandLineResources.CannotBeNullOrEmpty); 280string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidArgument, source), ex);
src\vstest\src\vstest.console\CommandLine\Executor.cs (8)
33using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 171Output.Error(true, CommandLineResources.NoArgumentsProvided); 271Output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoArgumentProcessorFound, arg)); 379Output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.DuplicateArgumentError, processor.Metadata.Value.CommandName)); 478string commandLineBanner = string.Format(CultureInfo.CurrentCulture, CommandLineResources.MicrosoftCommandLineTitle, assemblyVersionAndArchitecture); 492Output.Warning(false, CommandLineResources.VSTestDeprecationMessage); 506Output.Warning(false, CommandLineResources.WarningEmulatedOnArm64, currentProcessArchitecture.ToString().ToLowerInvariant()); 574Output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.OpenResponseFileError, fileName));
src\vstest\src\vstest.console\Internal\ConsoleLogger.cs (45)
19using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 93CommandLineResources.FailedTestIndicator.Length + 1, 94CommandLineResources.PassedTestIndicator.Length + 1, 95CommandLineResources.SkippedTestIndicator.Length + 1, 96CommandLineResources.None.Length 250Output.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalDays, CommandLineResources.Days)); 254Output.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalHours, CommandLineResources.Hours)); 258Output.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalMinutes, CommandLineResources.Minutes)); 262Output.Information(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ExecutionTimeFormatString, timeSpan.TotalSeconds, CommandLineResources.Seconds)); 314Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.ErrorMessageBanner); 322Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StacktraceBanner); 335Output.Information(false, TestResultPrefix + CommandLineResources.StdOutMessagesBanner); 348Output.Information(false, ConsoleColor.Red, TestResultPrefix + CommandLineResources.StdErrMessagesBanner); 361Output.Information(false, TestResultPrefix + CommandLineResources.DbgTrcMessagesBanner); 374Output.Information(false, TestResultPrefix + CommandLineResources.AddnlInfoMessagesBanner); 429Output.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourcesDiscovered, commandLineOptions.Sources.Count()), OutputLevel.Information); 558Output.Write(GetFormattedTestIndicator(CommandLineResources.SkippedTestIndicator), OutputLevel.Information, ConsoleColor.Yellow); 581Output.Write(GetFormattedTestIndicator(CommandLineResources.FailedTestIndicator), OutputLevel.Information, ConsoleColor.Red); 598Output.Write(GetFormattedTestIndicator(CommandLineResources.PassedTestIndicator), OutputLevel.Information, ConsoleColor.Green); 622Output.Write(GetFormattedTestIndicator(CommandLineResources.SkippedTestIndicator), OutputLevel.Information, ConsoleColor.Yellow); 700Output.Information(false, CommandLineResources.AttachmentsBanner); 706var attachmentOutput = string.Format(CultureInfo.CurrentCulture, CommandLineResources.AttachmentOutputFormat, uriDataAttachment.Uri.LocalPath); 763TestOutcome.Failed => (CommandLineResources.FailedTestIndicator + "!").PadRight(LongestResultIndicator), 764TestOutcome.Passed => (CommandLineResources.PassedTestIndicator + "!").PadRight(LongestResultIndicator), 765TestOutcome.Skipped => (CommandLineResources.SkippedTestIndicator + "!").PadRight(LongestResultIndicator), 766_ => CommandLineResources.None.PadRight(LongestResultIndicator), 781var outputLine = string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummary, 815Output.Information(false, CommandLineResources.TestRunSummaryAssemblyAndFramework, 831Output.Error(false, CommandLineResources.TestRunCanceled); 837Output.Error(false, CommandLineResources.TestRunAborted); 841Output.Error(false, CommandLineResources.TestRunAbortedWithError, e.Error); 850Output.Error(false, CommandLineResources.TestRunCanceled); 856Output.Error(false, CommandLineResources.TestRunAborted); 860Output.Error(false, CommandLineResources.TestRunAbortedWithError, e.Error); 865Output.Error(false, CommandLineResources.TestRunFailed); 869Output.Information(false, ConsoleColor.Green, CommandLineResources.TestRunSuccessful); 875string totalTestsformat = (e.IsAborted || e.IsCanceled) ? CommandLineResources.TestRunSummaryForCanceledOrAbortedRun : CommandLineResources.TestRunSummaryTotalTests; 880Output.Information(false, ConsoleColor.Green, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryPassedTests, passedTests)); 884Output.Information(false, ConsoleColor.Red, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummaryFailedTests, failedTests)); 888Output.Information(false, ConsoleColor.Yellow, string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummarySkippedTests, skippedTests));
src\vstest\src\vstest.console\Internal\FilePatternParser.cs (2)
17using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 67string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestSourceFileNotFound, filePattern));
src\vstest\src\vstest.console\Internal\MSBuildLogger.cs (14)
20using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 103SendMessage("run-cancel", CommandLineResources.TestRunCanceled); 109SendMessage("run-abort", CommandLineResources.TestRunAborted); 113SendMessage("run-abort", string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunAbortedWithError, e.Error)); 125? CommandLineResources.FailedTestIndicator 127? CommandLineResources.SkippedTestIndicator 128: CommandLineResources.PassedTestIndicator; 129var summary = string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestRunSummary, 182formattedError.Append(Resources.Resources.ErrorMessageBanner); 220formattedError.AppendLine(Resources.Resources.StacktraceBanner); 325stringBuilder.AppendLine(testResultPrefix + CommandLineResources.StdOutMessagesBanner); 332stringBuilder.AppendLine(testResultPrefix + CommandLineResources.StdErrMessagesBanner); 339stringBuilder.AppendLine(testResultPrefix + CommandLineResources.DbgTrcMessagesBanner); 346stringBuilder.AppendLine(testResultPrefix + CommandLineResources.AddnlInfoMessagesBanner);
src\vstest\src\vstest.console\Internal\ProgressIndicator.cs (1)
42_testRunProgressString = string.Format(CultureInfo.CurrentCulture, "{0}...", Resources.Resources.ProgressIndicatorString);
src\vstest\src\vstest.console\Processors\AeDebuggerArgumentProcessor.cs (9)
24using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 92string exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidAeDebuggerArgument, _argument ?? ""); 123_output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.PostmortemDebuggerNotSupportedForCurrentOS)); 129_output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ProcDumpToolDirectoryPathArgumenNotFound)); 139_output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidProcDumpToolDirectoryPath)); 150_output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ProcDumpFileNameNotFound, procDumpPath)); 157_output.Error(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.ProcDumpFileNameNotFound, procDumpPath)); 167CommandLineResources.ProcDumpDirectoryPathArgumenNotFound, 168CommandLineResources.InvalidProcDumpDirectoryPath,
src\vstest\src\vstest.console\Processors\CLIRunSettingsArgumentProcessor.cs (4)
16using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 72public override string HelpContentResourceName => CommandLineResources.CLIRunSettingsArgumentHelp; 113throw new CommandLineException(CommandLineResources.MalformedRunSettingsKey, exception); 228var exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidTestRunParameterArgument, node);
src\vstest\src\vstest.console\Processors\CollectArgumentProcessor.cs (4)
22using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 74public override string HelpContentResourceName => CommandLineResources.CollectArgumentHelp; 97string exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.DataCollectorFriendlyNameInvalid, argument); 116throw new SettingsException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.CollectWithTestSettingErrorMessage, argument));
src\vstest\src\vstest.console\Processors\DisableAutoFakesArgumentProcessor.cs (2)
6using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 70throw new CommandLineException(CommandLineResources.DisableAutoFakesUsage);
src\vstest\src\vstest.console\Processors\EnableBlameArgumentProcessor.cs (4)
24using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 82public override string HelpContentResourceName => CommandLineResources.EnableBlameUsage; 134var exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidBlameArgument, argument); 160Output.Warning(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.BlameIncorrectOption, argument));
src\vstest\src\vstest.console\Processors\EnableDiagArgumentProcessor.cs (3)
22using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 82public override string HelpContentResourceName => CommandLineResources.EnableDiagUsage; 119string exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidDiagArgument, argument);
src\vstest\src\vstest.console\Processors\EnableLoggerArgumentProcessor.cs (3)
13using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 84public override string HelpContentResourceName => CommandLineResources.EnableLoggerArgumentsInNetCore; 117string exceptionMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.LoggerUriInvalid, argument);
src\vstest\src\vstest.console\Processors\EnvironmentArgumentProcessor.cs (3)
11using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 57public override string HelpContentResourceName => CommandLineResources.EnvironmentArgumentHelp; 110_output.Warning(true, CommandLineResources.EnvironmentVariableXIsOverriden, key);
src\vstest\src\vstest.console\Processors\FrameworkArgumentProcessor.cs (5)
13using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 68public override string HelpContentResourceName => CommandLineResources.FrameworkArgumentHelp; 111throw new CommandLineException(CommandLineResources.FrameworkVersionRequired); 116string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidFrameworkVersion, argument)); 126CommandLineResources.TestSettingsFrameworkMismatch,
src\vstest\src\vstest.console\Processors\HelpArgumentProcessor.cs (7)
9using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 57public override string HelpContentResourceName => CommandLineResources.HelpArgumentHelp; 94OutputSection(CommandLineResources.HelpUsageText); 95OutputSection(CommandLineResources.HelpDescriptionText); 96OutputSection(CommandLineResources.HelpArgumentsText); 114OutputSection(CommandLineResources.HelpOptionsText); 123OutputSection(CommandLineResources.Examples);
src\vstest\src\vstest.console\Processors\InIsolationArgumentProcessor.cs (3)
12using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 64public override string HelpContentResourceName => CommandLineResources.InIsolationHelp; 100string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidInIsolationCommand, argument));
src\vstest\src\vstest.console\Processors\ListExtensionsArgumentProcessor.cs (11)
13using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 85ConsoleOutput.Instance.WriteLine(CommandLineResources.AvailableDiscoverersHeaderMessage, OutputLevel.Information); 91ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.UriOfDefaultExecutor, extension.Metadata.DefaultExecutorUri), OutputLevel.Information); 92ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.SupportedFileTypesIndicator + " " + string.Join(", ", extension.Metadata.FileExtension!)), OutputLevel.Information); 122ConsoleOutput.Instance.WriteLine(CommandLineResources.AvailableExecutorsHeaderMessage, OutputLevel.Information); 128ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableExtensionsMetadataFormat, "Uri", extension.Metadata.ExtensionUri), OutputLevel.Information); 158ConsoleOutput.Instance.WriteLine(CommandLineResources.AvailableLoggersHeaderMessage, OutputLevel.Information); 172ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableExtensionsMetadataFormat, "Uri", extension.Metadata.ExtensionUri), OutputLevel.Information); 173ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableExtensionsMetadataFormat, "FriendlyName", string.Join(", ", extension.Metadata.FriendlyName)), OutputLevel.Information); 210ConsoleOutput.Instance.WriteLine(CommandLineResources.AvailableSettingsProvidersHeaderMessage, OutputLevel.Information); 216ConsoleOutput.Instance.WriteLine(string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableExtensionsMetadataFormat, "SettingName", extension.Metadata.SettingsName), OutputLevel.Information);
src\vstest\src\vstest.console\Processors\ListFullyQualifiedTestsArgumentProcessor.cs (3)
18using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 179throw new CommandLineException(CommandLineResources.MissingTestSourceFile); 184Output.Information(false, CommandLineResources.VstestDiagLogOutputPath, EqtTrace.LogFile);
src\vstest\src\vstest.console\Processors\ListTestsArgumentProcessor.cs (6)
16using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 82public override string HelpContentResourceName => CommandLineResources.ListTestsHelp; 183throw new CommandLineException(CommandLineResources.MissingTestSourceFile); 186Output.WriteLine(CommandLineResources.ListTestsHeaderMessage, OutputLevel.Information); 189Output.Information(false, CommandLineResources.VstestDiagLogOutputPath, EqtTrace.LogFile); 233string.Format(CultureInfo.CurrentCulture, CommandLineResources.AvailableTestsFormat, test.DisplayName),
src\vstest\src\vstest.console\Processors\ParallelArgumentProcessor.cs (3)
12using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 63public override string HelpContentResourceName => CommandLineResources.ParallelArgumentProcessorHelp; 107string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidParallelCommand, argument));
src\vstest\src\vstest.console\Processors\ParentProcessIdArgumentProcessor.cs (3)
8using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 60public override string HelpContentResourceName => CommandLineResources.ParentProcessIdArgumentHelp; 95throw new CommandLineException(CommandLineResources.InvalidParentProcessIdArgument);
src\vstest\src\vstest.console\Processors\PlatformArgumentProcessor.cs (4)
14using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 70public override string HelpContentResourceName => CommandLineResources.PlatformArgumentHelp; 118throw new CommandLineException(CommandLineResources.PlatformTypeRequired); 144string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidPlatformType, argument, string.Join(", ", validPlatforms)));
src\vstest\src\vstest.console\Processors\PortArgumentProcessor.cs (4)
16using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 71public override string HelpContentResourceName => CommandLineResources.PortArgumentHelp; 160throw new CommandLineException(CommandLineResources.InvalidPortArgument); 182throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.DesignModeClientTimeoutError, _port), ex);
src\vstest\src\vstest.console\Processors\ResponseFileArgumentProcessor.cs (2)
6using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 51public override string HelpContentResourceName => CommandLineResources.ResponseFileArgumentHelp;
src\vstest\src\vstest.console\Processors\ResultsDirectoryArgumentProcessor.cs (4)
14using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 71public override string HelpContentResourceName => CommandLineResources.ResultsDirectoryArgumentHelp; 115throw new CommandLineException(CommandLineResources.ResultsDirectoryValueRequired); 129throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidResultsDirectoryPathCommand, argument, ex.Message));
src\vstest\src\vstest.console\Processors\RunSettingsArgumentProcessor.cs (4)
20using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 73public override string HelpContentResourceName => CommandLineResources.RunSettingsArgumentHelp; 98throw new CommandLineException(CommandLineResources.RunSettingsRequired); 106CommandLineResources.RunSettingsFileNotFound,
src\vstest\src\vstest.console\Processors\RunSpecificTestsArgumentProcessor.cs (12)
22using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 69public override string HelpContentResourceName => CommandLineResources.RunSpecificTestsHelp; 177throw new CommandLineException(CommandLineResources.SpecificTestsRequired); 197throw new CommandLineException(CommandLineResources.MissingTestSourceFile); 223Output.WriteLine(CommandLineResources.StartingDiscovery, OutputLevel.Information); 228Output.Information(false, CommandLineResources.VstestDiagLogOutputPath, EqtTrace.LogFile); 245string warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.SomeTestsUnavailableAfterFiltering, _discoveredTestCount, missingFilters); 262warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoTestsAvailableAfterFiltering, _discoveredTestCount, string.Join(", ", _selectedTestNames!)); 267warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.NoTestsAvailableInSources, string.Join(", ", _commandLineOptions.Sources)); 271warningMessage = string.Format(CultureInfo.CurrentCulture, CommandLineResources.StringFormatToJoinTwoStrings, warningMessage, CommandLineResources.SuggestTestAdapterPathIfNoTestsIsFound); 378_output.Warning(false, CommandLineResources.SuggestTestAdapterPathIfNoTestsIsFound);
src\vstest\src\vstest.console\Processors\RunTestsArgumentProcessor.cs (6)
18using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 67public override string HelpContentResourceName => CommandLineResources.RunTestsArgumentHelp; 150throw new CommandLineException(CommandLineResources.MissingTestSourceFile); 155Output.WriteLine(CommandLineResources.StartingExecution, OutputLevel.Information); 160Output.Information(false, CommandLineResources.VstestDiagLogOutputPath, EqtTrace.LogFile); 238_output.Warning(false, CommandLineResources.SuggestTestAdapterPathIfNoTestsIsFound);
src\vstest\src\vstest.console\Processors\TestAdapterLoadingStrategyArgumentProcessor.cs (7)
16using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 75public override string HelpContentResourceName => CommandLineResources.TestAdapterLoadingStrategyHelp; 133throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestAdapterLoadingStrategyValueInvalidRecursive, $"{nameof(TestAdapterLoadingStrategy.Explicit)}, {nameof(TestAdapterLoadingStrategy.NextToSource)}")); 168throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestAdapterLoadingStrategyValueInvalid, value)); 185throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestAdapterPathValueRequiredWhenStrategyXIsUsed, nameof(TestAdapterLoadingStrategy.Explicit))); 222string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidTestAdapterPathCommand, adapterPath, CommandLineResources.TestAdapterPathDoesNotExist)
src\vstest\src\vstest.console\Processors\TestAdapterPathArgumentProcessor.cs (3)
16using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 74public override string HelpContentResourceName => CommandLineResources.TestAdapterPathHelp; 137string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestAdapterPathValueRequired));
src\vstest\src\vstest.console\Processors\TestCaseFilterArgumentProcessor.cs (3)
9using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 61public override string HelpContentResourceName => CommandLineResources.TestCaseFilterArgumentHelp; 101throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.TestCaseFilterValueRequired));
src\vstest\src\vstest.console\Processors\TestSessionCorrelationIdProcessor.cs (2)
8using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 83throw new CommandLineException(CommandLineResources.InvalidTestSessionCorrelationId);
src\vstest\src\vstest.console\Processors\UseVsixExtensionsArgumentProcessor.cs (4)
12using CommandLineResources = Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources; 95throw new CommandLineException(string.Format(CultureInfo.CurrentCulture, CommandLineResources.UseVsixExtensionsValueRequired)); 101string.Format(CultureInfo.CurrentCulture, CommandLineResources.InvalidUseVsixExtensionsCommand, argument)); 104_output.Warning(false, string.Format(CultureInfo.CurrentCulture, CommandLineResources.UseVsixExtensionsDeprecation));
src\vstest\src\vstest.console\Resources\Resources.Designer.cs (1)
42global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Microsoft.VisualStudio.TestPlatform.CommandLine.Resources.Resources", typeof(Resources).Assembly);
src\vstest\src\vstest.console\TestPlatformHelpers\TestRequestManager.cs (2)
360Resources.Resources.RunsettingsWithDCErrorMessage, 1029registrar?.LogWarning(Resources.Resources.Framework35NotSupported);