簡単なものが欠けているように感じますが、ASPNET5 Webプロジェクトを使用するときにIIS ExpressのSSLを有効にする方法を知っている人はいますか?プロジェクトのプロパティのデバッグ画面には、URLではなくポートのみが表示されます(「クラシック」Webプロジェクトでも、URLで特定のhttpsを使用できます)
applicationhost.config
の[SOLUTION_DIR]\.vs\config
を編集します
たとえば、サイトセクションで:
<site name="YOUR SITE NAME" id="1">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="YOUR SITE PATH" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:80:localhost" />
<binding protocol="https" bindingInformation="*:44300:localhost" />
</bindings>
</site>