Add missed reference to Razor SDK in Mvc test website (#6367)

This commit is contained in:
Ajay Bhargav Baaskaran 2019-01-04 11:22:25 -08:00 committed by GitHub
parent d689eede36
commit 50996e3da1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -520,7 +520,7 @@ Hello from /Pages/Shared/";
Assert.Contains("Name is required", response);
}
[Fact(Skip = "https://github.com/aspnet/AspNetCore/issues/6122")]
[Fact]
public async Task PagesFromClassLibraries_CanBeServed()
{
// Act

View File

@ -11,6 +11,7 @@
<ItemGroup>
<Reference Include="Microsoft.AspNetCore.Mvc" />
<Reference Include="Microsoft.NET.Sdk.Razor" PrivateAssets="All" />
</ItemGroup>
</Project>