web-dev-qa-db-ja.com

IIS Express Server)に新しいapplicationhost.configファイルを作成するにはどうすればよいですか?

VS 1012が処理しなかったため、applicationhost.configを削除する必要がありました。どうすれば作成できますか?ありがとうございました。

23
user1735111

IISExpressを実行するだけで、ファイルが再作成されます。 exeファイルは、「c:\ Program Files\IIS Express\iisexpress.exe」にあります。

お役に立てれば。

37
Woland

applicationhost.configを削除した後は、iisexpress.exeを手動で実行する必要はありません。プロジェクトをVisual Studioにロードして実行するだけです。 Visual Studioがこれを処理し、プロジェクトのプロパティウィンドウ(マウスメニューのプロパティではない)で指定されたプロジェクトの設定でapplicationhost.configを変更します。

enter image description here

applicationhost.configの下部に対応する上書きセクションを追加します

<location path="...WebServices">
    <system.webServer>
        <security>
            <authentication>
                <anonymousAuthentication enabled="false" />
                <windowsAuthentication enabled="true" />
            </authentication>
        </security>
    </system.webServer>
</location>
9