When adding the nuget packages, as per these MS instructions ( https://docs.microsoft.com/en-us/azure/azure-app-configuration/quickstart-dotnet-core-app ), it appears that it installs the entire AspNet Core runtime - inflating my console app from 9.2 MB to 21.8 MB.
That's absurd.
It's documentation issue. For console app, please use Microsoft.Extensions.Configuration.AzureAppConfiguration package.
https://www.nuget.org/packages/Microsoft.Extensions.Configuration.AzureAppConfiguration/
Ah. Thanks.
Wouldn't it be nice if there were unit tests for documentation.
PR to fix the doc: https://github.com/MicrosoftDocs/azure-docs/pull/39823
Most helpful comment
Ah. Thanks.
Wouldn't it be nice if there were unit tests for documentation.