We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have the following .env file:
DB_PASSWORD=123456789 # This comment is not ignored.
And the example code:
new EnvLoader().Load(); var dbPassword = Environment.GetEnvironmentVariable("DB_PASSWORD"); Console.WriteLine("Password=" + dbPassword);
Expected behavior:
Password=123456789
Current behavior:
Password=123456789 # This comment is not ignored.
The text was updated successfully, but these errors were encountered:
Added test cases for issue #128
b9851b4
Successfully merging a pull request may close this issue.
I have the following .env file:
And the example code:
Expected behavior:
Current behavior:
The text was updated successfully, but these errors were encountered: