VS 1012が処理しなかったため、applicationhost.configを削除する必要がありました。どうすれば作成できますか?ありがとうございました。
IISExpressを実行するだけで、ファイルが再作成されます。 exeファイルは、「c:\ Program Files\IIS Express\iisexpress.exe」にあります。
お役に立てれば。
applicationhost.config
を削除した後は、iisexpress.exe
を手動で実行する必要はありません。プロジェクトをVisual Studio
にロードして実行するだけです。 Visual Studioがこれを処理し、プロジェクトのプロパティウィンドウ(マウスメニューのプロパティではない)で指定されたプロジェクトの設定でapplicationhost.config
を変更します。
applicationhost.config
の下部に対応する上書きセクションを追加します
<location path="...WebServices">
<system.webServer>
<security>
<authentication>
<anonymousAuthentication enabled="false" />
<windowsAuthentication enabled="true" />
</authentication>
</security>
</system.webServer>
</location>