在 StartUp 中的 Configure 方法添加如下代碼即可 原因是預設沒有 exe 的 content-type。 ...
在 StartUp 中的 Configure 方法添加如下代碼即可
app.UseStaticFiles(new StaticFileOptions() { ContentTypeProvider = new FileExtensionContentTypeProvider() { Mappings = {[".exe"] = "application/octect-stream"} } });
原因是預設沒有 exe 的 content-type。