gpt4 book ai didi

f# - 从 IHostingEnvironment 迁移到 IWebHostEnvironment

转载 作者:行者123 更新时间:2023-12-04 17:36:29 28 4
gpt4 key购买 nike

我有这个:

let configureApp (app : IApplicationBuilder) =
let env = app.ApplicationServices.GetService<IHostingEnvironment>()
(match env.IsDevelopment() with
| true -> app.UseDeveloperExceptionPage()
| false -> app.UseGiraffeErrorHandler errorHandler)

当我尝试迁移时,出现错误:

let configureApp (app : IApplicationBuilder) =
let env = app.ApplicationServices.GetService<IWebHostEnvironment>()
(match env. with

我不知道应该在此代码段中更改什么。

最佳答案

基于 the documentation ,您需要确保已打开命名空间 Microsoft.AspNetCore.Hosting

关于f# - 从 IHostingEnvironment 迁移到 IWebHostEnvironment,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56535220/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com