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 ++++++ 1 file changed, 6 insertions(+) (limited to 'Prebuild') 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); -- cgit v1.1