I am trying to save my .NET application settings file to the user's %MyDocument%\MyApplication folder, but I don't know …
c# file append savefiledialog appsettingsCurrently in Startup, I have my sql server string looking like this: public void ConfigureServices(IServiceCollection services) { var connection = @"Server=…
c# asp.net-core asp.net-core-1.0 appsettingsSome I do quite a lot of is read integers from AppSettings. What's the best way to do this? Rather …
web-config appsettingsHow to get values from App.Config. Code: <configuration> <appSettings> <add key="ShowRoomCode" value="1000"/> &…
wpf appsettings configurationmanagerI have created an mvc site and I'm posting a large amount of json form data (Content-Type:application/x-www-form-urlencoded) back …
.net asp.net-mvc asp.net-core-3.1 asp.net-core-1.0 appsettingsI want to create 3 AppSettings config files: Database.config Messages.config Global.config And after add in my App.config: &…
c# .net configuration appsettingsI am writing a C# .NET 2.0 .dll that is a plug in to a Larger application. The visual studio project …
c# .net-2.0 settings appsettingsI'm creating an ASP.net Core 2.0 app to run on the .net Core 2.0 runtime, both currently in their Preview versions. …
asp.net-core .net-core appsettings kestrel-http-servervar values = new NameValueCollection { { "key", ConfigurationSettings.AppSettings["API-Key"].ToString() }, { "image", Convert.ToBase64String(File.ReadAllBytes(photo.ToString())) } }; What's the new …
c# configuration app-config appsettingsHaving trouble figuring out how to read appsettings.json values outside of the startup.cs. What I would like to …
c# asp.net-core-mvc appsettings