在 StartUp 中的 Configure 方法添加以下代碼便可app
app.UseStaticFiles(new StaticFileOptions() { ContentTypeProvider = new FileExtensionContentTypeProvider() { Mappings = {[".exe"] = "application/octect-stream"} } });
緣由是默認沒有 exe 的 content-type。ide