You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ServiceControl.Configuration/ExeConfiguration.cs
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,6 @@
1
1
namespaceServiceControl.Configuration
2
2
{
3
+
usingSystem;
3
4
usingSystem.Configuration;
4
5
usingSystem.IO;
5
6
usingSystem.Linq;
@@ -10,6 +11,7 @@ public static class ExeConfiguration
10
11
{
11
12
// ConfigurationManager on .NET is looking for {assembly}.dll.config files, but all previous versions of ServiceControl will have {assembly}.exe.config instead.
12
13
// This code reads in the exe.config files and adds all the values into the ConfigurationManager's collections.
14
+
[Obsolete("TODO: Check if this is still needed if all settings or can be integrared in the LegacyAppSettingsConfigurationProvider or maybe even a new provider")]
0 commit comments