aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/prebuild.xml
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2010-09-11 01:13:08 +0100
committerJustin Clark-Casey (justincc)2010-09-11 01:13:08 +0100
commit7e65590a55ba575d0086bdfc25addaf1051d799b (patch)
tree1dc11683170d45d80d7aab6eefdfcc836d3e773b /Prebuild/prebuild.xml
parentMake it clear that the "create region" command will reference ini files in th... (diff)
downloadopensim-SC_OLD-7e65590a55ba575d0086bdfc25addaf1051d799b.zip
opensim-SC_OLD-7e65590a55ba575d0086bdfc25addaf1051d799b.tar.gz
opensim-SC_OLD-7e65590a55ba575d0086bdfc25addaf1051d799b.tar.bz2
opensim-SC_OLD-7e65590a55ba575d0086bdfc25addaf1051d799b.tar.xz
Update Prebuild.exe with Prebuild r323 + an existing OpenSim specific nant hack to correctly clean up chosen OpenSim exes and dlls in bin/ on a "nant clean"
Source code is included for reference. This can go away again once Prebuild is updated with a more general mechanism for cleaning up files. The Prebuild source code here can be built with nant, or regnerated for other tools using the prebuild at {root}/bin/Prebuild.exe
Diffstat (limited to 'Prebuild/prebuild.xml')
-rw-r--r--Prebuild/prebuild.xml73
1 files changed, 73 insertions, 0 deletions
diff --git a/Prebuild/prebuild.xml b/Prebuild/prebuild.xml
new file mode 100644
index 0000000..d14b94f
--- /dev/null
+++ b/Prebuild/prebuild.xml
@@ -0,0 +1,73 @@
1<?xml version="1.0" encoding="utf-8" ?>
2<Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.9.xsd" version="1.9">
3 <Solution name="Prebuild" version="2.0.4">
4 <Configuration name="Debug">
5 <Options>
6 <CompilerDefines>DEBUG;TRACE</CompilerDefines>
7 <OptimizeCode>false</OptimizeCode>
8 <OutputPath>bin/Debug</OutputPath>
9 <DebugInformation>true</DebugInformation>
10 <SuppressWarnings>1595</SuppressWarnings>
11 </Options>
12 </Configuration>
13 <Configuration name="Release">
14 <Options>
15 <CompilerDefines>TRACE</CompilerDefines>
16 <OutputPath>bin/Release</OutputPath>
17 <OptimizeCode>true</OptimizeCode>
18 <DebugInformation>false</DebugInformation>
19 <SuppressWarnings>1595</SuppressWarnings>
20 </Options>
21 </Configuration>
22 <Files>
23 <File>prebuild.xml</File>
24 <File>prebuild</File>
25 </Files>
26 <Project name="Prebuild"
27 path="src"
28 language="C#"
29 assemblyName="prebuild"
30 icon="App.ico"
31 type="Exe"
32 rootNamespace="Prebuild"
33 startupObject="Prebuild.Prebuild"
34 version="2.0.3"
35 >
36 <Author>Matthew Holmes (matthew@wildfiregames.com)</Author>
37 <Author>Dan Moorehead (dan05a@gmail.com)</Author>
38 <Author>Dave Hudson (jendave@yahoo.com)</Author>
39 <Author>Rob Loach (http://robloach.net)</Author>
40 <Author>C.J. Adams-Collier (cjac@colliertech.org)</Author>
41 <Description>The Prebuild project generator</Description>
42 <Configuration name="Debug">
43 <Options>
44 <CompilerDefines>DEBUG;TRACE</CompilerDefines>
45 <OptimizeCode>false</OptimizeCode>
46 <OutputPath>bin/Debug</OutputPath>
47 <DebugInformation>true</DebugInformation>
48 <KeyFile>Prebuild.snk</KeyFile>
49 <SuppressWarnings>1595</SuppressWarnings>
50 </Options>
51 </Configuration>
52 <Configuration name="Release">
53 <Options>
54 <CompilerDefines>TRACE</CompilerDefines>
55 <OutputPath>bin/Release</OutputPath>
56 <OptimizeCode>true</OptimizeCode>
57 <DebugInformation>false</DebugInformation>
58 <KeyFile>Prebuild.snk</KeyFile>
59 <SuppressWarnings>1595</SuppressWarnings>
60 </Options>
61 </Configuration>
62 <Reference name="System.EnterpriseServices" />
63 <Reference name="System.Xml" />
64 <Reference name="System" />
65 <Files>
66 <Match pattern="App.ico" buildAction="EmbeddedResource"/>
67 <Match path="data" pattern="prebuild-1.9.xsd" buildAction="EmbeddedResource"/>
68 <Match path="data" pattern="autotools.xml" buildAction="EmbeddedResource"/>
69 <Match pattern="*.cs" recurse="true"/>
70 </Files>
71 </Project>
72 </Solution>
73</Prebuild>