-1

I tried to load configuration file like they do it in this post: .NET Core console application, how to configure appSettings per environment? but in my project namespace Microsoft doesn't contains Extensions namespace

Screenshot

TylerH
  • 20,799
  • 66
  • 75
  • 101
QTM
  • 141
  • 1
  • 8
  • Extensions are not part of .NETStandard. They would make it non-standard. You'll have to add the Nuget package and fret about what it will take if you need to run this on another platform. – Hans Passant Oct 18 '17 at 11:03

1 Answers1

1

Simply try to add Microsoft.Extensions.Configuration from Nuget package manager.

Giancarlo Melis
  • 697
  • 4
  • 17