Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tools.build « tools - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9883ab40744117bbf3eb83e1a88461203b4fad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?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>

        <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" />
            </sources>
        </csc>
        <exec program="pubkey.exe" useruntimeengine="true" />
    </target>
</project>