* Prebuild vs2005 target will now skip project with name "OpenSim.DataStore.MonoSqlite"
parent
a3b1a61e6a
commit
a81bca471d
|
@ -368,6 +368,12 @@ namespace Prebuild.Core.Targets
|
||||||
throw new UnknownLanguageException("Unknown .NET language: " + project.Language);
|
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];
|
ToolInfo toolInfo = (ToolInfo)tools[project.Language];
|
||||||
string projectFile = Helper.MakeFilePath(project.FullPath, project.Name, toolInfo.FileExtension);
|
string projectFile = Helper.MakeFilePath(project.FullPath, project.Name, toolInfo.FileExtension);
|
||||||
StreamWriter ps = new StreamWriter(projectFile);
|
StreamWriter ps = new StreamWriter(projectFile);
|
||||||
|
|
BIN
bin/Prebuild.exe
BIN
bin/Prebuild.exe
Binary file not shown.
Loading…
Reference in New Issue