UseEmbeddedAppSettings is no more supported for Appsettings Configuration? #621
Replies: 1 comment
-
Latest docs include the correct api: https://platform.uno/docs/articles/external/uno.extensions/doc/Learn/Tutorials/Configuration/HowTo-Configuration.html |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
HI Team,
I have a appsettings.json file to configure application level settings. i need to configure this so that all ohter parts of application can access these settings.
.UseEmbeddedAppSettings(includeEnvironmentSettings: true) this method that is given in Uno documentation for configuration is no more supported. looks like methods are changed. can you please help me in configuring the Appsettings for my Uno App?
below is what is provided in uno documentation for configuration
private IHost Host { get; }
public App()
{
Host = UnoHost
.CreateDefaultBuilder()
.UseEmbeddedAppSettings(includeEnvironmentSettings: true)
.Build();
// ........ //
}
Thanks
Beta Was this translation helpful? Give feedback.
All reactions