Navigation Menu

Skip to content

Commit

Permalink
[2019-06] [bcl] Add Mono.Cecil.Mdb assembly to monodroid_tools… (#15718)
Browse files Browse the repository at this point in the history
* [bcl] Add Mono.Cecil.Mdb assembly to monodroid_tools profile

Requested by the XA team.

* [csproj] Update project files
  • Loading branch information
monojenkins authored and akoeplinger committed Jul 17, 2019
1 parent d410e07 commit a79115d
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 2 deletions.
1 change: 1 addition & 0 deletions mcs/class/Makefile
Expand Up @@ -117,6 +117,7 @@ monodroid_dirs_parallel := \

monodroid_tools_dirs_parallel := \
Mono.Cecil \
Mono.Cecil.Mdb \
Mono.CompilerServices.SymbolWriter \
ICSharpCode.SharpZipLib \
monodoc \
Expand Down
22 changes: 20 additions & 2 deletions mcs/class/Mono.Cecil.Mdb/Mono.Cecil.Mdb.csproj
Expand Up @@ -30,6 +30,11 @@
<IntermediateOutputPath>./../../class/obj/$(AssemblyName)-net_4_x-$(HostPlatform)</IntermediateOutputPath>
<DefineConstants>NET_4_0;NET_4_5;NET_4_6;MONO;WIN_PLATFORM;CECIL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Platform)' == 'monodroid_tools' ">
<OutputPath>./../../class/lib/monodroid_tools</OutputPath>
<IntermediateOutputPath>./../../class/obj/$(AssemblyName)-monodroid_tools</IntermediateOutputPath>
<DefineConstants>NET_4_6;MONO;MONODROID_TOOLS;WIN_PLATFORM;CECIL</DefineConstants>
</PropertyGroup>
<!-- @ALL_PROFILE_PROPERTIES@ -->
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -58,12 +63,25 @@
</ItemGroup>
<!--End of common files-->
<!-- @ALL_SOURCES@ -->
<!-- @COMMON_PROJECT_REFERENCES@ -->
<ItemGroup>
<ProjectReference Include="../Mono.Cecil/Mono.Cecil.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'net_4_x' ">
<ProjectReference Include="../System/System.csproj" />
<ProjectReference Include="../Mono.Cecil/Mono.Cecil.csproj" />
<ProjectReference Include="../corlib/corlib.csproj" />
</ItemGroup>
<ItemGroup Condition=" '$(Platform)' == 'monodroid_tools' ">
<Reference Include="./../../../external/binary-reference-assemblies/v4.6/System.dll">
<SpecificVersion>False</SpecificVersion>
<HintPath>./../../../external/binary-reference-assemblies/v4.6/System.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="./../../../external/binary-reference-assemblies/v4.6/mscorlib.dll">
<SpecificVersion>False</SpecificVersion>
<HintPath>./../../../external/binary-reference-assemblies/v4.6/mscorlib.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<!-- @ALL_REFERENCES@ -->
<!-- @ALL_RESOURCES@ -->
<PropertyGroup>
Expand Down

0 comments on commit a79115d

Please sign in to comment.