10 references to ToImmutableSortedSet
Aspire.Dashboard.Components.Tests (4)
Controls\TextVisualizerDialogTests.cs (4)
49Assert.Equal([TextVisualizerDialog.JsonFormat, TextVisualizerDialog.PlaintextFormat], instance.EnabledOptions.ToImmutableSortedSet()); 71Assert.Equal([TextVisualizerDialog.PlaintextFormat, TextVisualizerDialog.XmlFormat], instance.EnabledOptions.ToImmutableSortedSet()); 97Assert.Equal([TextVisualizerDialog.PlaintextFormat, TextVisualizerDialog.XmlFormat], instance.EnabledOptions.ToImmutableSortedSet()); 112Assert.Equal([TextVisualizerDialog.PlaintextFormat], instance.EnabledOptions.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());