aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Targets/VS2005Target.cs6
-rwxr-xr-xbin/Prebuild.exebin176128 -> 176128 bytes
2 files changed, 6 insertions, 0 deletions
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
368 throw new UnknownLanguageException("Unknown .NET language: " + project.Language); 368 throw new UnknownLanguageException("Unknown .NET language: " + project.Language);
369 } 369 }
370 370
371 // Hardcoded exclusion of unbuildable project
372 if( project.Name == "OpenSim.DataStore.MonoSqlite")
373 {
374 return;
375 }
376
371 ToolInfo toolInfo = (ToolInfo)tools[project.Language]; 377 ToolInfo toolInfo = (ToolInfo)tools[project.Language];
372 string projectFile = Helper.MakeFilePath(project.FullPath, project.Name, toolInfo.FileExtension); 378 string projectFile = Helper.MakeFilePath(project.FullPath, project.Name, toolInfo.FileExtension);
373 StreamWriter ps = new StreamWriter(projectFile); 379 StreamWriter ps = new StreamWriter(projectFile);
diff --git a/bin/Prebuild.exe b/bin/Prebuild.exe
index 1aab4a2..f8ac8d9 100755
--- a/bin/Prebuild.exe
+++ b/bin/Prebuild.exe
Binary files differ