Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2015-01-14 00:06:31 +0300
committerZoltan Varga <vargaz@gmail.com>2015-01-14 00:06:31 +0300
commit032f313d5f3b99954cabb3e152b3c8d4424d5a2b (patch)
treee09b14b13cfb9b70197cc6255de6b3e91ce6cfb9 /mcs/class/System.ServiceProcess
parentbc8041cbe5152a748be1ccb323611ae903cd4443 (diff)
[bcl] Remove NET_4_0 defines from class libs.
Diffstat (limited to 'mcs/class/System.ServiceProcess')
-rw-r--r--mcs/class/System.ServiceProcess/System.ServiceProcess/ServiceInstaller.cs4
1 files changed, 0 insertions, 4 deletions
diff --git a/mcs/class/System.ServiceProcess/System.ServiceProcess/ServiceInstaller.cs b/mcs/class/System.ServiceProcess/System.ServiceProcess/ServiceInstaller.cs
index ad82f287178..20b4858ae40 100644
--- a/mcs/class/System.ServiceProcess/System.ServiceProcess/ServiceInstaller.cs
+++ b/mcs/class/System.ServiceProcess/System.ServiceProcess/ServiceInstaller.cs
@@ -48,11 +48,8 @@ namespace System.ServiceProcess
private string[] services_depended_on;
private ServiceStartMode start_type;
private string description;
-#if NET_4_0
private bool delayedAutoStart;
-#endif
-#if NET_4_0
[DefaultValue(false)]
[ServiceProcessDescription("Indicates that the service's start should be delayed after other automatically started services have started.")]
public bool DelayedAutoStart {
@@ -63,7 +60,6 @@ namespace System.ServiceProcess
delayedAutoStart = value;
}
}
-#endif
[ComVisible (false)]
[DefaultValue ("")]