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

ikvmstub.build « ikvmstub - github.com/mono/ikvm-fork.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ce15ccc9cd5c160f15115b90b43c21a667a86986 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<project name="ikvmstub" default="ikvmstub">
    <target name="ikvmstub">
        <property overwrite="false" name="signed" value="" />
        <csc target="exe" output="../bin/ikvmstub.exe" define="TRACE;${signed}">
            <sources>
                <includes name="*.cs" />
            </sources>
            <references>
                <includes name="../bin/IKVM.GNU.Classpath.dll" asis="true" />
                <includes name="../bin/IKVM.Runtime.dll" asis="true" />
                <includes name="../bin/ICSharpCode.SharpZipLib.dll" asis="true" />
            </references>
        </csc>
    </target>
</project>