-
Notifications
You must be signed in to change notification settings - Fork 988
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET integration #131
Comments
Infisical mostly likely supports .NET in its current form. We just don't have the docs for it yet. We need to test it out, and I will get back to you. |
That's definitely possible and .NETs ConfigurationBuilder makes it fairly easy. public IConfigurationRoot ConfigureConfiguration()
{
var builder = new ConfigurationBuilder()
.AddJsonFile("appsettings.json", optional: true, reloadOnChange: true)
.AddEnvironmentVariables();
return builder.Build();
} |
Oh interesting! This makes sense - I haven't found the time to test it out and write the docs yet (not very familiar with .NET) :( @jon4hz If you're interested in helping with this, that would be so amazing 🙏 No pressure though! |
Well I'm no expert on .NET either, I just recently started learning c#. :) |
@gbro3n @gerwim here are the instructions for how to use Infisical with .NET: https://infisical.com/docs/integrations/frameworks/dotnet Let us know if you have any questions |
Feature description
An integration with .NET's configuration tooling would be great to see.
Why would it be useful?
There's a lot of .NET projects out there that could benefit from this.
The text was updated successfully, but these errors were encountered: