From 42f2675b73f3d0e02a645351f98c23e691f0d0dc Mon Sep 17 00:00:00 2001 From: Daniel Grunwald Date: Sun, 14 Jun 2009 14:34:47 +0000 Subject: [PATCH] ComponentInspector does not need log4net.dll anymore. git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@4310 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61 --- .../ComponentInspector/ComponentInspector/PostBuildEvent.proj | 1 - .../Project/Src/Services/PropertyService/PropertyService.cs | 4 ++-- src/Setup/Files.wxs | 3 --- src/Setup/Setup.wxs | 1 - 4 files changed, 2 insertions(+), 7 deletions(-) diff --git a/src/AddIns/Misc/ComponentInspector/ComponentInspector/PostBuildEvent.proj b/src/AddIns/Misc/ComponentInspector/ComponentInspector/PostBuildEvent.proj index a5ab5e2f4f..4cc84621ea 100644 --- a/src/AddIns/Misc/ComponentInspector/ComponentInspector/PostBuildEvent.proj +++ b/src/AddIns/Misc/ComponentInspector/ComponentInspector/PostBuildEvent.proj @@ -9,7 +9,6 @@ works correctly without this postbuild workaround. --> - diff --git a/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs b/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs index 9736a45951..cdb20a33d5 100644 --- a/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs +++ b/src/Main/Core/Project/Src/Services/PropertyService/PropertyService.cs @@ -76,7 +76,7 @@ namespace ICSharpCode.Core { if (properties == null) throw new InvalidOperationException("Service is not initialized."); - if (string.IsNullOrEmpty(configDirectory) || string.IsNullOrEmpty(dataDirectory) || string.IsNullOrEmpty(propertyXmlRootNodeName)) + if (string.IsNullOrEmpty(configDirectory) || string.IsNullOrEmpty(propertyXmlRootNodeName)) throw new InvalidOperationException("No file name was specified on service creation"); if (!Directory.Exists(configDirectory)) { Directory.CreateDirectory(configDirectory); @@ -113,7 +113,7 @@ namespace ICSharpCode.Core public static void Save() { - if (string.IsNullOrEmpty(configDirectory) || string.IsNullOrEmpty(dataDirectory) || string.IsNullOrEmpty(propertyXmlRootNodeName)) + if (string.IsNullOrEmpty(configDirectory) || string.IsNullOrEmpty(propertyXmlRootNodeName)) throw new InvalidOperationException("No file name was specified on service creation"); using (MemoryStream ms = new MemoryStream()) { XmlTextWriter writer = new XmlTextWriter(ms, Encoding.UTF8); diff --git a/src/Setup/Files.wxs b/src/Setup/Files.wxs index 63c28efdbf..590bf5a890 100644 --- a/src/Setup/Files.wxs +++ b/src/Setup/Files.wxs @@ -219,9 +219,6 @@ - - - diff --git a/src/Setup/Setup.wxs b/src/Setup/Setup.wxs index f1857f8420..4e8bff6611 100644 --- a/src/Setup/Setup.wxs +++ b/src/Setup/Setup.wxs @@ -177,7 +177,6 @@ -