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

« back to all changes in this revision

Viewing changes to external/ikvm/tools/tools.build

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<project name="tools" default="tools">
 
3
    <target name="tools">
 
4
        <csc target="exe" output="asmref.exe" optimize="true">
 
5
            <sources>
 
6
                <include name="asmref.cs" />
 
7
            </sources>
 
8
        </csc>
 
9
 
 
10
        <csc target="exe" output="updbaseaddresses.exe" optimize="true">
 
11
            <sources>
 
12
                <include name="updbaseaddresses.cs" />
 
13
            </sources>
 
14
        </csc>
 
15
 
 
16
        <csc target="exe" output="depcheck.exe" optimize="true">
 
17
            <sources>
 
18
                <include name="depcheck.cs" />
 
19
            </sources>
 
20
        </csc>
 
21
 
 
22
        <if test="${property::exists('signed')}">
 
23
            <property name="defs" value="${signed}" />
 
24
        </if>
 
25
        <property overwrite="false" name="defs" value="" />
 
26
        <csc target="exe" output="pubkey.exe" define="${defs}" optimize="true" rebuild="true">
 
27
            <sources>
 
28
                <include name="pubkey.cs" />
 
29
                <include name="../CommonAssemblyInfo.cs" />
 
30
            </sources>
 
31
        </csc>
 
32
        <exec program="pubkey.exe" useruntimeengine="true" />
 
33
 
 
34
        <csc target="exe" output="writeappconfig.exe" rebuild="true">
 
35
            <sources>
 
36
                <include name="writeappconfig.cs" />
 
37
            </sources>
 
38
        </csc>
 
39
        <exec program="writeappconfig.exe" useruntimeengine="true" />
 
40
    </target>
 
41
</project>