diff --git a/eng/SourceBuildPrebuiltBaseline.xml b/eng/SourceBuildPrebuiltBaseline.xml
index 592d3954059e8..8451ebe80c273 100644
--- a/eng/SourceBuildPrebuiltBaseline.xml
+++ b/eng/SourceBuildPrebuiltBaseline.xml
@@ -13,13 +13,15 @@
-
+
-
+
diff --git a/src/Compilers/CSharp/Test/Emit2/Emit/LocalStateTracing/LocalStateTracingTests.cs b/src/Compilers/CSharp/Test/Emit2/Emit/LocalStateTracing/LocalStateTracingTests.cs
index 4315771543ce5..000ddcb8d0bce 100644
--- a/src/Compilers/CSharp/Test/Emit2/Emit/LocalStateTracing/LocalStateTracingTests.cs
+++ b/src/Compilers/CSharp/Test/Emit2/Emit/LocalStateTracing/LocalStateTracingTests.cs
@@ -5520,7 +5520,7 @@ static void Main()
Main: Entered
Main: L'a' = 1
Main: L'b' = 2
-Main: L4 = System.Linq.Enumerable+SelectArrayIterator`2[System.Int32,System.Int32]
+Main: L4 = System.Linq.Enumerable+ArraySelectIterator`2[System.Int32,System.Int32]
Main: Entered lambda 'b__0'
b__0: P'item'[0] = 10
b__0: Returned
diff --git a/src/Features/CSharpTest/Microsoft.CodeAnalysis.CSharp.Features.UnitTests.csproj b/src/Features/CSharpTest/Microsoft.CodeAnalysis.CSharp.Features.UnitTests.csproj
index 801b6a5a0c0e4..73c7105b1f10e 100644
--- a/src/Features/CSharpTest/Microsoft.CodeAnalysis.CSharp.Features.UnitTests.csproj
+++ b/src/Features/CSharpTest/Microsoft.CodeAnalysis.CSharp.Features.UnitTests.csproj
@@ -3,7 +3,7 @@
Library
- $(NetRoslyn);net472
+ $(NetRoslynNext);net472
Microsoft.CodeAnalysis.CSharp.UnitTests
true
diff --git a/src/Features/CSharpTest/SemanticSearch/CSharpSemanticSearchServiceTests.cs b/src/Features/CSharpTest/SemanticSearch/CSharpSemanticSearchServiceTests.cs
index 02d2a79a8fc74..c841e11de33b6 100644
--- a/src/Features/CSharpTest/SemanticSearch/CSharpSemanticSearchServiceTests.cs
+++ b/src/Features/CSharpTest/SemanticSearch/CSharpSemanticSearchServiceTests.cs
@@ -240,7 +240,7 @@ static ISymbol F(ISymbol s)
AssertEx.Equal(
$" at Program.<$>g__F|0_1(ISymbol s) in {FeaturesResources.Query}:line 11" + Environment.NewLine +
$" at Program.<>c.<$>b__0_2(ISymbol x) in {FeaturesResources.Query}:line 5" + Environment.NewLine +
- $" at System.Linq.Enumerable.SelectArrayIterator`2.MoveNext()" + Environment.NewLine,
+ $" at System.Linq.Enumerable.ArraySelectIterator`2.MoveNext()" + Environment.NewLine,
exception.StackTrace.JoinText());
}
}
diff --git a/src/Scripting/CSharpTest/CommandLineRunnerTests.cs b/src/Scripting/CSharpTest/CommandLineRunnerTests.cs
index 0d50eb1e902cc..5a3295f2c3511 100644
--- a/src/Scripting/CSharpTest/CommandLineRunnerTests.cs
+++ b/src/Scripting/CSharpTest/CommandLineRunnerTests.cs
@@ -133,7 +133,7 @@ select x * x
> from x in await GetStuffAsync()
. where x > 2
. select x * x
-Enumerable.WhereSelectArrayIterator {{ 9, 16, 25 }}
+Enumerable.ArrayWhereSelectIterator {{ 9, 16, 25 }}
> ", runner.Console.Out.ToString());
AssertEx.AssertEqualToleratingWhitespaceDifferences(
diff --git a/src/Scripting/CSharpTest/Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.csproj b/src/Scripting/CSharpTest/Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.csproj
index 5e8ced49b9982..3c7a527a29e20 100644
--- a/src/Scripting/CSharpTest/Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.csproj
+++ b/src/Scripting/CSharpTest/Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests.csproj
@@ -5,7 +5,7 @@
Library
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests
true
- $(NetRoslyn);net472
+ $(NetRoslynNext);net472
diff --git a/src/Scripting/CSharpTest/ObjectFormatterTests.cs b/src/Scripting/CSharpTest/ObjectFormatterTests.cs
index b4ce5c4f787f5..d0e7b7fc2c0e2 100644
--- a/src/Scripting/CSharpTest/ObjectFormatterTests.cs
+++ b/src/Scripting/CSharpTest/ObjectFormatterTests.cs
@@ -507,7 +507,7 @@ public void DebuggerProxy_FrameworkTypes_IEnumerable_Exception()
return i < 7;
});
str = s_formatter.FormatObject(obj, SingleLineOptions);
- Assert.Equal("Enumerable.WhereEnumerableIterator { 0, 1, 2, 3, 4, ! ... }", str);
+ Assert.Equal("Enumerable.IEnumerableWhereIterator { 0, 1, 2, 3, 4, ! ... }", str);
}
[Fact]
diff --git a/src/Tools/BuildBoss/ProjectCheckerUtil.cs b/src/Tools/BuildBoss/ProjectCheckerUtil.cs
index 30169fa97809f..f42d30b8e6ace 100644
--- a/src/Tools/BuildBoss/ProjectCheckerUtil.cs
+++ b/src/Tools/BuildBoss/ProjectCheckerUtil.cs
@@ -247,6 +247,7 @@ private bool CheckTargetFrameworks(TextWriter textWriter)
case "net472":
case "netstandard2.0":
case "$(NetRoslyn)":
+ case "$(NetRoslynNext)":
case "$(NetRoslynSourceBuild)":
case "$(NetRoslynToolset)":
case "$(NetRoslynAll)":