You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 18, 2018. It is now read-only.
Using beta-4 I can add a config file to my project like so:
var configuration = new Configuration()
.AddJsonFile("config.json");
If I have multiple projects within a solution that share the same config settings, I have to create a config.json for each project with the same settings in it.
What if I want to share settings in a single "global" config file across multiple projects within the same solution?
Using
beta-4
I can add a config file to my project like so:If I have multiple projects within a solution that share the same config settings, I have to create a
config.json
for each project with the same settings in it.What if I want to share settings in a single "global" config file across multiple projects within the same solution?
My solution directory structure looks like this:
Could I move
config.json
out to the solution level and still add it somehow?or maybe even
It looks to me like paths are always resolved starting at the application base.
How would I do this? Does this make sense to do?
The text was updated successfully, but these errors were encountered: