* Prebuild vs2005 target will now skip project with name "OpenSim.DataStore.MonoSqlite"

afrisby
lbsa71 2007-08-08 15:36:15 +00:00
parent a3b1a61e6a
commit a81bca471d
2 changed files with 6 additions and 0 deletions

View File

@ -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);

Binary file not shown.