aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/prebuild.xml (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Build system upgrade:BlueWall2010-09-041-616/+560
| | | | | | | | | | | | | | | | | | | | | | | | Upgrading Prebuild.exe to correctly construct build solutions for crossplatform tools such as xbuild, monodevelop and nant. NOTE: Module prebuild files will need modification to work, as the prebuild must correctly define the reference path for all assemblies shipped in the OpenSimulator ./bin directory. These include assemblies such as XMLRPC.dll, OpenMetaverse.dll, Nini.dll, etc. . The entries should follow the form: <Reference name="Nini" path="../../../bin/"/> See the distributed prebuild.xml for further examples. Crossplatform tools: xbuild and monodevelop use the vs2008 OpenSim.sln and the .csproj files in each namespace. Changes to the Prebuild.exe are against svn 322 and are included in a patch attached to the mantis. And the dnpb source are available@ svn co https://dnpb.svn.sourceforge.net/svnroot/dnpb dnpb The patches are pending application by the dnpb team. After which, the un-modified upstream Prebuild.exe will work as expected.
* Unit test for ConfigurationLoader.Marck2010-08-131-0/+22
| | | | Adds a new test assembly for OpenSim.
* Relocate one System.Core reference from last commit to the Tests projectjustincc2010-08-061-1/+1
| | | | Ooops, shouldn't have assumed that the tests project came after the main on
* Add System.Core references to OpenSim.Region.CoreModules.* to fix windows buildJustin Clark-Casey (justincc)2010-08-061-0/+2
| | | | This addresses http://opensimulator.org/mantis/view.php?id=4923
* Merge branch 'moap'Justin Clark-Casey (justincc)2010-08-061-0/+1
|\
| * Implement media texture persistence over server restarts for sqliteJustin Clark-Casey (justincc)2010-07-261-0/+1
| | | | | | | | This is currently persisting media as an OSDArray serialized to LLSD XML.
* | Revert "remove long unused OpenSim/Framework/Configuration/* projects"Melanie2010-08-041-0/+52
| | | | | | | | This reverts commit cdd3f17b2bee58def470635cfc06e26b0d0145b2.
* | move ChannelDigger from its own project into the main terrain module with ↵Justin Clark-Casey (justincc)2010-07-301-24/+0
| | | | | | | | the rest of the effects
* | remove long unused OpenSim/Framework/Configuration/* projectsJustin Clark-Casey (justincc)2010-07-301-52/+0
|/
* Comment and remove JScript support. Mono 2.7Dev and 2.8 no longer include theMelanie2010-06-011-7/+0
| | | | needed libraries
* Prebuild: removed DB-specific test projects, added refs to Data.TestsAlexRa2010-05-231-70/+7
|
* Prebuild: added *.migrations as resources to MSSQL, SQLiteLegacy (just in case)AlexRa2010-05-191-0/+2
|
* Revert a revert? Am i mad? Don't answer that....!Melanie2010-05-181-0/+2
| | | | | | Revert "Revert "Looks like the new files were never added to prebuild.xml"" This reverts commit f253758c2e4e30c8e09f23135d79765c70198802.
* Revert "Looks like the new files were never added to prebuild.xml"Melanie2010-05-181-2/+0
| | | | This reverts commit df49756e7b8125595db20f63d5f9809a27642b77.
* Looks like the new files were never added to prebuild.xmlMelanie2010-05-181-0/+2
|
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2010-04-301-0/+1
|\
| * Uncommenting SQLiteNG project again. I found a Mono.Data.Sqlite.dll that ↵Diva Canto2010-04-261-2/+1
| | | | | | | | makes the compilation in Windows happy again. Not sure if this is the right dll, Justin -- I grabbed it somewhere from mono 2.4.6 for Windows.
| * * Commenting SQLiteNG out of prebuild.xml, because it's making compile fail ↵Diva Canto2010-04-261-1/+3
| | | | | | | | | | | | in Windows. Justin: you forgot to add Mono.Sqlite.dll, and I can't figure out where to grab it from! * IRegionModule.cs wants to be committed too -- EOF.
* | rename SQLiteNG to SQLite and SQLite to SQLiteLegacyJustin Clark-Casey (justincc)2010-04-301-2/+2
|/ | | | | | | this seems the least evil way forward since mono 2.6 and later will see increasing usage, and this only works with what was SQLiteNG MAC USERS WILL NEED TO CHANGE REFERENCES TO "OpenSim.Data.SQLite.dll" to "OpenSim.Data.SQLiteLegacy.dll" in OpenSim.ini and config-include/StandaloneCommon.ini (if using standalone) See the OpenSim.ini.example and StandaloneCommon.ini.example files for more details This commit also temporarily changes unsigned ParentEstateID values in the OpenSim.Data.Tests to signed temporarily, since the new plugin enforces creation of signed fields in the database (which is what the SQL actually specifies). And change data columns in sqlite is a pita.
* Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensimJustin Clark-Casey (justincc)2010-04-231-1/+1
|\
| * Renamed OpenSim.Server.exe to Robust.exe and corresponding .ini's and config.Diva Canto2010-04-221-1/+1
| |
* | Change SQLiteNG to work with mono 2.6 and above using the Mono.Data.Sqlite.dllJustin Clark-Casey (justincc)2010-04-231-2/+1
| | | | | | | | | | | | Include the library so that Windows builds correctly It appears that Windows is okay with either SQLite or SQLiteNG Incorporate the latest fixes made by Diva to OpenSim.Data.SQLite
* | Duplicate OpenSim.Data.SQLite into OpenSim.Data.SQLiteNG. SQLiteNG will ↵Justin Clark-Casey (justincc)2010-04-231-0/+37
|/ | | | shortly be changed to work under mono 2.6 and above
* Adding the SimianGrid connectorsJohn Hurliman2010-03-111-0/+2
|
* Replaced BclExtras.dll with a newer version compiled for .NET 3.5. This ↵Diva Canto2010-03-041-2/+2
| | | | solves the compilation errors that have been affecting build on Windows for the past day. Thanks lkalif for noticing the conflict.
* * Added three new helper utility files to OpenSim.Framework. MultipartForm ↵John Hurliman2010-03-031-0/+1
| | | | is used for constructing multipart/form-data requests. UntrustedWebRequest places sanity checks and policy on requests to HTTP endpoints that are not in the same trust domain (useful for Hypergrid, OpenID, etc). WebUtil contains misc. functions for managing URLs and network streams
* Fixed prebuild errors that have emerged with the mergeDiva Canto2010-03-031-44/+0
|
* Merge branch 'master' into presence-refactorMelanie2010-03-021-29/+52
|\ | | | | | | | | This is the big one. master is now presence-refactor (pre 0.7). A new branch 0.6.9-post-fixes and leading tag 0.6.9 has been created. The Presence-refactor branch remains for experimental work.
| * Formatting cleanup.Jeff Ames2010-03-011-33/+18
| |
| * Add missing refernce to prebuild (backport from presence-refactor)Melanie2010-02-091-0/+1
| |
* | Add the friends service skel and correct some namespace issuesMelanie2010-02-091-0/+31
| |
* | Fixed missing System.Xml from the new tool.Diva Canto2010-02-081-0/+1
| |
* | Merge branch 'master' into presence-refactorMelanie2010-02-081-0/+26
|\ \ | |/ | | | | | | This was a large, heavily conflicted merge and things MAY have got broken. Please check!
| * Adding the Careminster "Configger" tool to OpenSim. The tool will, when launchedMelanie2010-02-081-0/+22
| | | | | | | | | | | | in place of OpenSim, dump the config to stdout. Use -f xml, -f ini or -f mysql to get a condensed ini file, an xml file suitable for webloading, or a set of mysql insert statements.
| * Added some prebuild refs needed for mono buildingMelanie2010-01-231-0/+3
| |
| * Add first part of test for checking restore of task inventory items on oar loadJustin Clark-Casey (justincc)2010-01-221-0/+1
| | | | | | | | Passes but not yet complete
* | HG 1.5 is in place. Tested in standalone only.Diva Canto2010-01-281-0/+1
| |
* | Integrated the hyperlinking with the GridService.Diva Canto2010-01-241-0/+1
| |
* | Beginning of rewriting HG. Compiles, and runs, but HG functions not restored ↵Diva Canto2010-01-161-0/+32
| | | | | | | | yet.
* | Implement region registration with authenticationMelanie2010-01-151-0/+1
| |
* | Remove CreateCommsManagerPluginMelanie2010-01-111-43/+0
| |
* | All grid servers deleted, including user server. They served us well.Diva Canto2010-01-101-286/+1
| |
* | OpenSim.Region.Communications.* is no more. Thanks to everyone who ↵Diva Canto2010-01-101-103/+0
| | | | | | | | contributed to these!
* | Moved OpenId authentication from user server to Server.Handlers.Authentication.Diva Canto2010-01-101-0/+1
| |
* | * Starting to clean the house...Diva Canto2010-01-101-1/+0
| | | | | | | | * Fixed circular dependency
* | * OMG! All but one references to UserProfileCacheService have been rerouted!Diva Canto2010-01-101-0/+2
| | | | | | | | | | * HG is seriously broken here * Compiles. Untested.
* | Removed empty project OpenSim.Framework.Communications.Tests. The only test ↵Diva Canto2010-01-091-36/+0
| | | | | | | | in there was login, and that is gone now.
* | Inching ahead... This compiles, but very likely does not run.Diva Canto2010-01-081-0/+1
| |
* | Avatar appearance skeletonMelanie2010-01-041-0/+31
| |
* | Test client for remote user account connector and service. It seems to be ↵Diva Canto2010-01-021-0/+28
| | | | | | | | working.