2017-09-01 10 views
0

appsetting.jsonファイルから読み込むための.NETコンソールアプリケーション(Core 2.0)を取得しようとしています。私は正常に動作WEBAPIプロジェクトを持って、次の.NET 2.0コンソールアプリケーション - アプリケーション設定を読み取る

services.Configure<WebAppSettings>(Configuration.GetSection("WebAppSettings")); 

しかし、コンソールアプリでそれは言う:

'ServiceCollection' does not contain a definition for 'Configure' and no extension method 'Configure' accepting a first argument of type 'ServiceCollection' could be found (are you missing a using directive or an assembly reference?) 

私は、コンソールアプリケーションのプロジェクトにインストールされ、次のパッケージがあります。

<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.0.0" /> 
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.0.0" /> 
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="2.0.0" /> 
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="2.0.0" /> 

完全なProgram.csクラスは次のとおりです。

ありがとうございました!

答えて

2

Configure拡張メソッドを取得するには、NuGetパッケージMicrosoft.Extensions.Options.ConfigurationExtensionsを追加する必要があります。

+0

ありがとうございました!それが問題でした。 – TheWebGuy

関連する問題