aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/prebuild.xml
blob: 1f81086835e299495a16e589c10df1b6599cca2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="utf-8" ?> 
<Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7">
    <Solution name="Prebuild" version="2.0.4">
	<Configuration name="Debug">
	    <Options>
		<CompilerDefines>DEBUG;TRACE</CompilerDefines>
		<OptimizeCode>false</OptimizeCode>
		<OutputPath>bin/Debug</OutputPath>
		<DebugInformation>true</DebugInformation>
		<SuppressWarnings>1595</SuppressWarnings>
	    </Options>
	</Configuration>
	<Configuration name="Release">
	    <Options>
		<CompilerDefines>TRACE</CompilerDefines>
		<OutputPath>bin/Release</OutputPath>
		<OptimizeCode>true</OptimizeCode>
		<DebugInformation>false</DebugInformation>
		<SuppressWarnings>1595</SuppressWarnings>
	    </Options>
	</Configuration>
	<Files>
	    <File>prebuild.xml</File>
	    <File>prebuild</File>
	</Files>
	<Project name="Prebuild"
                 path="src"
                 language="C#"
                 assemblyName="prebuild"
                 icon="App.ico"
                 type="Exe"
                 rootNamespace="Prebuild"
                 startupObject="Prebuild.Prebuild"
                 version="2.0.3"
                 >
	    <Author>Matthew Holmes (matthew@wildfiregames.com)</Author>
	    <Author>Dan Moorehead (dan05a@gmail.com)</Author>
	    <Author>Dave Hudson (jendave@yahoo.com)</Author>
	    <Author>Rob Loach (http://robloach.net)</Author>
	    <Author>C.J. Adams-Collier (cjac@colliertech.org)</Author>
	    <Description>The Prebuild project generator</Description>
	    <Configuration name="Debug">
		<Options>
		    <CompilerDefines>DEBUG;TRACE</CompilerDefines>
		    <OptimizeCode>false</OptimizeCode>
		    <OutputPath>bin/Debug</OutputPath>
		    <DebugInformation>true</DebugInformation>
		    <KeyFile>Prebuild.snk</KeyFile>
		    <SuppressWarnings>1595</SuppressWarnings>
		</Options>
	    </Configuration>
	    <Configuration name="Release">
		<Options>
		    <CompilerDefines>TRACE</CompilerDefines>
		    <OutputPath>bin/Release</OutputPath>
		    <OptimizeCode>true</OptimizeCode>
		    <DebugInformation>false</DebugInformation>
		    <KeyFile>Prebuild.snk</KeyFile>
		    <SuppressWarnings>1595</SuppressWarnings>
		</Options>
	    </Configuration>
	    <Reference name="System.EnterpriseServices" />
	    <Reference name="System.Xml" />
	    <Reference name="System" />
	    <Files>
		<Match pattern="App.ico" buildAction="EmbeddedResource"/>
		<Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/>
		<Match path="data" pattern="autotools.xml" buildAction="EmbeddedResource"/>
		<Match pattern="*.cs" recurse="true"/>			
	    </Files>
	</Project>
    </Solution>
</Prebuild>