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"
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#0152
appsettings.json:
src/Foo/FooOptions.cs:
src/Foo/FooServiceCollectionExtensions.cs:
Program.cs / Startup.cs:
Bar.cs:
Quoted by
<@1071594003717423134> from #chat (click here)
React with ❌ to remove this embed.
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
AppSettings.cs
Extensions.cs
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
doesn't work as an expression method since .AddOptions<> doesn't return IServiceCollection
make it a regular method and return services at the end
so the example was just wrong
:SCchaos:
but i still dont have the followup functions like BindConfiguration
it's an extension method from Microsoft.Extensions.Options.ConfigurationExtensions
and how does this function where my JSON file or in what order it should load data?
in my Program.cs file I have
to test stuff which worked but now adding it to DI its a fully seperate thing
normally you use Host.CreateDefaultBuilder() to get started
loading 2 variables into DI has never been this overcomplicated i swear
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
didnt know if it will also serialize that one
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
so i can i create the json file when its missing
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
TeBeCo
you're making it more complicated yourself though 😄
Quoted by
<@689473681302224947> from #Cant add ConfigurationBuilder stuff to Dependency Injection (click here)
React with ❌ to remove this embed.
it not existing
anyway https://source.dot.net/#Microsoft.Extensions.Hosting/HostingHostBuilderExtensions.cs,236 is how the default is done
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
it never writes json file
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
what does that even mean
wont it crash if it doesnt find it
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
and what
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
im supposed to ship this to someone
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
i dont trust them with not deleting my shipped JSON file
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
it would complain with optional:false as you have it
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
just have them fill out an ID-10T form to get it reinstated
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
another thing, normally envvars win over json, so should be after
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
“A common mistake that people make when trying to design something completely foolproof is to underestimate the ingenuity of complete fools.”
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
do you have appsettings.json and such already in the project?
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
ye im switching to Validate for validation
yes
well, then you put the settings there under a name
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
do you imply that i should do both Validate on start as well as Validate?
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
i just added it but i have no clue how to use it
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
was about to ask if i need to put in Validate before that lmao
thx
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
✅ Command successful. Updated tag 'options'.
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
it makes sense for this one cause its just those 2 things
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
for bigger stuff id split :thinker:
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
how to use the Host thing :SCcrying:
also small question about this one :thinker:
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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?
AppUnknown User•2mo ago
Message Not Public
Sign In & Join Server To View
uh
i mean it is a console app :thinker:
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
nameof is compile time
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
are you sure thats suitable for a small Discord Bot :thinker:
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
think he meant the other way
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
just make sure to make a nested section in that case that doesn't collide with things from appsettings.json
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
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•2mo ago
Message Not Public
Sign In & Join Server To View
I can't convert this into a web app now
It's supposed to be a simple thing
worker is a good template to get started with
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
basically it, you get logging, config, handle ctrl+c etc
one package dep, Microsoft.Extensions.Hosting
i have no clue what any of this is
i just need to load 2 variables
well, easy way out is just to deserialize it
var settings = JsonSerializer.Deserialize<AppSettings>(File.OpenRead(Path.Join(AppContext.BaseDirectory, "config.json")))
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
you can do it all manually
Environment.GetEnvironmentVariable(), if it's there parse and override
so i shouldnt use ConfigurationBuilder for this
it's up to you. hosting brings in a lot for free, but using ConfigurationBuilder from scratch works but take a bit of work
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
the host have the IServiceCollection, you add to that one when using hosting
So how can I add that to the Discord.NET handler thing
It accepts a Service Collection as param
it's available on the builder.Services if using hosting
not sure what guide you are following, i don't see what you see
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
you can add it to your own if you want, i posted above how hosting adds it do the IServiceCollection
yes but I don't get it
If you are referring to this
https://source.dot.net/#Microsoft.Extensions.Hosting/HostingHostBuilderExtensions.cs,236 that's what hosting does for config
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:
looks to be based on the worker template. it's pretty useful to get the basics up and running
ye, it seems to work great so far
only issue im having is that await app.StartAsync() doesnt prevent the program from closing
should await RunAsync
ah
got it, thanks :soPortuguese:
Unknown User•2mo ago
Message Not Public
Sign In & Join Server To View
i ended up using ValidateDataAnnotations().ValidateOnStart() since my validation are literally just checking if the variable exists since it cant run without it