mirror of
https://github.com/opensim/opensim.git
synced 2026-08-13 05:05:43 +08:00
* Removed magic exclusion of MonoSqlite data store from prebuild
* Renamed project back to base.
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user