I wonder if I delete App.config file, then copy my application to other pc, is it have any strange behavior?
Nope, it should be fine. There are various (somewhat tortuous) rules about exactly what version of the CLR etc gets used in what situations, but for the most part you're fine to just rely on the default behaviour.
You really don't need an app.config file unless you need to give specific settings.
JW Player
docs.jwplayer.com › platform › docs › apps-delete-an-app-config
Delete an app config
On the Apps page, hover over the row of the app config. A trash icon appears at the end of the row. Click the trash icon. The Delete app warning prompt appears.
Videos
IBM
ibm.com › docs › en › maas360
Deleting an app configuration
Information about deleting an app configuration.
Seqrite
docs.seqrite.com › docs › seqrite-enterprise-mobility-mgmt › apps › app-configuration › deleting-app-configuration
Deleting App Configuration - Product Documentation
The app configurations can be deleted using any of the either options: On App Configurations list page, select a single app configuration and click the Delete icon in Actions column. On App Configurations list page, select single or multiple devices. The Take Action option is displayed.
AWS
docs.aws.amazon.com › aws appconfig › user guide › using code samples to perform common aws appconfig tasks › cleaning up your environment
Cleaning up your environment - AWS AppConfig
*/ public void cleanUpDemoResources() { AppConfigClient appconfig = AppConfigClient.create(); // The name of the application to delete // IMPORTANT: verify this name corresponds to the application you wish to delete String applicationToDelete = "MyDemoApp"; appconfig.listApplicationsPaginator(ListApplicationsRequest.builder().build()).items().forEach(app -> { if (app.name().equals(applicationToDelete)) { System.out.println("Deleting App: " + app); appconfig.listConfigurationProfilesPaginator(req -> req.applicationId(app.id())).items().forEach(cp -> { System.out.println("Deleting Profile: " + c
Siemens
docs.eu1.edge.siemens.cloud › apis_and_references › iectl › V2_0_0 › publisher › standalone-app › app-config › delete.html
iectl publisher standalone-app app-config delete - Industrial Edge Documentation
iectl publisher standalone-app app-config delete -a "myapp" -c "acf013b1f48238a8ca48188c37896a" Back to top
Esri Community
community.esri.com › t5 › arcgis-experience-builder-ideas › revert-to-published-app-config-delete-draft-config › idi-p › 1384436
Revert to published app config / Delete draft conf... - Esri Community
February 28, 2025 - I've come across an issue in which the configuration of my app is broken (through using functionality of the ExB GUI only), though the published version works just fine. Even without such issues, it would be really useful to be able to revert to the published version / delete the draft of the app, as you can do in Sites, to start again from the published version:
Procore
v2.support.procore.com › product-manuals › admin-company › tutorials › delete-app-configuration
Delete an App Configuration
Locate the App configuration you want to delete and click the associated Delete button.
Amazon Web Services
docs.aws.amazon.com › cli › latest › reference › appconfig › delete-application.html
delete-application — AWS CLI 2.31.6 Command Reference
aws appconfig delete-application \ --application-id 339ohji
Amazon Web Services
docs.aws.amazon.com › cli › latest › reference › appconfig › delete-hosted-configuration-version.html
delete-hosted-configuration-version — AWS CLI 2.31.38 Command Reference
aws appconfig delete-hosted-configuration-version \ --application-id 339ohji \ --configuration-profile-id ur8hx2f \ --version-number 1
GitHub
github.com › Azure › azure-cli › issues › 22714
Cannot delete and purge an app configuration via CLI · Issue #22714 · Azure/azure-cli
April 28, 2022 - Code: NameUnavailable Message: The specified name is already in use. az appconfig purge --name MyAppConfiguration This command is in preview and under development. Reference and support levels: https://aka.ms/CLI_refstatus Failed to find the ...
Published Jun 02, 2022
Top answer 1 of 2
6
You can use something like this:
m_Configuration = System.Configuration.ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
m_Configuration.AppSettings.Settings.Remove(key);
m_Configuration.AppSettings.Settings.Add(key, value);
m_Configuration.Save(ConfigurationSaveMode.Modified);
2 of 2
1
You can add System.Configuration assembly
then do some sort of work like
Configuration config = ConfigurationManager.OpenExeConfiguration("currentApppath");
AppSettingsSection section = config.GetSection("appsettings");
section.Settings.Add .......
AWS
docs.aws.amazon.com › aws appconfig › api reference › actions › aws appconfig › deleteconfigurationprofile
DeleteConfigurationProfile - AWS AppConfig
To prevent users from unintentionally deleting actively-used configuration profiles, enable deletion protection. DELETE /applications/ApplicationId/configurationprofiles/ConfigurationProfileId HTTP/1.1 x-amzn-deletion-protection-check: DeletionProtectionCheck
AWS re:Post
repost.aws › questions › QULg_CBALjQYq09YAH5nPhMA › unable-to-delete-appconfig
Unable to delete AppConfig | AWS re:Post
November 25, 2022 - An error occurred (BadRequestException) ... Cannot delete application arn:aws:appconfig:us-east-1:xxxxxxxxxxxx:application/xxxxxxx because there are extensions associated with it. Please remove the extension associations to this application first. The CLI documentation shows a list-extension-associations command, but when I try to run the command I get: aws: error: argument operation: Invalid choice, valid choices are: create-application | create-configuration-profile ...
Bmc
bdc.bmc.com › ura › base › surgienthelp › content › Library › Application_Configurations › AppConfig-Deleting_AppConfig.htm
Deleting an Application Configuration
In the right pane, the list of existing application configurations appears. In the table, select Delete from the menu icon () beside the name of the application configuration that you want to delete.