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

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