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
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
|
show 1 more comment
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
You will have alaunchSettings.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 forcedotnet run
to ignorelaunchSettings.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
|
show 1 more comment
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
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
c# .net asp.net-core configuration .net-core
asked Mar 8 at 19:25
AngryHackerAngryHacker
27.9k76242452
27.9k76242452
You will have alaunchSettings.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 forcedotnet run
to ignorelaunchSettings.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
|
show 1 more comment
You will have alaunchSettings.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 forcedotnet run
to ignorelaunchSettings.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
|
show 1 more comment
1 Answer
1
active
oldest
votes
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.
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
add a comment |
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.
add a comment |
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.
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.
answered Mar 8 at 20:58
Manoj ChoudhariManoj Choudhari
2,3991721
2,3991721
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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
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 ignorelaunchSettings.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