* Removed magic exclusion of MonoSqlite data store from prebuild

* Renamed project back to base.
This commit is contained in:
lbsa71
2007-08-12 08:11:28 +00:00
parent 822881eac5
commit 7f393791e7
3 changed files with 1 additions and 12 deletions

View File

@@ -368,12 +368,6 @@ 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);
@@ -721,11 +715,6 @@ namespace Prebuild.Core.Targets
throw new UnknownLanguageException("Unknown .NET language: " + project.Language);
}
if (project.Name == "OpenSim.DataStore.MonoSqlite")
{
continue;
}
ToolInfo toolInfo = (ToolInfo)tools[project.Language];
string path = Helper.MakePathRelativeTo(solution.FullPath, project.FullPath);