I am reading articles, forum posts about applicationSettings for almost a week now.
In almost every thread there was someone that appears to have correctly pointed out that the class libraries cannot have config files when deployed and their…
I having some issues with saving Application settings during the run time...
If i change the setting scope to user, it works fine, but in application scope, nothing being happened...
I've used :
Properties.Settings.Default.Save();
any ideas…
Reed Copsey gave this response to the following SO Question:
Which design patterns can be applied to the configuration settings problem?
I prefer to create an interface for setting query, loading, and
saving. By using dependency injection, I can…
I'm trying to save two Lists of objects in the phone ApplicationSettings, but I'm stuck at a strange issue (But it's probably me making a silly mistake somewhere).
If I only save one of the lists, it works as supposed - It'll save it, and reload it…
I am working on a new ASP.NET Core web project based on Docker and micro services and I'm wondering if there is a way to avoid storing password or sensitive data in the appsettings.json.
My question is how to specify secrets outside of the project…
I am trying to read external conf / property file in the Akka.
And I am referring this post
I have only one configuration i need to add more properties in myappConfiguration.properties. I can see properties files is able to load but not able to the…
I can't remember where I saw this but I followed the advice on a blog when setting up my app configuration for my .NET Core MVC application. I created a model like this to hold some settings my app needed:
public class BasePathSettings
{
public…
In my Azure App Service I want to update application settings, but after publish from VS the keys doesn't override values from local Web.config
In Azure it looks like:
In the result my web.config on azure contains values from local settings
…
I have a Windows Service that performs a number of periodic activities, and I want to change the settings of this service from a Windows Forms app. I'm not sure, though, about the best way to make sure the service has the most updated user…
What's a clean, canonical way to save a series of identically-structured simple config tuples in .NET Application Settings?
Say my program's got (user-scope) settings like "server name", "address", "port". I'd just add those three to the Application…
Can any one have any idea to do restrict mobile data access for a particular app in android.
Recently i found this feature on my MOTO G (2nd Gen) with 4.4.4 Kitkat version.
How to do it programmatically ?
This is the screenshot
My office uses excel to prepare our data before importing it into a SQL database. However, we have been expreiencing the following error.
When the data is imported from one computer it loses all of the leading zeros. However, when it is imported…
I have a few lines of code that have worked fine for months, and now suddenly they do not work and I get a very strange error. Here is the function in question:
public void OnCommandsRequested(SettingsPane settingsPane,…
How to update external config files (e.g.: config-ex.groovy, config-ex.properties) without rebuilding the war file in Grails?
Restarting the application server will apply the new updates from external config files.