# launchsettings.json file
1. You will find this file in the "Properties" folder in the project root folder.
2. The settings in this file are used when we run this ASP.NET core project either from Visual Studio or by using .NET Core CLI.
3. This file is only used on local development machine. We do not need it for publishing our asp.net core application.
4. If there are certain settings that you want your asp.net core application to use when you publish and deploy your app, store them in appsettings.json file. We usually store our application configuration settings in this file.
5. We can also have environment specific appsettings.json files. For example, appsettings.Staging.json for the staging environment. In ASP.NET Core, in addition to appsettings.json file,
6. we also have other configuration sources like Environment variables, User Secrets, Command Line Arguments and even our own custom configuration source.
Tuesday, 22 March 2022
Launchsettings file
Subscribe to:
Post Comments (Atom)
Search This Blog
Creating your first "Alexa" Skill
Index What is Alexa What is Alexa Skill? Why is it required when Alexa already equipped with voice assistant? Dev...
About Me
Menu
-
Index What is Alexa What is Alexa Skill? Why is it required when Alexa already equipped with voice assistant? Dev...
-
Adding Azure AD B2C to React Native App Register your app in Azure active directory 1. Go to azure ad b2c, app registratio...
-
# Project file 1. .net Core project file no longer contains file or folder reference - all files and folder present within the root fol...
No comments:
Post a Comment