diff --git a/Prebuild/src/Core/Targets/VS2005Target.cs b/Prebuild/src/Core/Targets/VS2005Target.cs index f01906bd0c..5e513bbd75 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 1aab4a2287..f8ac8d99b5 100755 Binary files a/bin/Prebuild.exe and b/bin/Prebuild.exe differ