0
私は自分のasp.net5プロジェクトにリンクしたいと思うhtmlファイルindex.htmlを手に入れました。ASP.NET5.0 htmlファイルを追加
私はwwwrootにindex.htmlを追加しようとしましたが、デバッグを開始すると私はlocalhost:port/index.htmlに行きます。
ドキュメントにリンクする方法や説明する方法はありますか?
PS:私はvisual-studioを使用しています。
コンフィグコード:
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app)
{
app.UseIISPlatformHandler();
app.Run(async (context) =>
{
await context.Response.WriteAsync("test");
});
}
こんにちは応答をありがとうしかし、私は唯一のapp.UseIISPlatformHandlerとapp.UseMiddleware – Sakon
「Microsoft.AspNet.StaticFiles」を取得静的なファイル使用し得るいけない: –
追加、「1.0.0-RC1-最終的に」あなたのプロジェクトの依存関係 –