LoginSignup
0

More than 3 years have passed since last update.

Visual Studio で IIS Express を Classic モードに設定する方法

Posted at

設定方法

  1. ソリューションエクスプローラーからプロジェクトを選択
  2. [F4] を押すか、[View]-[Properties Window] を選択1
    右クリック → Properties ではないことに注意
  3. プロパティウィンドウの Managed Pipeline Mode を Classic に変更

.csproj 内での設定

.csproj 内では

<IISExpressUseClassicPipelineMode>true</IISExpressUseClassicPipelineMode>

で設定されている。

Integrated (統合) に戻す場合は false

参考


  1. Properties ウィンドウを開いている場合は、プロジェクトを選択後、Properties ウィンドウを表示すればよい 

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0