How to determine which environment asp.net core app will run in? The Next CEO of Stack OverflowSetting Development Environment to Production locally in Angular project template with ASP.NET CoreThe breakpoint will not currently be hit. No symbols have been loaded for this document in a Silverlight applicationHow to set ASP.NET 5 environment variables on production environmentIs launchSettings.json used when running ASP.NET 5 apps from the command line on Mac?dotnet run OR dotnet watch with development environment from command line?How to determine if .NET Core is installedHosting Environment Asp.net Core on Service Fabric local clusterAsp.Net Core Hosting environment variable ignoredSwitching/Setting Environment in ASP.NET CoreDot NET Core Hosting Environment for Visual Studio for MacCreate different environments for ASP.NET Core 2.0 app

Is it correct to say moon starry nights?

Can I cast Thunderwave and be at the center of its bottom face, but not be affected by it?

Shortening a title without changing its meaning

Man transported from Alternate World into ours by a Neutrino Detector

MT "will strike" & LXX "will watch carefully" (Gen 3:15)?

Oldie but Goldie

How to find if SQL server backup is encrypted with TDE without restoring the backup

Strange use of "whether ... than ..." in official text

Read/write a pipe-delimited file line by line with some simple text manipulation

How can the PCs determine if an item is a phylactery?

How to coordinate airplane tickets?

Is it okay to majorly distort historical facts while writing a fiction story?

What difference does it make matching a word with/without a trailing whitespace?

Arrows in tikz Markov chain diagram overlap

Is the offspring between a demon and a celestial possible? If so what is it called and is it in a book somewhere?

Could a dragon use its wings to swim?

Mathematica command that allows it to read my intentions

Can you teleport closer to a creature you are Frightened of?

How can I separate the number from the unit in argument?

Planeswalker Ability and Death Timing

Identify and count spells (Distinctive events within each group)

How dangerous is XSS

What happens if you break a law in another country outside of that country?

Do I need to write [sic] when including a quotation with a number less than 10 that isn't written out?



How to determine which environment asp.net core app will run in?



The Next CEO of Stack OverflowSetting Development Environment to Production locally in Angular project template with ASP.NET CoreThe breakpoint will not currently be hit. No symbols have been loaded for this document in a Silverlight applicationHow to set ASP.NET 5 environment variables on production environmentIs launchSettings.json used when running ASP.NET 5 apps from the command line on Mac?dotnet run OR dotnet watch with development environment from command line?How to determine if .NET Core is installedHosting Environment Asp.net Core on Service Fabric local clusterAsp.Net Core Hosting environment variable ignoredSwitching/Setting Environment in ASP.NET CoreDot NET Core Hosting Environment for Visual Studio for MacCreate different environments for ASP.NET Core 2.0 app










-1















The documentation states that If ASPNETCORE_ENVIRONMENT isn't set, it defaults to Production.



My machine doesn't seem to have ASPNETCORE_ENVIRONMENT environment variable set at all, as evidenced by running:



c:>set ASPNETCORE_ENVIRONMENT 
Environment variable ASPNETCORE_ENVIRONMENT not defined


So theoretically, my project (brand new from Visual Studio template), should run in Production, but...



c:dotnet run
Hosting environment: Development


What am I missing?










share|improve this question






















  • You will have a launchSettings.json file inside your project that is setting the environment variable for you.

    – Kirk Larkin
    Mar 8 at 19:33






  • 2





    Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

    – Kirk Larkin
    Mar 8 at 19:33











  • @KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

    – AngryHacker
    Mar 8 at 19:35






  • 1





    The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

    – Kirk Larkin
    Mar 8 at 19:48






  • 1





    @KirkLarkin Yep, that solved my issue. Thank you.

    – AngryHacker
    Mar 8 at 20:03















-1















The documentation states that If ASPNETCORE_ENVIRONMENT isn't set, it defaults to Production.



My machine doesn't seem to have ASPNETCORE_ENVIRONMENT environment variable set at all, as evidenced by running:



c:>set ASPNETCORE_ENVIRONMENT 
Environment variable ASPNETCORE_ENVIRONMENT not defined


So theoretically, my project (brand new from Visual Studio template), should run in Production, but...



c:dotnet run
Hosting environment: Development


What am I missing?










share|improve this question






















  • You will have a launchSettings.json file inside your project that is setting the environment variable for you.

    – Kirk Larkin
    Mar 8 at 19:33






  • 2





    Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

    – Kirk Larkin
    Mar 8 at 19:33











  • @KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

    – AngryHacker
    Mar 8 at 19:35






  • 1





    The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

    – Kirk Larkin
    Mar 8 at 19:48






  • 1





    @KirkLarkin Yep, that solved my issue. Thank you.

    – AngryHacker
    Mar 8 at 20:03













-1












-1








-1








The documentation states that If ASPNETCORE_ENVIRONMENT isn't set, it defaults to Production.



My machine doesn't seem to have ASPNETCORE_ENVIRONMENT environment variable set at all, as evidenced by running:



c:>set ASPNETCORE_ENVIRONMENT 
Environment variable ASPNETCORE_ENVIRONMENT not defined


So theoretically, my project (brand new from Visual Studio template), should run in Production, but...



c:dotnet run
Hosting environment: Development


What am I missing?










share|improve this question














The documentation states that If ASPNETCORE_ENVIRONMENT isn't set, it defaults to Production.



My machine doesn't seem to have ASPNETCORE_ENVIRONMENT environment variable set at all, as evidenced by running:



c:>set ASPNETCORE_ENVIRONMENT 
Environment variable ASPNETCORE_ENVIRONMENT not defined


So theoretically, my project (brand new from Visual Studio template), should run in Production, but...



c:dotnet run
Hosting environment: Development


What am I missing?







c# .net asp.net-core configuration .net-core






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 8 at 19:25









AngryHackerAngryHacker

27.9k76242452




27.9k76242452












  • You will have a launchSettings.json file inside your project that is setting the environment variable for you.

    – Kirk Larkin
    Mar 8 at 19:33






  • 2





    Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

    – Kirk Larkin
    Mar 8 at 19:33











  • @KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

    – AngryHacker
    Mar 8 at 19:35






  • 1





    The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

    – Kirk Larkin
    Mar 8 at 19:48






  • 1





    @KirkLarkin Yep, that solved my issue. Thank you.

    – AngryHacker
    Mar 8 at 20:03

















  • You will have a launchSettings.json file inside your project that is setting the environment variable for you.

    – Kirk Larkin
    Mar 8 at 19:33






  • 2





    Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

    – Kirk Larkin
    Mar 8 at 19:33











  • @KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

    – AngryHacker
    Mar 8 at 19:35






  • 1





    The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

    – Kirk Larkin
    Mar 8 at 19:48






  • 1





    @KirkLarkin Yep, that solved my issue. Thank you.

    – AngryHacker
    Mar 8 at 20:03
















You will have a launchSettings.json file inside your project that is setting the environment variable for you.

– Kirk Larkin
Mar 8 at 19:33





You will have a launchSettings.json file inside your project that is setting the environment variable for you.

– Kirk Larkin
Mar 8 at 19:33




2




2





Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

– Kirk Larkin
Mar 8 at 19:33





Possible duplicate of Setting Development Environment to Production locally in Angular project template with ASP.NET Core

– Kirk Larkin
Mar 8 at 19:33













@KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

– AngryHacker
Mar 8 at 19:35





@KirkLarkin I thought launchSettings.json only applied for running inside Visual Studio. I suppose that's not the case?

– AngryHacker
Mar 8 at 19:35




1




1





The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

– Kirk Larkin
Mar 8 at 19:48





The answer I've suggested as a duplicate explains it and how to force dotnet run to ignore launchSettings.json. The link provided by @abn also covers it.

– Kirk Larkin
Mar 8 at 19:48




1




1





@KirkLarkin Yep, that solved my issue. Thank you.

– AngryHacker
Mar 8 at 20:03





@KirkLarkin Yep, that solved my issue. Thank you.

– AngryHacker
Mar 8 at 20:03












1 Answer
1






active

oldest

votes


















1














This is because the dotnet run command uses the the launchsetting.json file.



You can execute the command with --no-launch-profile option so that run command does not load the launch settings file and thereby the environment variables.



If you want to use launchsetting file and sepcific profile setting from that file, then create one and use switch --launch-profile <NAME>



Hope this helps. Refer documentation for command line switches usage.






share|improve this answer























    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069740%2fhow-to-determine-which-environment-asp-net-core-app-will-run-in%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    This is because the dotnet run command uses the the launchsetting.json file.



    You can execute the command with --no-launch-profile option so that run command does not load the launch settings file and thereby the environment variables.



    If you want to use launchsetting file and sepcific profile setting from that file, then create one and use switch --launch-profile <NAME>



    Hope this helps. Refer documentation for command line switches usage.






    share|improve this answer



























      1














      This is because the dotnet run command uses the the launchsetting.json file.



      You can execute the command with --no-launch-profile option so that run command does not load the launch settings file and thereby the environment variables.



      If you want to use launchsetting file and sepcific profile setting from that file, then create one and use switch --launch-profile <NAME>



      Hope this helps. Refer documentation for command line switches usage.






      share|improve this answer

























        1












        1








        1







        This is because the dotnet run command uses the the launchsetting.json file.



        You can execute the command with --no-launch-profile option so that run command does not load the launch settings file and thereby the environment variables.



        If you want to use launchsetting file and sepcific profile setting from that file, then create one and use switch --launch-profile <NAME>



        Hope this helps. Refer documentation for command line switches usage.






        share|improve this answer













        This is because the dotnet run command uses the the launchsetting.json file.



        You can execute the command with --no-launch-profile option so that run command does not load the launch settings file and thereby the environment variables.



        If you want to use launchsetting file and sepcific profile setting from that file, then create one and use switch --launch-profile <NAME>



        Hope this helps. Refer documentation for command line switches usage.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Mar 8 at 20:58









        Manoj ChoudhariManoj Choudhari

        2,3991721




        2,3991721





























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55069740%2fhow-to-determine-which-environment-asp-net-core-app-will-run-in%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

            2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived

            Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme