Skip to content

Commit 7967ded

Browse files
Merge pull request #13201 from anandmeg/uuf-226275
Add info on appsettings.json
2 parents af8aed6 + fdf62d6 commit 7967ded

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

docs/ide/managing-application-settings-dotnet.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Manage application settings (.NET)
33
description: Manage application settings that aren't included in the application code but are needed at runtime with the Visual Studio IDE.
4-
ms.date: 06/20/2024
4+
ms.date: 10/02/2024
55
ms.topic: conceptual
66
f1_keywords:
77
- msvse_settingsdesigner.err.nameblank
@@ -109,6 +109,10 @@ Properties.Settings.Default.Save();
109109

110110
For general information about accessing application settings through the `Settings` class, see [Application settings overview (.NET Framework)](/dotnet/framework/winforms/advanced/application-settings-overview).
111111

112+
## Migrating apps from .NET Framework to .NET
113+
114+
.NET Framework uses the *app.config* file to load settings for your app, such as connection strings and log provider configuration. Modern .NET uses the *appsettings.json* file for app settings. To learn more about converting *app.config* files to *appsettings.json*, see [Modernize after upgrading to .NET from .NET Framework](/dotnet/core/porting/modernize#appconfig).
115+
112116
## Related content
113117

114118
- [Add an app.config file (C#)](how-to-add-app-config-file.md)

0 commit comments

Comments
 (0)