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

« back to all changes in this revision

Viewing changes to external/ikvm/msbuild/IKVM.MSBuild.Java.Targets

  • 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" encoding="utf-8"?>
 
2
<!--
 
3
****************************************************************************************************
 
4
IKVM.Java.targets
 
5
****************************************************************************************************
 
6
-->
 
7
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 
8
 
 
9
  <UsingTask
 
10
            TaskName="IKVM.MSBuild.JavaTask"
 
11
            AssemblyFile="$(IkvmBinPath)\IKVM.MSBuild.dll"/>
 
12
 
 
13
  <Target Name="CreateManifestResourceNames"></Target>          
 
14
 
 
15
  <Target Name="CoreCompile">
 
16
    <JavaTask 
 
17
                EmitDebugInformation="$(DebugSymbols)"
 
18
                References="@(Reference)"
 
19
                TargetFrameworkVersion="$(TargetFrameworkVersion)"
 
20
                Sources="@(Compile)" 
 
21
                Platform="$(PlatformTarget)"
 
22
                Configuration="$(Configuration)"
 
23
                OutputAssembly="$(AssemblyName)"
 
24
                MainFile="$(MainFile)"
 
25
                TargetType="$(OutputType)"
 
26
                OutputPath="$(OutputPath)"
 
27
        />
 
28
  </Target>
 
29
 
 
30
  <PropertyGroup>
 
31
    <CopyBuildOutputToOutputDirectory >false</CopyBuildOutputToOutputDirectory>
 
32
  </PropertyGroup>
 
33
 
 
34
  <Import Project="$(MSBuildBinPath)\Microsoft.Common.targets"/>
 
35
 
 
36
</Project>
 
 
b'\\ No newline at end of file'