Giter VIP home page Giter VIP logo

Comments (2)

tincann avatar tincann commented on June 25, 2024

I understand now. The above is true for Console apps, but not for Web apps where the ContentRoot is not equal to the build directory. I fixed it with this:

        private static IConfigurationBuilder AddSharedConfig(this IConfigurationBuilder config, IHostingEnvironment env) {
            var appSettingsPath = "appsettings-shared.json";

            if(env.EnvironmentName == "Development") {
                appSettingsPath = Path.Combine(env.ContentRootPath, "..", "appsettings-shared.json");
            }

            return config.AddJsonFile(appSettingsPath, optional: false, reloadOnChange: true);
        }

The advantage here is that you can set optional to false, which will give an error if the file can't be loaded.

from blog-examples.

andrewlock avatar andrewlock commented on June 25, 2024

Yeah, you got it ๐Ÿ™‚ if that works for you, great! I wasn't able to use it that approach, as people run environments locally in multiple ways, so can't make those assumptions based on environment๐Ÿ™‚

from blog-examples.

Related Issues (12)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.