本文介绍了为什么视觉工作室告诉我,AddJsonFile()方法无法在配置类中定义?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在开发使用VS 2015年最终的预览5 ASP.NET项目的WebAPI。我想配置应用程序以这种方式(行号都只是指导):使用Microsoft.Framework.ConfigurationModel

I'm developing an ASP.NET 5 WebAPI project using VS Ultimate 2015 Preview. I'm trying to configure the app in this way (line numbers are just guides):

1 using Microsoft.Framework.ConfigurationModel;
2
3 public IConfiguration Configuration { get; private set; }
4 
5 public Startup()
6 {
7     Configuration = new Configuration()
8         .AddJsonFile("config.json")
9         .AddEnvironmentVariables();
10 }



8号线给我一个错误:配置不包含定义对于AddJsonFile'...

Line 8 give me an error: 'Configuration' does not contain a definition for 'AddJsonFile'...

什么是错的?

推荐答案

您需要包括Microsoft.Framework.ConfigurationModel.Json如果你要拨打的.AddJsonFile()方法。

You need to include the Microsoft.Framework.ConfigurationModel.Json if you want to call the .AddJsonFile() method

请参阅:的

有关进一步的阅读,一个很好的教程是:的

For further reading, a nice tutorial is at: http://whereslou.com/2014/05/23/asp-net-vnext-moving-parts-iconfiguration/

这篇关于为什么视觉工作室告诉我,AddJsonFile()方法无法在配置类中定义?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-13 17:03