diff --git a/Directory.Build.targets b/Directory.Build.targets
index 9f6393d132..3f3ff318a9 100644
--- a/Directory.Build.targets
+++ b/Directory.Build.targets
@@ -125,6 +125,11 @@
$(NETStandardLibraryRefPackageVersion)
+
+
diff --git a/eng/Version.Details.xml b/eng/Version.Details.xml
index b2a6bfd874..970ff6cf8f 100644
--- a/eng/Version.Details.xml
+++ b/eng/Version.Details.xml
@@ -420,5 +420,9 @@
https://github.com/aspnet/Extensions
b5e1724093107d2133b3dab14197b8ff5dbff8ef
+
+ https://github.com/dotnet/roslyn
+ c91adff42c488aef2c2c532a7b053fb55e0c16ea
+
diff --git a/eng/Versions.props b/eng/Versions.props
index 015c5092df..1c46014097 100644
--- a/eng/Versions.props
+++ b/eng/Versions.props
@@ -33,8 +33,6 @@
true
-
- true
true
@@ -53,6 +51,8 @@
1.0.0-beta.19323.4
+
+ 3.3.0-beta1-19351-01
3.0.0-preview7-27901-06
3.0.0-preview7-27901-06
@@ -255,6 +255,10 @@
https://dotnetfeed.blob.core.windows.net/dotnet-core/index.json;
https://grpc.jfrog.io/grpc/api/nuget/v3/grpc-nuget-dev;
+
+ $(RestoreSources);
+ https://dotnet.myget.org/F/roslyn/api/v3/index.json;
+
$(RestoreSources);
diff --git a/src/Mvc/Mvc.DataAnnotations/test/DataAnnotationsMetadataProviderTest.cs b/src/Mvc/Mvc.DataAnnotations/test/DataAnnotationsMetadataProviderTest.cs
index e3fa20042a..2d260405ef 100644
--- a/src/Mvc/Mvc.DataAnnotations/test/DataAnnotationsMetadataProviderTest.cs
+++ b/src/Mvc/Mvc.DataAnnotations/test/DataAnnotationsMetadataProviderTest.cs
@@ -1142,7 +1142,7 @@ namespace Microsoft.AspNetCore.Mvc.DataAnnotations
Assert.Equal(initialValue, context.ValidationMetadata.IsRequired);
}
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public void CreateValidationMetadata_InfersRequiredAttribute_NoNonNullableProperty()
{
// Arrange
@@ -1325,7 +1325,7 @@ namespace Microsoft.AspNetCore.Mvc.DataAnnotations
Assert.Same(attribute, validatorMetadata);
}
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public void IsNonNullable_FindsNonNullableProperty()
{
// Arrange
@@ -1353,7 +1353,7 @@ namespace Microsoft.AspNetCore.Mvc.DataAnnotations
Assert.False(result);
}
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public void IsNonNullable_FindsNonNullableParameter()
{
// Arrange
diff --git a/src/Mvc/test/Mvc.FunctionalTests/NonNullableReferenceTypesTest.cs b/src/Mvc/test/Mvc.FunctionalTests/NonNullableReferenceTypesTest.cs
index e22462ce34..052b180d2d 100644
--- a/src/Mvc/test/Mvc.FunctionalTests/NonNullableReferenceTypesTest.cs
+++ b/src/Mvc/test/Mvc.FunctionalTests/NonNullableReferenceTypesTest.cs
@@ -26,7 +26,7 @@ namespace Microsoft.AspNetCore.Mvc.FunctionalTests
private HttpClient Client { get; set; }
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public async Task CanUseNonNullableReferenceType_WithController_OmitData_ValidationErrors()
{
// Arrange
diff --git a/src/Mvc/test/Mvc.IntegrationTests/NullableReferenceTypeIntegrationTest.cs b/src/Mvc/test/Mvc.IntegrationTests/NullableReferenceTypeIntegrationTest.cs
index 6e61419fe3..808f37cf61 100644
--- a/src/Mvc/test/Mvc.IntegrationTests/NullableReferenceTypeIntegrationTest.cs
+++ b/src/Mvc/test/Mvc.IntegrationTests/NullableReferenceTypeIntegrationTest.cs
@@ -25,7 +25,7 @@ namespace Microsoft.AspNetCore.Mvc.IntegrationTests
}
#nullable restore
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public async Task BindProperty_WithNonNullableReferenceType_NoData_ValidationError()
{
// Arrange
@@ -112,7 +112,7 @@ namespace Microsoft.AspNetCore.Mvc.IntegrationTests
}
#nullable restore
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public async Task BindProperty_WithNonNullableReferenceType_NoData_ValidationError_CustomMessage()
{
// Arrange
@@ -159,7 +159,7 @@ namespace Microsoft.AspNetCore.Mvc.IntegrationTests
}
#nullable restore
- [Fact]
+ [Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/11828")]
public async Task BindParameter_WithNonNullableReferenceType_NoData_ValidationError()
{
// Arrange