Cant add ConfigurationBuilder stuff to Dependency Injection

Im trying to add an Application Configuration into my Dependency injection using the Recommended flow see here: https://discord.com/channels/143867839282020352/143867839282020352/1336443986088431666 But I somehow cant get this to work at all The given code snippet produces this error: "Cannot implicitly convert type 'OptionsBuilder<AppSettings>' to 'IServiceCollection'. An explicit conversion exists"
public static IServiceCollection AddAppsettings(this IServiceCollection services) =>
services.AddOptions<AppSettings>() // AppSettings is my Config class for this
public static IServiceCollection AddAppsettings(this IServiceCollection services) =>
services.AddOptions<AppSettings>() // AppSettings is my Config class for this
The issue is that I dont even have the followup functions available to me like BindConfiguration and such and I have no clue why or what to do now, my ConfigurationBuilder can read the config just fine but I cant add it into DI at all, this is not ASP.NET im trying to set this up with Discord.NET
105 Replies
MODiX
MODiX2mo ago
MODiX#0152
appsettings.json:
{
"My": {
"Foo": {
"Kix": 5
}
}
}
{
"My": {
"Foo": {
"Kix": 5
}
}
}
src/Foo/FooOptions.cs:
public class FooOptions
{
public const string SectionName = "My:Foo";

public string Bar {get;set;} = "default value for bar";
public int Kix {get;set;} = -1;
public DateTime? Pouet {get;set;} = default;
}
public class FooOptions
{
public const string SectionName = "My:Foo";

public string Bar {get;set;} = "default value for bar";
public int Kix {get;set;} = -1;
public DateTime? Pouet {get;set;} = default;
}
src/Foo/FooServiceCollectionExtensions.cs:
namespace Microsoft.Extensions.DependencyInjection; // <==== recommanded for service.Add so that you don't clutter Startup file

public class FooServiceCollectionExtensions
{
public static IServiceCollection AddFoo(this IServiceCollection services) =>
services
.AddOptions<FooOptions>()
.BindConfiguration(FooOptions.SectionName)
.Validate(options => options.Kix >= 0, $"The configuration key '{FooOptions.SectionName}:{nameof(Kix)}' cannot be negative")
;

public static IServiceCollection AddFoo(this IServiceCollection services, Action<FooOptions> configure) =>
services
.AddFoo()
.Configure(configure);
namespace Microsoft.Extensions.DependencyInjection; // <==== recommanded for service.Add so that you don't clutter Startup file

public class FooServiceCollectionExtensions
{
public static IServiceCollection AddFoo(this IServiceCollection services) =>
services
.AddOptions<FooOptions>()
.BindConfiguration(FooOptions.SectionName)
.Validate(options => options.Kix >= 0, $"The configuration key '{FooOptions.SectionName}:{nameof(Kix)}' cannot be negative")
;

public static IServiceCollection AddFoo(this IServiceCollection services, Action<FooOptions> configure) =>
services
.AddFoo()
.Configure(configure);
Program.cs / Startup.cs:
services.AddFoo();
// or
services.AddFoo(fooOptions => fooOptions.Kix = 12);
services.AddFoo();
// or
services.AddFoo(fooOptions => fooOptions.Kix = 12);
Bar.cs:
public class Bar
{
private readonly FooOptions _fooOptions;

// .Value in ctor is fine only if it's always ever a non-changing value (no reload and/or no scoped resolution)
public Bar(IOptions<FooOptions> fooOptions)
=> _fooOptions = fooOptions.Value;
}
public class Bar
{
private readonly FooOptions _fooOptions;

// .Value in ctor is fine only if it's always ever a non-changing value (no reload and/or no scoped resolution)
public Bar(IOptions<FooOptions> fooOptions)
=> _fooOptions = fooOptions.Value;
}
Quoted by
<@1071594003717423134> from #chat (click here)
React with ❌ to remove this embed.
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
AppSettings.cs
public class AppSettings
{
[JsonIgnore]public const string SectionName = "AppSettings"; // Putting this here as well since im generating the config
public string BotToken { get; set; } = "";
public string StripeToken { get; set; } = "";
}
public class AppSettings
{
[JsonIgnore]public const string SectionName = "AppSettings"; // Putting this here as well since im generating the config
public string BotToken { get; set; } = "";
public string StripeToken { get; set; } = "";
}
Extensions.cs
public static class Extensions
{
public static IServiceCollection AddAppsettings(this IServiceCollection services) =>
services
.AddOptions<AppSettings>()
}
public static class Extensions
{
public static IServiceCollection AddAppsettings(this IServiceCollection services) =>
services
.AddOptions<AppSettings>()
}
thats all the code there really is even with this setup I dont understand how the AddAppsettings is supposed to know where my JSON file is or that it should try to load env variables first this is stupid
Sehra
Sehra2mo ago
doesn't work as an expression method since .AddOptions<> doesn't return IServiceCollection make it a regular method and return services at the end
The Fog from Human Resources
so the example was just wrong :SCchaos: but i still dont have the followup functions like BindConfiguration
Sehra
Sehra2mo ago
it's an extension method from Microsoft.Extensions.Options.ConfigurationExtensions
The Fog from Human Resources
and how does this function where my JSON file or in what order it should load data? in my Program.cs file I have
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddEnvironmentVariables()
.AddJsonFile($"{Constants.APP_ROOT}/config.json", false, true);

_configuration = builder.Build();
var builder = new ConfigurationBuilder()
.SetBasePath(Directory.GetCurrentDirectory())
.AddEnvironmentVariables()
.AddJsonFile($"{Constants.APP_ROOT}/config.json", false, true);

_configuration = builder.Build();
to test stuff which worked but now adding it to DI its a fully seperate thing
Sehra
Sehra2mo ago
normally you use Host.CreateDefaultBuilder() to get started
The Fog from Human Resources
loading 2 variables into DI has never been this overcomplicated i swear
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
didnt know if it will also serialize that one
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
so i can i create the json file when its missing
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
MODiX
MODiX2mo ago
TeBeCo
you're making it more complicated yourself though 😄
React with ❌ to remove this embed.
The Fog from Human Resources
it not existing
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
it never writes json file
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
what does that even mean wont it crash if it doesnt find it
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
and what
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
im supposed to ship this to someone
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
i dont trust them with not deleting my shipped JSON file
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
it would complain with optional:false as you have it
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
just have them fill out an ID-10T form to get it reinstated
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
another thing, normally envvars win over json, so should be after
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
“A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.”
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
does that Hosting thing still apply to me? cause i see a lot of ASP.NET here and its a CLI application pretty much that just runs locally
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
do you have appsettings.json and such already in the project?
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
ye im switching to Validate for validation yes
Sehra
Sehra2mo ago
well, then you put the settings there under a name
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
for now i need to figure out how i can use that host thing to load my configuration with a specific order into DI :thinker:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
do you imply that i should do both Validate on start as well as Validate?
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
so you are already using hosting, no need to mess about with making your own ConfigurationBuilder, put settings in the appsettings.json and register+bind your options class
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
like it currently looks like it doesnt know where the appsettings.json is or that it should take env vars as a priority it just knows i want to bind a config with a given model
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
i just added it but i have no clue how to use it
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
was about to ask if i need to put in Validate before that lmao thx
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
MODiX
MODiX2mo ago
✅ Command successful. Updated tag 'options'.
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
it makes sense for this one cause its just those 2 things
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
for bigger stuff id split :thinker:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
how to use the Host thing :SCcrying: also small question about this one :thinker:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
it has a custom error message that uses {FooOptions.SectionName}:{nameof(Kix)}, but from what I see Kix is a member of FooOptions which can only be read if an instance exists, so how does the example access it? App
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
uh i mean it is a console app :thinker:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
nameof is compile time
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
are you sure thats suitable for a small Discord Bot :thinker:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
btw is it possible for me to change a value of my Injected settings and have it apply to the JSON file on runtime?
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
think he meant the other way
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
just make sure to make a nested section in that case that doesn't collide with things from appsettings.json
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
im trying to figure out how i can use the host thing to add the configuration to my DI but i cant figure it out
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
I can't convert this into a web app now It's supposed to be a simple thing
Sehra
Sehra2mo ago
worker is a good template to get started with
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
Sehra
Sehra2mo ago
var b = Host.CreateDefaultBuilder(args);
b.Services.AddHostedService<Worker>(); // class Worker inherit BackgroundService
// all the config here
var app = b.Build();
app.Run();
var b = Host.CreateDefaultBuilder(args);
b.Services.AddHostedService<Worker>(); // class Worker inherit BackgroundService
// all the config here
var app = b.Build();
app.Run();
basically it, you get logging, config, handle ctrl+c etc one package dep, Microsoft.Extensions.Hosting
The Fog from Human Resources
i have no clue what any of this is i just need to load 2 variables
Sehra
Sehra2mo ago
well, easy way out is just to deserialize it var settings = JsonSerializer.Deserialize<AppSettings>(File.OpenRead(Path.Join(AppContext.BaseDirectory, "config.json")))
The Fog from Human Resources
i have an existing IServiceCollection i need to add this to thats all i want thats how i used to do it but i also want to accept stuff in Env variables is there no other way i can simply tell my AddAppsettings method where my json is file or what it should load env vars i dont care if its ugly or out of standard i just need something working
Sehra
Sehra2mo ago
you can do it all manually Environment.GetEnvironmentVariable(), if it's there parse and override
The Fog from Human Resources
so i shouldnt use ConfigurationBuilder for this
Sehra
Sehra2mo ago
it's up to you. hosting brings in a lot for free, but using ConfigurationBuilder from scratch works but take a bit of work
The Fog from Human Resources
its been 2 days with close to no progress because i cant get this shitty setup to work I tried to use hosting it makes no sense to me I get an IHost but nothing to add into my existing IServiceCollection And even in that I need to declare all of the stuff in the same way I did with my _configuration
Sehra
Sehra2mo ago
the host have the IServiceCollection, you add to that one when using hosting
The Fog from Human Resources
So how can I add that to the Discord.NET handler thing It accepts a Service Collection as param
Sehra
Sehra2mo ago
it's available on the builder.Services if using hosting not sure what guide you are following, i don't see what you see
The Fog from Human Resources
So why can't I just add my configuration to DI directly I don't understand why it won't let me add it to my service collection but allows me to add it to the host
Sehra
Sehra2mo ago
you can add it to your own if you want, i posted above how hosting adds it do the IServiceCollection
The Fog from Human Resources
yes but I don't get it If you are referring to this
The Fog from Human Resources
I'm writing my own resolver this isn't worth it @Sehra @TeBeCo small followup here, ended up using HostApplicationBuilder based on a github repository that uses all this stuff but with Discord.NET already (https://github.com/Misha-133/Discord-Net-Bot-Template), so perchance i was wrong :thinker: also my apologies if i came off rude :SCchaos:, thanks yall tho :SCcatkiss:
Sehra
Sehra2mo ago
looks to be based on the worker template. it's pretty useful to get the basics up and running
The Fog from Human Resources
ye, it seems to work great so far only issue im having is that await app.StartAsync() doesnt prevent the program from closing
Sehra
Sehra2mo ago
should await RunAsync
The Fog from Human Resources
ah got it, thanks :soPortuguese:
Unknown User
Unknown User2mo ago
Message Not Public
Sign In & Join Server To View
The Fog from Human Resources
i ended up using ValidateDataAnnotations().ValidateOnStart() since my validation are literally just checking if the variable exists since it cant run without it

Did you find this page helpful?