X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Configuration%2FSystem.Configuration.Internal%2FIConfigurationManagerInternal.cs;h=ffcaa134ba76a272f9d2b4d3396319486b31bc24;hb=ab0b591ca59d99a2370bf9f579b091c5edf09ae5;hp=9a9d539b301968f0ef5415dc3a0bbfb634bf7d51;hpb=74c2e813151ef52866b58da63aeeed698b5e67dd;p=mono.git diff --git a/mcs/class/System.Configuration/System.Configuration.Internal/IConfigurationManagerInternal.cs b/mcs/class/System.Configuration/System.Configuration.Internal/IConfigurationManagerInternal.cs index 9a9d539b301..ffcaa134ba7 100644 --- a/mcs/class/System.Configuration/System.Configuration.Internal/IConfigurationManagerInternal.cs +++ b/mcs/class/System.Configuration/System.Configuration.Internal/IConfigurationManagerInternal.cs @@ -26,7 +26,6 @@ // Copyright (C) 2005 Novell, Inc (http://www.novell.com) // -#if NET_2_0 using System; @@ -35,14 +34,17 @@ namespace System.Configuration.Internal [System.Runtime.InteropServices.ComVisible (false)] public interface IConfigurationManagerInternal { + string ApplicationConfigUri { get; } string ExeLocalConfigDirectory { get; } + string ExeLocalConfigPath { get; } string ExeProductName { get; } string ExeProductVersion { get; } string ExeRoamingConfigDirectory { get; } + string ExeRoamingConfigPath { get; } + string MachineConfigPath { get; } bool SetConfigurationSystemInProgress { get; } bool SupportsUserConfig { get; } string UserConfigFilename { get; } } } -#endif