diff options
Diffstat (limited to '')
-rw-r--r-- | Prebuild/prebuild | 2 | ||||
-rw-r--r-- | Prebuild/prebuild.xml | 57 |
2 files changed, 59 insertions, 0 deletions
diff --git a/Prebuild/prebuild b/Prebuild/prebuild new file mode 100644 index 0000000..0dc648d --- /dev/null +++ b/Prebuild/prebuild | |||
@@ -0,0 +1,2 @@ | |||
1 | #!/bin/sh | ||
2 | exec mono [PREFIX]/prebuild.exe "$@" | ||
diff --git a/Prebuild/prebuild.xml b/Prebuild/prebuild.xml new file mode 100644 index 0000000..e1506f3 --- /dev/null +++ b/Prebuild/prebuild.xml | |||
@@ -0,0 +1,57 @@ | |||
1 | <?xml version="1.0" encoding="utf-8" ?> | ||
2 | <Prebuild xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd" version="1.7"> | ||
3 | <Solution name="Prebuild"> | ||
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" path="src" language="C#" assemblyName="prebuild" icon="App.ico" type="Exe" rootNamespace="Prebuild" startupObject="Prebuild.Prebuild"> | ||
27 | <Configuration name="Debug"> | ||
28 | <Options> | ||
29 | <CompilerDefines>DEBUG;TRACE</CompilerDefines> | ||
30 | <OptimizeCode>false</OptimizeCode> | ||
31 | <OutputPath>bin/Debug</OutputPath> | ||
32 | <DebugInformation>true</DebugInformation> | ||
33 | <KeyFile>Prebuild.snk</KeyFile> | ||
34 | <SuppressWarnings>1595</SuppressWarnings> | ||
35 | </Options> | ||
36 | </Configuration> | ||
37 | <Configuration name="Release"> | ||
38 | <Options> | ||
39 | <CompilerDefines>TRACE</CompilerDefines> | ||
40 | <OutputPath>bin/Release</OutputPath> | ||
41 | <OptimizeCode>true</OptimizeCode> | ||
42 | <DebugInformation>false</DebugInformation> | ||
43 | <KeyFile>Prebuild.snk</KeyFile> | ||
44 | <SuppressWarnings>1595</SuppressWarnings> | ||
45 | </Options> | ||
46 | </Configuration> | ||
47 | <Reference name="System.EnterpriseServices" /> | ||
48 | <Reference name="System.Xml" /> | ||
49 | <Reference name="System" /> | ||
50 | <Files> | ||
51 | <Match pattern="App.ico" buildAction="EmbeddedResource"/> | ||
52 | <Match path="data" pattern="prebuild-1.7.xsd" buildAction="EmbeddedResource"/> | ||
53 | <Match pattern="*.cs" recurse="true"/> | ||
54 | </Files> | ||
55 | </Project> | ||
56 | </Solution> | ||
57 | </Prebuild> | ||