Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save matthewrwilton/188da98fb7a2a3650a51844790e4b138 to your computer and use it in GitHub Desktop.
Save matthewrwilton/188da98fb7a2a3650a51844790e4b138 to your computer and use it in GitHub Desktop.
Example of AspNetCompiler task usage.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
...
<Target Name="MvcBuildViews" AfterTargets="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(WebProjectOutputDir)" />
</Target>
...
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment