diff options
author | mingchen | 2007-07-23 19:30:33 +0000 |
---|---|---|
committer | mingchen | 2007-07-23 19:30:33 +0000 |
commit | 87bddd32dfdb6ab43ef21703053935d3cda69c51 (patch) | |
tree | 70d1beaf870770d9180756ae74bd77d3376ec9fb /prebuild.xml | |
parent | Applied makomk 's patch from issue #219. (diff) | |
download | opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.zip opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.gz opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.bz2 opensim-SC_OLD-87bddd32dfdb6ab43ef21703053935d3cda69c51.tar.xz |
*Added configuration plugin (OpenSim.Framework.Configuration.HTTP.dll) that fetches a file from a remote server
*Right now, values are not saved back to the remote server, but that will be changed
*Removed some warnings from invalid references that were not used anyways
Diffstat (limited to '')
-rw-r--r-- | prebuild.xml | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/prebuild.xml b/prebuild.xml index 83c5142..d57eaf8 100644 --- a/prebuild.xml +++ b/prebuild.xml | |||
@@ -124,13 +124,38 @@ | |||
124 | <Reference name="XMLRPC.dll"/> | 124 | <Reference name="XMLRPC.dll"/> |
125 | <Reference name="OpenSim.Framework"/> | 125 | <Reference name="OpenSim.Framework"/> |
126 | <Reference name="OpenSim.Framework.Console"/> | 126 | <Reference name="OpenSim.Framework.Console"/> |
127 | <Reference name="OpenSim.Framework.Configuration"/> | ||
128 | <Reference name="OpenSim.Framework.Data"/> | 127 | <Reference name="OpenSim.Framework.Data"/> |
129 | <Files> | 128 | <Files> |
130 | <Match pattern="*.cs" recurse="true"/> | 129 | <Match pattern="*.cs" recurse="true"/> |
131 | </Files> | 130 | </Files> |
132 | </Project> | 131 | </Project> |
133 | 132 | ||
133 | <Project name="OpenSim.Framework.Configuration.HTTP" path="OpenSim/Framework/Configuration/HTTP" type="Library"> | ||
134 | <Configuration name="Debug"> | ||
135 | <Options> | ||
136 | <OutputPath>../../../../bin/</OutputPath> | ||
137 | </Options> | ||
138 | </Configuration> | ||
139 | <Configuration name="Release"> | ||
140 | <Options> | ||
141 | <OutputPath>../../../../bin/</OutputPath> | ||
142 | </Options> | ||
143 | </Configuration> | ||
144 | |||
145 | <ReferencePath>../../../../bin/</ReferencePath> | ||
146 | <Reference name="System"/> | ||
147 | <Reference name="System.Xml"/> | ||
148 | <Reference name="libsecondlife.dll"/> | ||
149 | <Reference name="Db4objects.Db4o.dll"/> | ||
150 | <Reference name="XMLRPC.dll"/> | ||
151 | <Reference name="OpenSim.Framework"/> | ||
152 | <Reference name="OpenSim.Framework.Console"/> | ||
153 | <Reference name="OpenSim.Framework.Configuration.XML"/> | ||
154 | <Reference name="OpenSim.Framework.Data"/> | ||
155 | <Files> | ||
156 | <Match pattern="*.cs" recurse="true"/> | ||
157 | </Files> | ||
158 | </Project> | ||
134 | 159 | ||
135 | <Project name="OpenSim.Framework.Servers" path="OpenSim/Framework/Servers" type="Library"> | 160 | <Project name="OpenSim.Framework.Servers" path="OpenSim/Framework/Servers" type="Library"> |
136 | <Configuration name="Debug"> | 161 | <Configuration name="Debug"> |