1355 references to Join
aspire (37)
Commands\Sdk\SdkDumpCommand.cs (6)
292var flagStr = flags.Count > 0 ? string.Format(CultureInfo.InvariantCulture, " [{0}]", string.Join(", ", flags)) : "";
319sb.AppendLine(string.Format(CultureInfo.InvariantCulture, "{0} = {1}", t.TypeId, string.Join(" | ", t.Values)));
328var paramStr = string.Join(", ", c.Parameters.Select(p =>
399var flagStr = flags.Count > 0 ? string.Format(CultureInfo.InvariantCulture, " ({0})", string.Join(", ", flags)) : "";
437sb.AppendLine(string.Format(CultureInfo.InvariantCulture, " {0}", string.Join(" | ", t.Values)));
456var paramStr = string.Join(", ", c.Parameters.Select(p =>
Aspire.Azure.AI.Inference (1)
Aspire.Azure.Messaging.EventHubs.Tests (2)
Aspire.Azure.Security.KeyVault.Tests (2)
Aspire.Cli.Tests (4)
Aspire.Dashboard (17)
Aspire.Dashboard.Components.Tests (1)
Aspire.Dashboard.Tests (4)
Aspire.EndToEnd.Tests (3)
Aspire.Hosting (32)
ApplicationModel\ResourceNotificationService.cs (9)
125_logger.LogDebug("Waiting for resource '{ResourceName}' to enter one of the target state: {TargetStates}", resourceName, string.Join(", ", targetStates));
131$"Resource '{resourceName}' failed to reach one of the target states: [{string.Join(", ", targetStates)}] before the operation was cancelled.",
697string.Join(" ", newState.Urls.Select(u => $"{u.Name} = {u.Url}")),
698string.Join(" ", newState.EnvironmentVariables.Where(e => e.IsFromSpec).Select(e => $"{e.Name} = {e.Value}")),
699string.Join(" ", newState.Properties.Select(p => $"{p.Name} = {Stringify(p.Value)}")),
700string.Join(" ", newState.HealthReports.Select(p => $"{p.Name} = {Stringify(p.Status)}")),
701string.Join(" ", newState.Commands.Select(c => $"{c.Name} ({c.DisplayName}) = {Stringify(c.State)}")));
705IEnumerable<int> ints => string.Join(", ", ints.Select(i => i.ToString(CultureInfo.InvariantCulture))),
706IEnumerable<string> strings => string.Join(", ", strings.Select(s => s)),
Pipelines\DistributedApplicationPipeline.cs (10)
220var registryNames = string.Join(", ", registryTargetAnnotations.Select(a => a.Registry is IResource res ? res.Name : a.Registry.ToString()));
432var availableSteps = string.Join(", ", allSteps.Select(s => $"'{s.Name}'"));
631? $"Step '{step.Name}' cannot run because {(failedDeps.Count == 1 ? "dependency" : "dependencies")} {string.Join(", ", failedDeps.Select(d => $"'{d}'"))} failed"
730? $"Multiple pipeline steps failed: {string.Join(", ", failedStepNames.Distinct())}"
804$"Circular dependency detected in pipeline steps: {string.Join(" → ", cycle)}");
925sb.AppendLine(string.Join(", ", depStatuses));
942sb.AppendLine(CultureInfo.InvariantCulture, $" Tags: {string.Join(", ", sortedTags)}");
1008sb.AppendLine(CultureInfo.InvariantCulture, $" Direct dependencies: {string.Join(", ", sortedDeps)}");
1045var parallelSteps = string.Join(" | ", stepsAtLevel);
1201sb.Append(CultureInfo.InvariantCulture, $" [depends on: {string.Join(", ", step.DependsOnSteps)}]");
Aspire.Hosting.Azure.AppContainers (2)
Aspire.Hosting.Azure.AppService (1)
Aspire.Hosting.Azure.KeyVault (1)
Aspire.Hosting.Azure.Network (1)
Aspire.Hosting.Azure.Tests (2)
Aspire.Hosting.CodeGeneration.Python (2)
Aspire.Hosting.CodeGeneration.TypeScript (22)
AtsTypeScriptCodeGenerator.cs (22)
208return string.Join(" | ", memberTypes);
768var publicParamsString = string.Join(", ", publicParamDefs);
778var internalParamsString = string.Join(", ", internalParamDefs);
899Write(string.Join(", ", allParamNames));
936WriteLine($" const rpcArgs: Record<string, unknown> = {{ {string.Join(", ", requiredArgs)} }};");
996var paramsString = string.Join(", ", publicParamDefs);
1008var argsString = string.Join(", ", forwardArgs);
1085var paramsString = string.Join(", ", paramDefs);
1087? $"{{ {string.Join(", ", paramArgs)} }}"
1159var paramsString = paramList.Count > 0 ? string.Join(", ", paramList) : "";
1285var destructure = string.Join(", ", paramNames);
1311WriteLine($" {returnPrefix}await {callbackName}({string.Join(", ", callArgs)});");
1823var paramsString = string.Join(", ", paramDefs);
1853WriteLine($" const rpcArgs: Record<string, unknown> = {{ {string.Join(", ", requiredArgs)} }};");
1903var paramsString = string.Join(", ", paramDefs);
1931WriteLine($" const rpcArgs: Record<string, unknown> = {{ {string.Join(", ", requiredArgs)} }};");
1988var publicParamsString = string.Join(", ", publicParamDefs);
1998var internalParamsString = string.Join(", ", internalParamDefs);
2054Write(string.Join(", ", userParams.Select(p => p.Name)));
2097Write(string.Join(", ", userParams.Select(p => p.Name)));
2183var paramsString = string.Join(", ", publicParamDefs);
2195var argsString = string.Join(", ", forwardArgs);
Aspire.Hosting.DevTunnels (3)
Aspire.Hosting.Docker (2)
Aspire.Hosting.Docker.Tests (1)
Aspire.Hosting.Garnet.Tests (1)
Aspire.Hosting.Maui (2)
Aspire.Hosting.Maui.Tests (1)
Aspire.Hosting.Redis.Tests (1)
Aspire.Hosting.Testing.Tests (2)
Aspire.Hosting.Tests (11)
Aspire.Hosting.Valkey.Tests (1)
Aspire.Playground.Tests (2)
Aspire.Templates.Tests (5)
aspire-nuget (2)
BuildActionTelemetryTable (1)
Client.ClientBase.IntegrationTests (12)
ChannelBaseTests.4.0.0.cs (6)
88string actual = String.Join(",", eventsCalled);
93actual = String.Join(",", proxyEventsCalled);
142string actual = String.Join(",", eventsCalled);
147actual = String.Join(",", proxyEventsCalled);
193string actual = String.Join(",", eventsCalled);
198actual = String.Join(",", proxyEventsCalled);
ClientBaseTests.4.0.0.cs (6)
563string actual = String.Join(",", eventsCalled);
568actual = String.Join(",", proxyEventsCalled);
617string actual = String.Join(",", eventsCalled);
622actual = String.Join(",", proxyEventsCalled);
666string actual = String.Join(",", eventsCalled);
671actual = String.Join(",", proxyEventsCalled);
ClientSample (1)
ConfigurationSchemaGenerator (3)
CSharpSyntaxGenerator (1)
dotnet-dev-certs (2)
dotnet-getdocument (3)
dotnet-openapi (1)
dotnet-sql-cache (1)
dotnet-svcutil-lib (1)
dotnet-user-jwts (9)
dotnet-user-secrets (1)
GenerateDocumentationAndConfigFiles (13)
GetDocument.Insider (3)
HeaderPropagationSample (1)
HttpStress (1)
IIS.FunctionalTests (1)
IIS.LongTests (1)
IIS.Microbenchmarks (1)
IIS.NewHandler.FunctionalTests (1)
IIS.ShadowCopy.Tests (1)
IISExpress.FunctionalTests (1)
illink (2)
ILLink.RoslynAnalyzer (3)
Infrastructure.Common (3)
InMemory.FunctionalTests (7)
InProcessWebSite (2)
installer.tasks (3)
InteractiveHost.UnitTests (1)
Interop.FunctionalTests (1)
IOperationGenerator (1)
Metrics (12)
Metrics.Legacy (12)
Microsoft.Agents.AI.ProjectTemplates.Tests (1)
Microsoft.Analyzers.Local (1)
Microsoft.Arcade.Common (2)
Microsoft.Arcade.Test.Common (4)
Microsoft.AspNetCore (1)
Microsoft.AspNetCore.Analyzer.Testing (1)
Microsoft.AspNetCore.Antiforgery.Microbenchmarks (1)
Microsoft.AspNetCore.App.Analyzers (3)
Microsoft.AspNetCore.App.Analyzers.Test (4)
Microsoft.AspNetCore.Authentication.Cookies (1)
Microsoft.AspNetCore.Authentication.Core (3)
Microsoft.AspNetCore.Authentication.Facebook (2)
Microsoft.AspNetCore.Authentication.JwtBearer (1)
Microsoft.AspNetCore.Authentication.JwtBearer.Tools.Tests (2)
Microsoft.AspNetCore.Authentication.OAuth (1)
Microsoft.AspNetCore.Authentication.OpenIdConnect (1)
Microsoft.AspNetCore.Authentication.Test (1)
Microsoft.AspNetCore.Authorization (2)
Microsoft.AspNetCore.Authorization.Policy (1)
Microsoft.AspNetCore.BrowserTesting (1)
Microsoft.AspNetCore.Components (7)
Microsoft.AspNetCore.Components.Analyzers (1)
Microsoft.AspNetCore.Components.Analyzers.Tests (1)
Microsoft.AspNetCore.Components.Endpoints (4)
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Microsoft.AspNetCore.Components.Performance (1)
Microsoft.AspNetCore.Components.SdkAnalyzers (1)
Microsoft.AspNetCore.Components.SdkAnalyzers.Tests (1)
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Web.Tests (1)
Microsoft.AspNetCore.Components.WebAssembly (1)
Microsoft.AspNetCore.Components.WebView.WindowsForms (1)
Microsoft.AspNetCore.Components.WebView.Wpf (1)
Microsoft.AspNetCore.CookiePolicy.Test (1)
Microsoft.AspNetCore.DataProtection (1)
Microsoft.AspNetCore.DataProtection.MicroBenchmarks (1)
Microsoft.AspNetCore.DataProtection.Tests (2)
Microsoft.AspNetCore.DeveloperCertificates.XPlat (1)
Microsoft.AspNetCore.Diagnostics (4)
Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore (2)
Microsoft.AspNetCore.Diagnostics.HealthChecks (1)
Microsoft.AspNetCore.Grpc.JsonTranscoding (10)
Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests (11)
HttpRoutePatternParserTests.cs (11)
33Assert.Equal("shelf", string.Join(".", v.FieldPath));
40Assert.Equal("book", string.Join(".", v.FieldPath));
63Assert.Equal("book.name", string.Join(".", v.FieldPath));
155Assert.Equal("a.b.c", string.Join(".", v.FieldPath));
174Assert.Equal("a.b.c", string.Join(".", v.FieldPath));
193Assert.Equal("b", string.Join(".", v.FieldPath));
213Assert.Equal("b", string.Join(".", v.FieldPath));
234Assert.Equal("b", string.Join(".", v.FieldPath));
254Assert.Equal("b", string.Join(".", v.FieldPath));
276Assert.Equal("x.y.z", string.Join(".", v.FieldPath));
297Assert.Equal("b", string.Join(".", v.FieldPath));
Microsoft.AspNetCore.Grpc.Microbenchmarks (1)
Microsoft.AspNetCore.Grpc.Swagger (6)
Microsoft.AspNetCore.HostFiltering (1)
Microsoft.AspNetCore.Hosting (2)
Microsoft.AspNetCore.Http.Abstractions.Microbenchmarks (1)
Microsoft.AspNetCore.Http.Extensions (2)
Microsoft.AspNetCore.Http.Microbenchmarks (1)
Microsoft.AspNetCore.Http.RequestDelegateGenerator (5)
Microsoft.AspNetCore.Http.Tests (1)
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (4)
Microsoft.AspNetCore.Identity.InMemory.Test (5)
Microsoft.AspNetCore.Identity.Test (4)
Microsoft.AspNetCore.Identity.UI (1)
Microsoft.AspNetCore.InternalTesting (3)
Microsoft.AspNetCore.InternalTesting.Tests (2)
Microsoft.AspNetCore.JsonPatch (1)
Microsoft.AspNetCore.Mvc.Abstractions.Test (7)
ModelBinding\ModelStateDictionaryTest.cs (7)
1608var key = string.Join(".", Enumerable.Repeat("foo", stackLimit + 1));
1626var key = string.Join(".", Enumerable.Repeat("foo", stackLimit + 1));
1648var key = string.Join(".", Enumerable.Repeat("foo", stateDepth + 1));
1666var key = string.Join(".", Enumerable.Repeat("foo", stateDepth + 1));
1683var key = string.Join(".", Enumerable.Repeat("foo", stateDepth + 1));
1701var key = string.Join(".", Enumerable.Repeat("foo", stateDepth + 1));
1719var key = string.Join(".", Enumerable.Repeat("foo", stateDepth + 1));
Microsoft.AspNetCore.Mvc.ApiExplorer (1)
Microsoft.AspNetCore.Mvc.Core (11)
Microsoft.AspNetCore.Mvc.Core.Test (3)
Microsoft.AspNetCore.Mvc.Core.TestCommon (1)
Microsoft.AspNetCore.Mvc.DataAnnotations (2)
Microsoft.AspNetCore.Mvc.Razor (3)
Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation (1)
Microsoft.AspNetCore.Mvc.RazorPages (1)
Microsoft.AspNetCore.Mvc.TagHelpers (2)
Microsoft.AspNetCore.Mvc.TagHelpers.Test (2)
Microsoft.AspNetCore.Mvc.ViewFeatures (6)
Microsoft.AspNetCore.Mvc.ViewFeatures.Test (6)
Microsoft.AspNetCore.OpenApi (2)
Microsoft.AspNetCore.OpenApi.Microbenchmarks (1)
Microsoft.AspNetCore.OpenApi.SourceGenerators (2)
Microsoft.AspNetCore.OutputCaching.Microbenchmarks (1)
Microsoft.AspNetCore.Owin.Microbenchmarks (1)
Microsoft.AspNetCore.RequestDecompression.Microbenchmarks (1)
Microsoft.AspNetCore.ResponseCaching.Microbenchmarks (1)
Microsoft.AspNetCore.ResponseCompression.Microbenchmarks (1)
Microsoft.AspNetCore.Routing (8)
Microsoft.AspNetCore.Routing.Microbenchmarks (1)
Microsoft.AspNetCore.Routing.Tests (3)
Microsoft.AspNetCore.Security.Microbenchmarks (1)
Microsoft.AspNetCore.Server.HttpSys (2)
Microsoft.AspNetCore.Server.HttpSys.Microbenchmarks (1)
Microsoft.AspNetCore.Server.IIS (2)
Microsoft.AspNetCore.Server.IntegrationTesting (1)
Microsoft.AspNetCore.Server.Kestrel.Core (4)
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (2)
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
Microsoft.AspNetCore.Shared.Tests (4)
Microsoft.AspNetCore.SignalR.Client.Core (2)
Microsoft.AspNetCore.SignalR.Common (4)
Microsoft.AspNetCore.SignalR.Microbenchmarks (1)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (1)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
Microsoft.AspNetCore.TestHost.Tests (1)
Microsoft.AspNetCore.WebSockets.Microbenchmarks (1)
Microsoft.AspNetCore.WebUtilities.Microbenchmarks (1)
Microsoft.Build.Tasks.CodeAnalysis.UnitTests (6)
Microsoft.Cci.Extensions (3)
Microsoft.CodeAnalysis (10)
Microsoft.CodeAnalysis.Analyzers (17)
Microsoft.CodeAnalysis.AnalyzerUtilities (14)
Microsoft.CodeAnalysis.BannedApiAnalyzers (15)
Microsoft.CodeAnalysis.CodeStyle (11)
Microsoft.CodeAnalysis.CodeStyle.Fixes (5)
Microsoft.CodeAnalysis.CSharp (18)
Microsoft.CodeAnalysis.CSharp.CodeStyle (2)
Microsoft.CodeAnalysis.CSharp.CommandLine.UnitTests (2)
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (6)
Microsoft.CodeAnalysis.CSharp.Emit.UnitTests (10)
Microsoft.CodeAnalysis.CSharp.Emit2.UnitTests (4)
Microsoft.CodeAnalysis.CSharp.Emit3.UnitTests (7)
Microsoft.CodeAnalysis.CSharp.EndToEnd.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Features (7)
Microsoft.CodeAnalysis.CSharp.Features.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.IOperation.UnitTests (1)
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (21)
Semantics\DelegateTypeTests.cs (8)
13259var manyParams = string.Join(", ", range.Select(i => $"int p{i}"));
13260var manyArgs = string.Join(", ", range.Select(i => $"arg{i}: {i * 10}"));
13261var manyTypes = string.Join(",", range.Select(_ => "System.Int32"));
13280var fewArgs = string.Join(", ", range.Skip(1).Select(i => $"arg{i}: {i * 10}"));
13309var manyParams = string.Join(", ", range.Select(i => $"int p{i}"));
13310var manyTypes = string.Join(",", range.Select(_ => "System.Int32"));
13332var manyParams = string.Join(", ", range.Select(i => $"int p{i}"));
13333var manyTypes = string.Join(",", range.Select(_ => "System.Int32"));
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (9)
Microsoft.CodeAnalysis.CSharp.Syntax.UnitTests (7)
Microsoft.CodeAnalysis.CSharp.Test.Utilities (3)
Microsoft.CodeAnalysis.CSharp.Workspaces (3)
Microsoft.CodeAnalysis.CSharp.Workspaces.UnitTests (2)
Microsoft.CodeAnalysis.EditorFeatures (7)
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (6)
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (8)
ValueTracking\AbstractBaseValueTrackingTests.cs (2)
45Assert.True(itemInfo.Length == items.Length, $"GetTrackedItemsAsync\n\texpected: [{string.Join(",", itemInfo.Select(p => p.text))}]\n\t actual: [{string.Join(",", items)}]");
58Assert.True(childInfo.Length == children.Length, $"GetTrackedItemsAsync on [{item}]\n\texpected: [{string.Join(",", childInfo.Select(p => p.text))}]\n\t actual: [{string.Join(",", children)}]");
Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities (2)
Microsoft.CodeAnalysis.Extensions.Package (1)
Microsoft.CodeAnalysis.Features (44)
ExtractMethod\MethodExtractor.Analyzer.cs (4)
241string.Join(", ", namesWithAnonymousTypes)));
254string.Join(", ", failedVariables.Select(v => v.Name))));
277return new OperationStatus(succeeded: true, string.Format(FeaturesResources.Asynchronous_method_cannot_have_ref_out_parameters_colon_bracket_0_bracket, string.Join(", ", names)));
895return new OperationStatus(succeeded: true, string.Format(FeaturesResources.Assigning_to_readonly_fields_must_be_done_in_a_constructor_colon_bracket_0_bracket, string.Join(", ", names)));
Microsoft.CodeAnalysis.Features.Test.Utilities (5)
Microsoft.CodeAnalysis.Features.UnitTests (6)
Microsoft.CodeAnalysis.InteractiveHost (1)
Microsoft.CodeAnalysis.LanguageServer (2)
Microsoft.CodeAnalysis.LanguageServer.Protocol (6)
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (8)
Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers (14)
Microsoft.CodeAnalysis.PublicApiAnalyzers (13)
Microsoft.CodeAnalysis.PublicApiAnalyzers.CodeFixes (3)
Microsoft.CodeAnalysis.Rebuild.UnitTests (2)
Microsoft.CodeAnalysis.Remote.ServiceHub.UnitTests (1)
Microsoft.CodeAnalysis.Remote.Workspaces (1)
Microsoft.CodeAnalysis.ResxSourceGenerator (18)
AbstractResxGenerator.cs (6)
208var text = string.Join("", exceptionLines.Select(line => "#error " + line + Environment.NewLine));
520{{string.Join(Environment.NewLine, getResourceStringAttributes.Select(attr => memberIndent + attr))}}
907public string GetArgumentNames() => string.Join(", ", _arguments.Select(a => """
913public string GetArguments() => string.Join(", ", _arguments.Select(GetArgName));
920return string.Join(", ", _arguments.Select(a => $"object{(supportsNullable ? "?" : "")} " + GetArgName(a)));
922return string.Join(", ", _arguments.Select(GetArgName));
Microsoft.CodeAnalysis.Scripting (1)
Microsoft.CodeAnalysis.Scripting.TestUtilities (1)
Microsoft.CodeAnalysis.Test.Utilities (30)
Compilation\CompilationExtensions.cs (4)
90Assert.True(emitResult.Success, "Diagnostics:\r\n" + string.Join("\r\n", emitResult.Diagnostics.Select(d => d.ToString())));
104Assert.True(emitResult.Success, "Diagnostics: " + string.Join(", ", emitResult.Diagnostics.Select(d => d.ToString())));
179Select(t => $"{t.Item1.Identity.Name}, Version={t.Item1.Identity.Version}{(t.Item2.IsEmpty ? "" : ": " + string.Join(",", t.Item2))}");
187Select(t => $"{t.Item1.Identity.Name}{(t.Item2.IsEmpty ? "" : ": " + string.Join(",", t.Item2))}");
Diagnostics\CommonDiagnosticAnalyzers.cs (8)
157" + String.Join("," + Environment.NewLine + " ", Descriptor1.CustomTags.Select(s => $"\"{s}\"")) + @"
171" + String.Join("," + Environment.NewLine + " ", Descriptor2.CustomTags.Select(s => $"\"{s}\"")) + @"
234" + String.Join("," + Environment.NewLine + " ", Descriptor1.CustomTags.Select(s => $"\"{s}\"")) + @"
248" + String.Join("," + Environment.NewLine + " ", Descriptor2.CustomTags.Select(s => $"\"{s}\"")) + @"
376" + string.Join("," + Environment.NewLine + " ", suppressionKinds.Select(s => $"\"{s}\"")) + @"
474" + string.Join("," + Environment.NewLine + " ", Descriptor1.CustomTags.Select(s => $"\"{s}\"")) + @"
495" + String.Join("," + Environment.NewLine + " ", Descriptor2.CustomTags.Select(s => $"\"{s}\"")) + @"
2417public string GetSortedSymbolCallbacksString() => string.Join(", ", _symbolCallbacks.Select(s => s.Name).Order());
Microsoft.CodeAnalysis.UnitTests (5)
Microsoft.CodeAnalysis.Workspaces (21)
Storage\SQLite\v2\SQLitePersistentStorage.Accessor.cs (5)
72({string.Join(",", _allColumns.Select(c => c.name))}) values ({string.Join(",", _allColumns.Select(n => "?"))})
80{string.Join(" and ", _primaryKeyColumns.Select(k => $"{k.name} = ?"))}
113{string.Join(",", _allColumns.Select(k => $"{k.name} {k.type} not null"))},
114primary key({string.Join(",", _primaryKeyColumns.Select(k => k.name))})
Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost (5)
Microsoft.CodeAnalysis.Workspaces.MSBuild.UnitTests (4)
VisualStudioMSBuildWorkspaceTests.cs (2)
1616await AssertCSParseOptionsAsync("DEBUG,TRACE,X,Y", options => string.Join(",", options.PreprocessorSymbolNames));
1623await AssertCSParseOptionsAsync("DEBUG,TRACE", options => string.Join(",", options.PreprocessorSymbolNames));
Microsoft.CodeAnalysis.Workspaces.Test.Utilities (4)
Microsoft.CodeAnalysis.Workspaces.UnitTests (2)
Microsoft.DotNet.Arcade.Sdk (5)
Microsoft.DotNet.Arcade.Sdk.Tests (1)
Microsoft.DotNet.Baselines.Tasks (1)
Microsoft.DotNet.Build.Manifest (1)
Microsoft.DotNet.Build.Tasks.Feed (13)
Microsoft.DotNet.Build.Tasks.Installers (3)
Microsoft.DotNet.Build.Tasks.Packaging (21)
ValidatePackage.cs (10)
236Log.LogError($"Framework {fx} should support {ContractName} inbox but contained a reference assemblies: {String.Join(", ", compileAssetPaths)}. You may need to add <InboxOnTargetFramework Include=\"{fx.GetShortFolderName()}\" /> to your project.");
245Log.LogError($"Framework {fx} should support {ContractName} inbox but contained a implementation assemblies: {String.Join(", ", runtimeAssetPaths)}. You may need to add <InboxOnTargetFramework Include=\"{fx.GetShortFolderName()}\" /> to your project.");
352Log.LogError($"When targeting {target} {ContractName} will use {implementationAssembly.LocalPath} which targets {implementationAssembly.TargetFramework.GetShortFolderName()} but {String.Join(";", matchingFxAssets.Select(i => i.PackagePath))} targets {fx.GetShortFolderName()} specifically.");
383Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is missing an entry for package {PackageId}. Please run /t:UpdatePackageIndex on this project to commit an update.");
400Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is missing an assembly version entry for {fileVersion} for package {PackageId}. Please run /t:UpdatePackageIndex on this project to commit an update.");
407Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} indicates that assembly version {fileVersion} is contained in non-stable package version {packageVersion} which differs from this package version {thisPackageVersion}.");
417Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is has an assembly version entry(s) for {String.Join(", ", orphanedAssemblyVersions)} which are no longer in package {PackageId}. Please run /t:UpdatePackageIndex on this project to commit an update.");
430Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is missing an baseline entry(s) for native module {PackageId}. Please run /t:UpdatePackageIndex on this project to commit an update.");
441Log.LogError($"PackageIndex from {String.Join(", ", PackageIndexes.Select(i => i.ItemSpec))} is missing ModulesToPackages entry(s) for {String.Join(", ", missingModuleNames)} to package {PackageId}. Please add a an entry for the appropriate package.");
Microsoft.DotNet.Build.Tasks.Packaging.Tests (1)
Microsoft.DotNet.Build.Tasks.VisualStudio (2)
Microsoft.DotNet.Build.Tasks.Workloads (2)
Microsoft.DotNet.GenFacades (2)
Microsoft.DotNet.Helix.Sdk (2)
Microsoft.DotNet.Internal.DependencyInjection.Testing (1)
Microsoft.DotNet.NuGetRepack.Tests (4)
Microsoft.DotNet.Open.Api.Tools.Tests (2)
Microsoft.DotNet.RemoteExecutor (1)
Microsoft.DotNet.SignTool (1)
Microsoft.DotNet.SwaggerGenerator.CodeGenerator (1)
Microsoft.DotNet.XliffTasks (1)
Microsoft.DotNet.XUnitExtensions (1)
Microsoft.DotNet.XUnitV3Extensions (1)
Microsoft.Extensions.AI (2)
Microsoft.Extensions.AI.Abstractions (1)
Microsoft.Extensions.AI.Abstractions.Tests (1)
Microsoft.Extensions.AI.Evaluation.Integration.Tests (20)
Microsoft.Extensions.AI.Evaluation.NLP (2)
Microsoft.Extensions.AI.Evaluation.Safety (3)
Microsoft.Extensions.AI.Integration.Tests (2)
Microsoft.Extensions.AI.Templates.Tests (1)
Microsoft.Extensions.ApiDescription.Client.Tests (5)
Microsoft.Extensions.ApiDescription.Tool.Tests (2)
Microsoft.Extensions.Configuration.Abstractions (1)
Microsoft.Extensions.Configuration.Binder (2)
Microsoft.Extensions.DataIngestion (1)
Microsoft.Extensions.DataIngestion.Abstractions (1)
Microsoft.Extensions.DataIngestion.Tests (6)
Microsoft.Extensions.Diagnostics.Testing.Tests (1)
Microsoft.Extensions.FileSystemGlobbing (2)
Microsoft.Extensions.Identity.Core (4)
Microsoft.Extensions.Identity.Stores (1)
Microsoft.Extensions.Logging.Generators (1)
Microsoft.Extensions.ObjectPool.Microbenchmark (1)
Microsoft.Extensions.Options (3)
Microsoft.Extensions.Options.DataAnnotations (1)
Microsoft.Extensions.Options.SourceGeneration (1)
Microsoft.Extensions.SecretManager.Tools.Tests (2)
Microsoft.Extensions.ServiceDiscovery (2)
Microsoft.Extensions.ServiceDiscovery.Dns.Tests.Fuzzing (1)
Microsoft.Extensions.Validation (1)
Microsoft.Extensions.Validation.ValidationsGenerator (1)
Microsoft.Gen.BuildMetadata.Unit.Tests (1)
Microsoft.Gen.Logging (1)
Microsoft.Interop.LibraryImportGenerator (1)
Microsoft.Maui (2)
Microsoft.Maui.Controls (20)
Microsoft.Maui.Controls.BindingSourceGen (2)
Microsoft.Maui.Controls.Build.Tasks (8)
ModuleDefinitionExtensions.cs (8)
38 var ctorKey = $"{type}.ctor({(parameterTypes == null ? "" : string.Join(",", parameterTypes.Select(SerializeTypeReference)))})";
52 var ctorKey = $"{type}.ctor({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
58 var ctorKey = $"{type}.ctor({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
64 var ctorKey = $"{type}<{(string.Join(",", classArguments))}>.ctor({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
70 var ctorKey = $"{type}<{string.Join(",", classArguments.Select(SerializeTypeReference))}>.ctor({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
220 var methodKey = $"{(isStatic ? "static " : "")}{type}<{(classArguments == null ? "" : string.Join(",", classArguments))}>.({(string.Join(",", Enumerable.Repeat("_", paramCount)))})";
295 return gitr == null ? serialized : $"{serialized}<{string.Join(",", gitr.GenericArguments.Select(SerializeTypeReference))}>";
Microsoft.Maui.Controls.SourceGen (1)
Microsoft.Maui.Controls.Xaml (1)
Microsoft.Maui.Essentials (5)
Microsoft.Maui.Resizetizer (1)
Microsoft.McpServer.ProjectTemplates.Tests (1)
Microsoft.ML.AutoML (9)
Microsoft.ML.AutoML.SourceGenerator (4)
Microsoft.ML.Benchmarks.Tests (2)
Microsoft.ML.CodeGenerator (1)
Microsoft.ML.Core (2)
Microsoft.ML.Data (10)
Transforms\ColumnSelecting.cs (4)
139throw Host.ExceptSchemaMismatch(nameof(inputSchema), "input", string.Join(",", invalidColumns));
478throw _host.ExceptSchemaMismatch(nameof(inputSchema), "input", string.Join(",", invalidColumns));
497throw _host.ExceptSchemaMismatch(nameof(inputSchema), "input", string.Join(",", invalidColumns));
515throw _host.ExceptSchemaMismatch(nameof(input), "input", string.Join(",", invalidColumns));
Microsoft.ML.DataView (2)
Microsoft.ML.Ensemble (2)
Microsoft.ML.FastTree (3)
Microsoft.ML.GenAI.Core (1)
Microsoft.ML.GenAI.LLaMA.Tests (1)
Microsoft.ML.GenAI.Mistral.Tests (1)
Microsoft.ML.GenAI.Phi.Tests (2)
Microsoft.ML.InternalCodeAnalyzer (1)
Microsoft.ML.LightGbm (2)
Microsoft.ML.OnnxTransformer (3)
Microsoft.ML.Parquet (1)
Microsoft.ML.PerformanceTests (1)
Microsoft.ML.ResultProcessor (3)
Microsoft.ML.Samples (24)
Microsoft.ML.SearchSpace (1)
Microsoft.ML.Sweeper (1)
Microsoft.ML.TestFramework (4)
Microsoft.ML.Tests (1)
Microsoft.ML.Tokenizers (3)
Microsoft.ML.Tokenizers.Tests (3)
Microsoft.ML.Transforms (1)
Microsoft.VisualStudio.Extensibility.Testing.Xunit (1)
Microsoft.VisualStudio.LanguageServices (9)
Microsoft.VisualStudio.LanguageServices.CSharp.UnitTests (7)
PersistentStorage\AbstractPersistentStorageTests.cs (6)
56private static readonly string MediumData1 = string.Join(",", Enumerable.Repeat(SmallData1, MediumSize / SmallData1.Length));
57private static readonly string MediumData2 = string.Join(",", Enumerable.Repeat(SmallData2, MediumSize / SmallData2.Length));
59private static readonly string LargeData1 = string.Join(",", Enumerable.Repeat(SmallData1, LargeSize / SmallData1.Length));
60private static readonly string LargeData2 = string.Join(",", Enumerable.Repeat(SmallData2, LargeSize / SmallData2.Length));
62private static readonly string ExtraLargeData1 = string.Join(",", Enumerable.Repeat(SmallData1, ExtraLargeSize / SmallData1.Length));
63private static readonly string ExtraLargeData2 = string.Join(",", Enumerable.Repeat(SmallData2, ExtraLargeSize / SmallData2.Length));
Microsoft.VisualStudio.LanguageServices.Implementation (3)
PresentationFramework (2)
Replay (1)
RepoTasks (2)
Roslyn.Diagnostics.Analyzers (14)
Roslyn.Diagnostics.CSharp.Analyzers (2)
Roslyn.Test.PdbUtilities (2)
Roslyn.VisualStudio.Next.UnitTests (2)
RoutingWebSite (1)
RunTests (8)
SemanticSearch.BuildTask (2)
Shared.Tests (1)
Swaggatherer (4)
System.Composition.Hosting (2)
System.Composition.Runtime (2)
System.Net.Requests (1)
System.Net.WebSockets.Client (2)
System.Private.CoreLib.Generators (2)
System.Private.Windows.Core (1)
System.Private.Xml (1)
System.Reflection.Metadata (1)
System.ServiceModel.Http (1)
System.ServiceModel.Primitives.Tests (21)
Channels\CommunicationObjectTest.cs (9)
34string actualOpens = String.Join(",", openMethodsCalled);
40string actualCloses = String.Join(",", closeMethodsCalled);
70string actualOpens = String.Join(",", openMethodsCalled);
76string actualCloses = String.Join(",", closeMethodsCalled);
98string actualCloses = String.Join(",", closeMethodsCalled);
126string actualOpens = String.Join(",", openEventsFired);
132string actualCloses = String.Join(",", closeEventsFired);
161string actualOpens = String.Join(",", openEventsFired);
167string actualCloses = String.Join(",", closeEventsFired);
Channels\CustomChannelTest.cs (12)
81string actualOpens = String.Join(",", channelOpenMethodsCalled);
86string actualCloses = String.Join(",", channelCloseMethodsCalled);
91actualOpens = String.Join(",", factoryOpenMethodsCalled);
96actualCloses = String.Join(",", factoryCloseMethodsCalled);
178string actualOpens = String.Join(",", channelOpenMethodsCalled);
183string actualCloses = String.Join(",", channelCloseMethodsCalled);
188actualOpens = String.Join(",", factoryOpenMethodsCalled);
193actualCloses = String.Join(",", factoryCloseMethodsCalled);
371string actualOpens = String.Join(",", channelOpenMethodsCalled);
376string actualCloses = String.Join(",", channelCloseMethodsCalled);
381actualOpens = String.Join(",", factoryOpenMethodsCalled);
386actualCloses = String.Join(",", factoryCloseMethodsCalled);
System.Text.Json.SourceGeneration (2)
System.Text.RegularExpressions.Generator (3)
System.Threading.Tasks.Dataflow (1)
System.Windows.Forms.Design (2)
System.Windows.Forms.Design.Tests (1)
System.Windows.Forms.Primitives.TestUtilities (1)
Templates.Blazor.Tests (4)
Templates.Blazor.WebAssembly.Auth.Tests (4)
Templates.Blazor.WebAssembly.Tests (4)
Templates.Mvc.Tests (4)
Templates.Tests (4)
Test.Utilities (11)
TestDiscoveryWorker (1)
Text.Analyzers (14)
Text.Analyzers.UnitTests (2)
VBCSCompiler (1)
VBCSCompiler.UnitTests (2)
Wasm.Performance.ConsoleHost (1)
XmlFormattersWebSite (1)
xunit.assert (6)
Sdk\ArgumentFormatter.cs (3)
267 : string.Format(CultureInfo.CurrentCulture, "Task<{0}>", string.Join(",", typeParameters.Select(t => FormatTypeName(t))));
355 var formattedParameters = string.Join(", ", parameters.Take(MAX_OBJECT_ITEM_COUNT).Select(p => string.Format(CultureInfo.CurrentCulture, "{0} = {1}", p.name, p.value)));
532 result = string.Format(CultureInfo.CurrentCulture, "{0}<{1}>", result, string.Join(", ", typeInfo.GenericTypeArguments.Select(t => FormatTypeName(t))));
xunit.console (9)
common\AssemblyResolution\DependencyContextAssemblyCache.cs (8)
57internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache..ctor] Runtime graph: [{string.Join(",", dependencyContext.RuntimeGraph.Select(x => $"'{x.Runtime}'"))}]"));
62internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache..ctor] Compatible runtimes: [{string.Join(",", compatibleRuntimes.Select(x => $"'{x}'"))}]"));
76internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache..ctor] Managed assembly map: [{string.Join(",", managedAssemblyMap.Keys.Select(k => $"'{k}'").OrderBy(k => k, StringComparer.OrdinalIgnoreCase))}]"));
90internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache..ctor] Unmanaged assembly map: [{string.Join(",", unmanagedAssemblyMap.Keys.Select(k => $"'{k}'").OrderBy(k => k, StringComparer.OrdinalIgnoreCase))}]"));
253internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache.ResolveManagedAssembly] Resolving '{assemblyName}', found a resolved path, but could not map a filename in [{string.Join(",", assemblies.OrderBy(k => k, StringComparer.OrdinalIgnoreCase).Select(k => $"'{k}'"))}]"));
259internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache.ResolveManagedAssembly] Resolving '{assemblyName}', found in dependency map, but unable to resolve a path in [{string.Join(",", assetGroup.AssetPaths.OrderBy(k => k, StringComparer.OrdinalIgnoreCase).Select(k => $"'{k}'"))}]"));
286internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache.ResolveUnmanagedLibrary] Found a resolved path, but could not map a filename in [{string.Join(",", assemblies.OrderBy(k => k, StringComparer.OrdinalIgnoreCase).Select(k => $"'{k}'"))}]"));
291internalDiagnosticsMessageSink.OnMessage(new _DiagnosticMessage($"[DependencyContextAssemblyCache.ResolveUnmanagedLibrary] Found in dependency map, but unable to resolve a path in [{string.Join(",", assetGroup.AssetPaths.OrderBy(k => k, StringComparer.OrdinalIgnoreCase).Select(k => $"'{k}'"))}]"));