forked from dotnet/java-interop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXamarin.Android.Tools.JniMarshalMethodGenerator.csproj
More file actions
40 lines (32 loc) · 1.77 KB
/
Copy pathXamarin.Android.Tools.JniMarshalMethodGenerator.csproj
File metadata and controls
40 lines (32 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<OutputType>Exe</OutputType>
<LangVersion>8.0</LangVersion>
<AssemblyName>jnimarshalmethod-gen</AssemblyName>
</PropertyGroup>
<Import Project="..\..\TargetFrameworkDependentValues.props" />
<Import Project="..\..\build-tools\scripts\cecil.projitems" />
<Import Project="..\..\src\Java.Interop.NamingCustomAttributes\Java.Interop.NamingCustomAttributes.projitems" Label="Shared" Condition="Exists('..\..\src\Java.Interop.NamingCustomAttributes\Java.Interop.NamingCustomAttributes.projitems')" />
<PropertyGroup>
<OutputPath>$(UtilityOutputFullPath)</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(_DumpRegisterNativeMembers)' == 'True' ">
<DefineConstants>_DUMP_REGISTER_NATIVE_MEMBERS;$(DefineConstants)</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mono.Options" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" />
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(_DumpRegisterNativeMembers)' == 'True' ">
<PackageReference Include="Mono.Linq.Expressions" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Java.Interop.Export\Java.Interop.Export.csproj" />
<ProjectReference Include="..\..\src\Java.Interop.Localization\Java.Interop.Localization.csproj" />
<ProjectReference Include="..\..\src\Java.Interop\Java.Interop.csproj" />
<ProjectReference Include="..\..\src\Java.Runtime.Environment\Java.Runtime.Environment.csproj" />
<ProjectReference Include="..\..\src\Java.Interop.Tools.Cecil\Java.Interop.Tools.Cecil.csproj" />
</ItemGroup>
</Project>