From a81bca471d09b6c49e9e59413cb5f8873b9a922b Mon Sep 17 00:00:00 2001
From: lbsa71
Date: Wed, 8 Aug 2007 15:36:15 +0000
Subject: * Prebuild vs2005 target will now skip project with name
 "OpenSim.DataStore.MonoSqlite"

---
 Prebuild/src/Core/Targets/VS2005Target.cs |   6 ++++++
 bin/Prebuild.exe                          | Bin 176128 -> 176128 bytes
 2 files changed, 6 insertions(+)

diff --git a/Prebuild/src/Core/Targets/VS2005Target.cs b/Prebuild/src/Core/Targets/VS2005Target.cs
index f01906b..5e513bb 100644
--- a/Prebuild/src/Core/Targets/VS2005Target.cs
+++ b/Prebuild/src/Core/Targets/VS2005Target.cs
@@ -368,6 +368,12 @@ namespace Prebuild.Core.Targets
                 throw new UnknownLanguageException("Unknown .NET language: " + project.Language);
             }
 
+            // Hardcoded exclusion of unbuildable project
+            if( project.Name == "OpenSim.DataStore.MonoSqlite")
+            {
+                return;
+            }
+            
             ToolInfo toolInfo = (ToolInfo)tools[project.Language];
             string projectFile = Helper.MakeFilePath(project.FullPath, project.Name, toolInfo.FileExtension);
             StreamWriter ps = new StreamWriter(projectFile);
diff --git a/bin/Prebuild.exe b/bin/Prebuild.exe
index 1aab4a2..f8ac8d9 100755
Binary files a/bin/Prebuild.exe and b/bin/Prebuild.exe differ
-- 
cgit v1.1