asp.net – 如何在构建期间从Visual Studio调用aspnet_compiler?

前端之家收集整理的这篇文章主要介绍了asp.net – 如何在构建期间从Visual Studio调用aspnet_compiler?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要Visual Studioprecompile my ASP.NET application,它用作Azure Web角色有效负载.所以我发现 this post解释了如何调用aspnet_compiler来验证视图.

我尝试将以下内容添加到我的ASP.NET应用程序的“post-build event”中:

call "%VS100COMNTOOLS%\vsvars32.bat"
aspnet_compiler -v / -p $(ProjectDir)

或者这个(显式指定的应用程序名称):

call "%VS100COMNTOOLS%\vsvars32.bat"
aspnet_compiler -v /ASP.NET-Application-ProjectNameHere -p $(ProjectDir)

在构建运行的两种情况下,我在构建输出中看到以下内容

Setting environment for using Microsoft Visual Studio 2010 x86 tools.
Utility to precompile an ASP.NET application
Copyright (C) Microsoft Corporation. All rights reserved.

并且显然没有预编译,因为如果我将任何.aspx或.cshtml文件“Build Action”更改为“None”,它将无法访问Azure服务包,并且一旦将包部署到Azure,视图就不再打开.

如何在Visual Studio中设置aspnet_compiler以进行预编译?

解决方法

如果要在Visual Studio / msbuild中使用Asp.NET编译器,则可以添加
AspNetCompiler任务到项目文件(.csproj / .vbproj)并将MvcBuildViews设置为true.

例:

<Project>
  <PropertyGroup>
    <MvcBuildViews>true</MvcBuildViews>
  </PropertyGroup>
  <!-- ... -->
  <Target Name="PrecompileWeb" AfterTargets="build" Condition="'$(MvcBuildViews)'=='true'">
    <Message Text="Starting AspNetCompiler for $(ProjectDir)" Importance="high" />
    <AspNetCompiler
        VirtualPath="temp"
        PhysicalPath="$(WebProjectOutputDir)"
        Force="true"
    />
  </Target>
  <!-- ... -->
</Project>

您还可以设置TargetPath属性以指定目标目录.

AfterTargets =“build”类似于“post-build event”.详见Target Build Order.

原文链接:https://www.f2er.com/aspnet/247366.html

猜你在找的asp.Net相关文章