~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

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
<?xml version="1.0"?>
<project name="tools" default="tools">
    <target name="tools">
        <csc target="exe" output="asmref.exe" optimize="true">
            <sources>
                <include name="asmref.cs" />
            </sources>
        </csc>

        <csc target="exe" output="updbaseaddresses.exe" optimize="true">
            <sources>
                <include name="updbaseaddresses.cs" />
            </sources>
        </csc>

        <csc target="exe" output="depcheck.exe" optimize="true">
            <sources>
                <include name="depcheck.cs" />
            </sources>
        </csc>

        <if test="${property::exists('signed')}">
            <property name="defs" value="${signed}" />
        </if>
        <property overwrite="false" name="defs" value="" />
        <csc target="exe" output="pubkey.exe" define="${defs}" optimize="true" rebuild="true">
            <sources>
                <include name="pubkey.cs" />
                <include name="../CommonAssemblyInfo.cs" />
            </sources>
        </csc>
        <exec program="pubkey.exe" useruntimeengine="true" />

        <csc target="exe" output="writeappconfig.exe" rebuild="true">
            <sources>
                <include name="writeappconfig.cs" />
            </sources>
        </csc>
        <exec program="writeappconfig.exe" useruntimeengine="true" />
    </target>
</project>