From 0b5907314399d4faf054c85b56020311aad8e21d Mon Sep 17 00:00:00 2001 From: Pranav K Date: Tue, 15 Oct 2019 11:02:05 -0700 Subject: [PATCH] Add 3.1-Preview1 known issue --- release-notes/3.1/3.1-known-issues.md | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/release-notes/3.1/3.1-known-issues.md b/release-notes/3.1/3.1-known-issues.md index a3006d4d..65f11c93 100644 --- a/release-notes/3.1/3.1-known-issues.md +++ b/release-notes/3.1/3.1-known-issues.md @@ -1,4 +1,4 @@ -# .NET Core 3.! Known Issues +# .NET Core 3.1 Known Issues This document lists known issues for **.NET Core 3.1 Preview 1 and beyond releases** which may be encountered during usage. @@ -6,4 +6,26 @@ This document lists known issues for **.NET Core 3.1 Preview 1 and beyond releas ## .NET Core 3.1 SDK, all releases -## ASP.NET Core \ No newline at end of file +## ASP.NET Core + +### Preview1 + +* **Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation package is missing MSBuild targets to correctly enable runtime compilation** + +Due to an package authoring error, the `Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation` is missing build targets that are required to for runtime compilation to work. +Users of this package will see errors along the lines of `"System.InvalidOperationException: Cannot find reference assembly '...' file for package '...'*` + +To resolve this issue, add the following contents to the your project file: + +```xml + + true + true + true + $(RazorUpToDateReloadFileTypes.Replace('.cshtml', '')) + false + +``` + + +