-
Notifications
You must be signed in to change notification settings - Fork 21
/
prebuild.xml
executable file
·127 lines (123 loc) · 3.95 KB
/
prebuild.xml
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?xml version="1.0" encoding="utf-8"?>
<Prebuild version="1.7" xmlns="http://dnpb.sourceforge.net/schemas/prebuild-1.7.xsd">
<Solution name="Erlang.NET" activeConfig="Debug" path="./">
<Configuration name="Debug">
<Options>
<CompilerDefines>DEBUG;TRACE;WIN32</CompilerDefines>
<OptimizeCode>false</OptimizeCode>
<CheckUnderflowOverflow>false</CheckUnderflowOverflow>
<AllowUnsafe>false</AllowUnsafe>
<WarningLevel>4</WarningLevel>
<WarningsAsErrors>false</WarningsAsErrors>
<SuppressWarnings></SuppressWarnings>
<OutputPath>../bin</OutputPath>
<DebugInformation>true</DebugInformation>
<RegisterComInterop>false</RegisterComInterop>
<IncrementalBuild>true</IncrementalBuild>
<BaseAddress>285212672</BaseAddress>
<FileAlignment>4096</FileAlignment>
<NoStdLib>false</NoStdLib>
</Options>
</Configuration>
<Configuration name="Release">
<Options>
<CompilerDefines>TRACE</CompilerDefines>
<OptimizeCode>true</OptimizeCode>
<CheckUnderflowOverflow>false</CheckUnderflowOverflow>
<AllowUnsafe>false</AllowUnsafe>
<WarningLevel>4</WarningLevel>
<WarningsAsErrors>false</WarningsAsErrors>
<SuppressWarnings></SuppressWarnings>
<OutputPath>../bin</OutputPath>
<DebugInformation>false</DebugInformation>
<RegisterComInterop>false</RegisterComInterop>
<IncrementalBuild>true</IncrementalBuild>
<BaseAddress>285212672</BaseAddress>
<FileAlignment>4096</FileAlignment>
<NoStdLib>false</NoStdLib>
</Options>
</Configuration>
<Project name="Erlang.NET" language="C#" path="lib" type="Library" assemblyName="Erlang">
<Configuration name="Debug">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<Configuration name="Release">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<ReferencePath>../bin</ReferencePath>
<Reference name="System"/>
<Reference name="System.Configuration"/>
<Reference name="log4net"/>
<Files>
<Match path="." pattern="*.cs" recurse="true"/>
</Files>
</Project>
<Project name="epmd" language="C#" path="epmd" type="Exe" assemblyName="epmd">
<Configuration name="Debug">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<Configuration name="Release">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<ReferencePath>../bin</ReferencePath>
<Reference name="System"/>
<Reference name="System.Configuration"/>
<Reference name="System.Configuration"/>
<Reference name="System.Configuration.Install"/>
<Reference name="System.ServiceProcess"/>
<Reference name="log4net"/>
<Reference name="Erlang.NET"/>
<Files>
<Match path="." pattern="*.cs" recurse="false"/>
</Files>
</Project>
<Project name="ping" language="C#" path="ping" type="Exe" assemblyName="ping">
<Configuration name="Debug">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<Configuration name="Release">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<ReferencePath>../bin</ReferencePath>
<Reference name="System"/>
<Reference name="System.Configuration"/>
<Reference name="log4net"/>
<Reference name="Erlang.NET"/>
<Files>
<Match path="." pattern="*.cs" recurse="false"/>
</Files>
</Project>
<Project name="echo" language="C#" path="echo" type="Exe" assemblyName="echo">
<Configuration name="Debug">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<Configuration name="Release">
<Options>
<OutputPath>../bin</OutputPath>
</Options>
</Configuration>
<ReferencePath>../bin</ReferencePath>
<Reference name="System"/>
<Reference name="System.Configuration"/>
<Reference name="log4net"/>
<Reference name="Erlang.NET"/>
<Files>
<Match path="." pattern="*.cs" recurse="false"/>
</Files>
</Project>
</Solution>
</Prebuild>