0

我在 Windows 7 64 上的 VS 2012 Ultimate Release 3 中创建了一个默认 Internet(并尝试了 Intranet——同样的问题)MVC 4 文件。然后我将发布模式设置为 Release 而不是 Debug,并运行应用程序。

在 IE 9 中,我右键单击并选择了查看源,并且正在使用的 jquery 文件与调试模式下的相同(不是 .min 版本):

<script src="/Scripts/jquery-1.8.2.js"></script>

在发布模式下,我还应该做些什么来启用脚本文件的 .min 版本的自动使用?我还尝试修改代码以检查是否定义了调试(#if DEBUG),但事实并非如此。

请注意,我使用从 MVC 4 附带的模板创建的默认应用程序对此进行了测试。我根本没有更改它们(我最初在自己的应用程序中遇到了这个问题,想看看它是否是我做过的事情)。

Web 配置是默认配置。发行版是:

<!-- For more information on using Web.config transformation visit http://go.microsoft.com/fwlink/?LinkId=125889 -->

<configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
  <!--
    In the example below, the "SetAttributes" transform will change the value of 
    "connectionString" to use "ReleaseSQLServer" only when the "Match" locator 
    finds an atrribute "name" that has a value of "MyDB".

    <connectionStrings>
      <add name="MyDB" 
        connectionString="Data Source=ReleaseSQLServer;Initial Catalog=MyReleaseDB;Integrated Security=True" 
        xdt:Transform="SetAttributes" xdt:Locator="Match(name)"/>
    </connectionStrings>
  -->
  <system.web>
    <compilation xdt:Transform="RemoveAttributes(debug)" />
    <!--
      In the example below, the "Replace" transform will replace the entire 
      <customErrors> section of your Web.config file.
      Note that because there is only one customErrors section under the 
      <system.web> node, there is no need to use the "xdt:Locator" attribute.

      <customErrors defaultRedirect="GenericError.htm"
        mode="RemoteOnly" xdt:Transform="Replace">
        <error statusCode="500" redirect="InternalError.htm"/>
      </customErrors>
    -->
  </system.web>
</configuration>

感谢:D

4

1 回答 1

0

我发现了另一条消息(在发布模式下运行 ASP.NET MVC 4 应用程序不会捆绑和缩小 js 文件),该消息具有使其工作的解决方法。基本上,我将以下内容添加到Application_Startin Global.asax.cs

#if !DEBUG 
    BundleTable.EnableOptimizations = true; 
#endif 

这修复了它(或者至少,使它的行为符合我的预期)。

谢谢,

-D

于 2013-07-26T16:17:32.790 回答