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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutchinson@novell.com>2010-11-13 00:57:11 +0300
committerMichael Hutchinson <mhutchinson@novell.com>2010-11-13 00:57:11 +0300
commit947216afdbb7337592c1ff6a2d66bd1008595c9f (patch)
tree5420443e7508595461cad53b797c83f7981b2ac6 /main/src/addins/Deployment
parent8b01d35893b46166ea5d8618c5fb9370ac73898b (diff)
Disable sshfs deploy handler on Windows
Diffstat (limited to 'main/src/addins/Deployment')
-rw-r--r--main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.addin.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.addin.xml b/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.addin.xml
index 0c2cadb7e0..320abf0fa0 100644
--- a/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.addin.xml
+++ b/main/src/addins/Deployment/MonoDevelop.Deployment/MonoDevelop.Deployment.addin.xml
@@ -107,7 +107,9 @@
<Extension path = "/MonoDevelop/Deployment/DeployFileCopiers">
<Class class = "MonoDevelop.Deployment.Targets.LocalFileCopyHandler" />
- <Class class = "MonoDevelop.Deployment.Targets.SshFuseFileCopyHandler" />
+ <Condition id="Platform" value="!windows">
+ <Class class = "MonoDevelop.Deployment.Targets.SshFuseFileCopyHandler" />
+ </Condition>
</Extension>
<Extension path = "/MonoDevelop/Deployment/DeployServiceExtensions">
@@ -122,7 +124,9 @@
<Extension path = "/MonoDevelop/Deployment/FileCopyConfigurationEditors">
<Class class = "MonoDevelop.Deployment.Gui.LocalFileCopyConfigurationEditor" />
- <Class class = "MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditor" />
+ <Condition id="Platform" value="!windows">
+ <Class class = "MonoDevelop.Deployment.Gui.SshFuseFileCopyConfigurationEditor" />
+ </Condition>
</Extension>
<Extension path = "/MonoDevelop/DesignerSupport/PropertyProviders">