.NET Core 2.1 ConfigurationBuilder.Build() - StackOverflowException

时间:2018-04-15 11:15:16

标签: .net-core asp.net-core-mvc

我已经安装了VS 2017 Preview和2.1.300-preview2-008530 SDK。现在,在我的Web应用程序项目中,序列生成StackOverflowException:

var builder = new ConfigurationBuilder()
                            .SetBasePath(env.ContentRootPath)
                            .AddJsonFile("appsettings.json");

NET Core 2.1预览2已知问题 - 不包含与我的问题相关的任何内容。

1 个答案:

答案 0 :(得分:4)

添加此软件包Microsoft.Extensions.Configuration.json

升级到2.1后我遇到了同样的问题,并在microsoft online doc上找到了这个答案

https://docs.microsoft.com/en-us/aspnet/core/fundamentals/configuration/?view=aspnetcore-2.1&tabs=basicconfiguration