How to precompile MVC Razor views in ASP.NET Core1.1
This article focuses on "how to precompile MVC Razor views in ASP.NET Core1.1". Interested friends may wish to take a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn how to precompile MVC Razor views in ASP.NET Core1.1.
The following configuration needs to be added to project.json:
1) add: in "dependencies":
"Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Design": "1.1.0-preview4-final"
2) add: in "tools":
"tools": {"Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tools": "1.1.0-preview4-final"}
3) add: in "scripts":
"scripts": {"postpublish": "dotnet razor-precompile-configuration% publish:Configuration%-framework% publish:TargetFramework%-output-path% publish:OutputPath%% publish:ProjectPath%"}
Then the Razor view in the ASP.NET Core project is compiled when you run the dotnet publish command:
Running Razor view precompilation.Precompiled views emitted to / data/AboutUs/bin/release/netcoreapp1.1/ubuntu.14.04-x64/publish/AboutUs.PrecompiledViews.dll.Successfully compiled 18 Razor views in 12734ms.
The MVC Razor view is compiled into an AboutUs.PrecompiledViews.dll file, and you only need this dll file to run the site, not the .cshtml view file.
At this point, I believe you have a deeper understanding of "how to precompile MVC Razor views in ASP.NET Core1.1". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!