Windows 7 64 の VS 2012 Ultimate Release 3 で、既定のインターネットを作成し (イントラネットを試してみました - 同じ問題)、MVC 4 ファイルを作成しました。次に、リリース モードを [デバッグ] ではなく [リリース] に設定し、アプリケーションを実行しました。
IE 9 では、右クリックしてビュー ソースを選択しました。使用されている jquery ファイルは、デバッグ モードと同じです (.min バージョンではありません)。
<script src="/Scripts/jquery-1.8.2.js"></script>
リリース モードでスクリプト ファイルの .min バージョンを自動的に使用できるようにするために、他に何かすべきことはありますか? また、コードを変更して、デバッグが定義されているかどうかを確認しようとしましたが (#if DEBUG)、定義されていません。
MVC 4 に付属のテンプレートから作成されたデフォルトのアプリケーションでこれをテストしたことに注意してください。私はそれらをまったく変更しませんでした (最初に自分のアプリケーションで問題に遭遇し、それが私が行ったことであるかどうかを確認したかったのです)。 )。
Web 構成はデフォルトのものです。リリース 1 は次のとおりです。
<!-- 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>
ありがとう