a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
31 lines
1019 B
XML
31 lines
1019 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
****************************************************************************************************
|
|
IKVM.Java.targets
|
|
****************************************************************************************************
|
|
-->
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<UsingTask
|
|
TaskName="IKVM.MSBuild.JavaTask"
|
|
AssemblyFile="$(IkvmBinPath)\IKVM.MSBuild.dll"/>
|
|
|
|
<Target Name="CreateManifestResourceNames"></Target>
|
|
|
|
<Target Name="CoreCompile" DependsOnTargets="ResolveProjectReferences;ResolveAssemblyReferences">
|
|
<JavaTask
|
|
EmitDebugInformation="$(DebugSymbols)"
|
|
References="@(_ResolveAssemblyReferenceResolvedFiles)"
|
|
Sources="@(Compile)"
|
|
Platform="$(PlatformTarget)"
|
|
Configuration="$(Configuration)"
|
|
OutputAssembly="$(AssemblyName)"
|
|
MainFile="$(MainFile)"
|
|
TargetType="$(OutputType)"
|
|
OutputPath="$(OutputPath)"
|
|
/>
|
|
</Target>
|
|
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.Common.targets"/>
|
|
|
|
</Project> |