Go to file
Pranav K f1a257c1d1
Merge pull request #289 from aspnet/release/2.1
Skip some flaky tests
2018-08-28 10:52:06 -07:00
.github
.vsts-pipelines/builds Update infrastructure for the 2.2 release 2018-06-28 16:21:09 -07:00
build Update package branding for 2.2.0-preview2 2018-08-21 13:33:51 -07:00
src Suppress obsolete warnings 2018-07-31 11:06:30 -07:00
test Merge pull request #289 from aspnet/release/2.1 2018-08-28 10:52:06 -07:00
testapps Remove Precompilation_WorksForViewsUsingDirectoryTraversal 2018-08-07 12:39:46 -07:00
.appveyor.yml
.gitattributes
.gitignore
.travis.yml
CONTRIBUTING.md
Directory.Build.props Add certificate names for code signing 2018-06-05 22:34:06 -07:00
Directory.Build.targets
LICENSE.txt
NuGet.config
NuGetPackageVerifier.json
README.md
RazorViewCompilation.sln Remove Precompilation_WorksForViewsUsingDirectoryTraversal 2018-08-07 12:39:46 -07:00
build.cmd
build.sh
korebuild-lock.txt Update dependencies.props 2018-08-12 19:25:02 +00:00
korebuild.json Update infrastructure for the 2.2 release 2018-06-28 16:21:09 -07:00
run.cmd
run.ps1 Update bootstrapper scripts (automated commit) [ci skip] 2018-05-25 16:16:36 -07:00
run.sh Update bootstrapper scripts (automated commit) [ci skip] 2018-05-25 16:16:36 -07:00
version.props Update package branding for 2.2.0-preview2 2018-08-21 13:33:51 -07:00

README.md

ASP.NET Core MVC Precompilation

NOTE: This repo is solely for maintenance of the existing MVC precompilation feature. Future work on Razor compilation is now being handled in the Razor repo. See aspnet/Razor#1740 for additional details.

AppVeyor: AppVeyor Travis: Travis

The Razor syntax provides a fast, terse, clean, and lightweight way to combine server code with HTML to create dynamic web content. This repo contains tooling that allows compilation of MVC Razor views as part of build and publish.

Installation and usage

Referencing the Microsoft.AspNetCore.Mvc.Razor.ViewCompilation package

  • If you're targeting ASP.NET Core 2.0 or higher on netcoreapp2.0, a reference to the Microsoft.AspNetCore.Mvc.Razor.ViewCompilation package is added by Microsoft.AspNetCore.All and you do not need to explicitly reference it.
  • For desktop targeting projects or projects targeting ASP.NET Core 1.x, add a package reference to the appropriate version of Microsoft.AspNetCore.Mvc.Razor.ViewCompilation in your project:
<ItemGroup>
  <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.ViewCompilation" Version="1.1.1" />
</ItemGroup>

Enabling view compilation

View compilation as part of publishing is enabled by default if you're referencing the Web SDK (Microsoft.NET.Sdk.Web) that ships with .NET Core 2.0 or later versions. For older versions, add the MvcRazorCompileOnPublish property to your project:

<PropertyGroup>
  <MvcRazorCompileOnPublish>true</MvcRazorCompileOnPublish>
</PropertyGroup>

Alternatively, you may wire up the MvcRazorPrecompile target to a build event:

 <Target 
    Name="PrecompileRazorViews" 
    AfterTargets="Build"
    DependsOnTargets="MvcRazorPrecompile" />

Options

Some aspects of view compilation can be configured by editing the project:

  • MvcRazorCompileOnPublish: Setting this to false turns off all functions of view compilation that are enabled as part of publishing.

  • MvcRazorExcludeViewFilesFromPublish: Enabling MvcRazorCompileOnPublish prevents .cshtml files from being published. This option disables this behavior. Note: ASP.NET Core Mvc does not support updateable precompiled views. Any modifications to published cshtml files will be ignored if a precompiled view is discovered for that path.

  • MvcRazorExcludeRefAssembliesFromPublish: Enabling MvcRazorCompileOnPublish causes the target to prevent the refs directory from being published. This option disables this behavior. Note: Setting this option is useful if your application is using a mix of precompiled and runtime compiled views.

  • MvcRazorFilesToCompile: An item group that specifies view files to compile. By default this includes all .cshtml files marked as content.

This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the Home repo.