Skip to content

Commit

Permalink
[Mono.Android.Export] Include Java.Interop.DynamicCallbackCodeGenerat…
Browse files Browse the repository at this point in the history
…or (#34)

Mono.Android.Export.dll needs to include the
`Java.Interop.DynamicCallbackCodeGenerator` type for Mono.Android to
support [Java.Interop.Export] on method declarations, and the
DynamicCallbackCodeGenerator type was missing from
Mono.Android.Export.dll.

Include Callback.cs in the Mono.Android.Export.dll compilation so that
all required types are present to support [Export].
  • Loading branch information
jonpryor authored and dellis1972 committed May 11, 2016
1 parent 5914fc1 commit 452d405
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/Mono.Android.Export/Mono.Android.Export.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,18 @@
<HintPath>$(OutputPath)..\v1.0\System.Xml.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="Java.Interop">
<HintPath>$(OutputPath)..\v1.0\Java.Interop.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="System.Runtime">
<HintPath>$(OutputPath)..\v1.0\Facades\System.Runtime.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="CallbackCode.cs" />
<Compile Include="Mono.CodeGeneration\CodeAdd.cs" />
<Compile Include="Mono.CodeGeneration\CodeAnd.cs" />
<Compile Include="Mono.CodeGeneration\CodeArgument.cs" />
Expand Down

0 comments on commit 452d405

Please sign in to comment.