diff options
Diffstat (limited to 'OpenSim/Region/Application')
-rw-r--r-- | OpenSim/Region/Application/OpenSim.csproj | 4 | ||||
-rw-r--r-- | OpenSim/Region/Application/OpenSim.exe.build | 59 |
2 files changed, 61 insertions, 2 deletions
diff --git a/OpenSim/Region/Application/OpenSim.csproj b/OpenSim/Region/Application/OpenSim.csproj index 3801067..5cefa96 100644 --- a/OpenSim/Region/Application/OpenSim.csproj +++ b/OpenSim/Region/Application/OpenSim.csproj | |||
@@ -167,10 +167,10 @@ | |||
167 | <Compile Include="Application.cs"> | 167 | <Compile Include="Application.cs"> |
168 | <SubType>Code</SubType> | 168 | <SubType>Code</SubType> |
169 | </Compile> | 169 | </Compile> |
170 | <Compile Include="VersionInfo.cs"> | 170 | <Compile Include="OpenSimMain.cs"> |
171 | <SubType>Code</SubType> | 171 | <SubType>Code</SubType> |
172 | </Compile> | 172 | </Compile> |
173 | <Compile Include="OpenSimMain.cs"> | 173 | <Compile Include="VersionInfo.cs"> |
174 | <SubType>Code</SubType> | 174 | <SubType>Code</SubType> |
175 | </Compile> | 175 | </Compile> |
176 | </ItemGroup> | 176 | </ItemGroup> |
diff --git a/OpenSim/Region/Application/OpenSim.exe.build b/OpenSim/Region/Application/OpenSim.exe.build new file mode 100644 index 0000000..74eee5b --- /dev/null +++ b/OpenSim/Region/Application/OpenSim.exe.build | |||
@@ -0,0 +1,59 @@ | |||
1 | <?xml version="1.0" ?> | ||
2 | <project name="OpenSim" default="build"> | ||
3 | <target name="build"> | ||
4 | <echo message="Build Directory is ${project::get-base-directory()}/${build.dir}" /> | ||
5 | <mkdir dir="${project::get-base-directory()}/${build.dir}" /> | ||
6 | <copy todir="${project::get-base-directory()}/${build.dir}"> | ||
7 | <fileset basedir="${project::get-base-directory()}"> | ||
8 | </fileset> | ||
9 | </copy> | ||
10 | <csc target="exe" debug="${build.debug}" unsafe="False" define="TRACE;DEBUG" output="${project::get-base-directory()}/${build.dir}/${project::get-name()}.exe"> | ||
11 | <resources prefix="OpenSim" dynamicprefix="true" > | ||
12 | </resources> | ||
13 | <sources failonempty="true"> | ||
14 | <include name="Application.cs" /> | ||
15 | <include name="OpenSimMain.cs" /> | ||
16 | <include name="VersionInfo.cs" /> | ||
17 | </sources> | ||
18 | <references basedir="${project::get-base-directory()}"> | ||
19 | <lib> | ||
20 | <include name="${project::get-base-directory()}" /> | ||
21 | <include name="${project::get-base-directory()}/${build.dir}" /> | ||
22 | </lib> | ||
23 | <include name="../../../bin/Axiom.MathLib.dll" /> | ||
24 | <include name="../../../bin/Db4objects.Db4o.dll" /> | ||
25 | <include name="../../../bin/libsecondlife.dll" /> | ||
26 | <include name="../../../bin/OpenSim.Framework.dll" /> | ||
27 | <include name="../../../bin/OpenSim.Framework.Communications.dll" /> | ||
28 | <include name="../../../bin/OpenSim.Framework.Console.dll" /> | ||
29 | <include name="../../../bin/OpenSim.Framework.GenericConfig.Xml.dll" /> | ||
30 | <include name="../../../bin/OpenSim.Framework.Servers.dll" /> | ||
31 | <include name="../../../bin/OpenSim.Framework.UserManagement.dll" /> | ||
32 | <include name="../../../bin/OpenSim.Region.Caches.dll" /> | ||
33 | <include name="../../../bin/OpenSim.Region.ClientStack.dll" /> | ||
34 | <include name="../../../bin/OpenSim.Region.Communications.Local.dll" /> | ||
35 | <include name="../../../bin/OpenSim.Region.Communications.OGS1.dll" /> | ||
36 | <include name="../../../bin/OpenSim.Region.Environment.dll" /> | ||
37 | <include name="../../../bin/OpenSim.Region.Physics.Manager.dll" /> | ||
38 | <include name="../../../bin/OpenSim.Region.Terrain.BasicTerrain.dll" /> | ||
39 | <include name="System.dll" /> | ||
40 | <include name="System.Xml.dll" /> | ||
41 | <include name="../../../bin/XMLRPC.dll" /> | ||
42 | </references> | ||
43 | </csc> | ||
44 | <echo message="Copying from [${project::get-base-directory()}/${build.dir}/] to [${project::get-base-directory()}/../../../bin/" /> | ||
45 | <mkdir dir="${project::get-base-directory()}/../../../bin/"/> | ||
46 | <copy todir="${project::get-base-directory()}/../../../bin/"> | ||
47 | <fileset basedir="${project::get-base-directory()}/${build.dir}/" > | ||
48 | <include name="*.dll"/> | ||
49 | <include name="*.exe"/> | ||
50 | </fileset> | ||
51 | </copy> | ||
52 | </target> | ||
53 | <target name="clean"> | ||
54 | <delete dir="${bin.dir}" failonerror="false" /> | ||
55 | <delete dir="${obj.dir}" failonerror="false" /> | ||
56 | </target> | ||
57 | <target name="doc" description="Creates documentation."> | ||
58 | </target> | ||
59 | </project> | ||