11 references to ToImmutableSortedSet
Aspire.Dashboard.Components.Tests (4)
Controls\TextVisualizerDialogTests.cs (4)
51Assert.Equal([TextVisualizerDialog.JsonFormat, TextVisualizerDialog.PlaintextFormat], instance.EnabledOptions.ToImmutableSortedSet()); 74Assert.Equal([TextVisualizerDialog.PlaintextFormat, TextVisualizerDialog.XmlFormat], instance.EnabledOptions.ToImmutableSortedSet()); 101Assert.Equal([TextVisualizerDialog.PlaintextFormat, TextVisualizerDialog.XmlFormat], instance.EnabledOptions.ToImmutableSortedSet()); 117Assert.Equal([TextVisualizerDialog.PlaintextFormat], instance.EnabledOptions.ToImmutableSortedSet());
Microsoft.CodeAnalysis.Analyzers (1)
MetaAnalyzers\DiagnosticDescriptorCreationAnalyzer.cs (1)
469ImmutableSortedSet<string> sortedAnalyzerNames = analyzerToDescriptorLocationsMap.Keys.ToImmutableSortedSet();
Microsoft.CodeAnalysis.ExpressionEvaluator.ExpressionCompiler (1)
PDB\MethodDebugInfo.cs (1)
107var result = scopesBuilder.ToImmutableSortedSet();
Microsoft.CodeAnalysis.UnitTests (1)
Collections\ImmutableSegmentedHashSetTest.cs (1)
64var sorted = System.Collections.Immutable.ImmutableSortedSet.ToImmutableSortedSet(set);
Microsoft.CodeAnalysis.VisualBasic.ExpressionCompiler (1)
EvaluationContext.vb (1)
212Dim result = builder.ToImmutableSortedSet()
Microsoft.DotNet.XUnitAssert.Tests (3)
EquivalenceAssertsTests.cs (1)
1148 Assert.Equivalent(new[] { 1, 2, 3 }.ToImmutableList(), new[] { 1, 2, 3 }.ToImmutableSortedSet());
SetAssertsTests.cs (2)
57 assertFailure(() => Assert.Contains("FORTY-two", set.ToImmutableSortedSet())); 77 Assert.DoesNotContain("FORTY-two", set.ToImmutableSortedSet());