Skip to content

Commit

Permalink
[bundle] Add linkeranalyzer.exe to the bundle (dotnet#1097)
Browse files Browse the repository at this point in the history
Also added bundle version property, to avoid setting it in multiple places.
  • Loading branch information
radekdoulik authored and jonpryor committed Dec 21, 2017
1 parent 3bfafea commit eb175c5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions build-tools/bundle/bundle-path.targets
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@
<Target Name="GetBundleFileName"
DependsOnTargets="_GetHashes">
<PropertyGroup>
<XABundleFileName Condition=" '$(HostOS)' != 'Windows' ">bundle-v19-h$(_VersionHash)-$(Configuration)-$(HostOS)-libzip=$(_LibZipHash),llvm=$(_LlvmHash),mono=$(_MonoHash).zip</XABundleFileName>
<XABundleFileName Condition=" '$(HostOS)' == 'Windows' ">bundle-v19-h$(_VersionHash)-$(Configuration)-Darwin-libzip=$(_LibZipHash),llvm=$(_LlvmHash),mono=$(_MonoHash).zip</XABundleFileName>
<XABundleVersion>v20</XABundleVersion>
<XABundleFileName Condition=" '$(HostOS)' != 'Windows' ">bundle-$(XABundleVersion)-h$(_VersionHash)-$(Configuration)-$(HostOS)-libzip=$(_LibZipHash),llvm=$(_LlvmHash),mono=$(_MonoHash).zip</XABundleFileName>
<XABundleFileName Condition=" '$(HostOS)' == 'Windows' ">bundle-$(XABundleVersion)-h$(_VersionHash)-$(Configuration)-Darwin-libzip=$(_LibZipHash),llvm=$(_LlvmHash),mono=$(_MonoHash).zip</XABundleFileName>
</PropertyGroup>
</Target>
</Project>
1 change: 1 addition & 0 deletions build-tools/mono-runtimes/mono-runtimes.targets
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@
/>
</ItemGroup>
<ItemGroup>
<_MonoUtility Include="linkeranalyzer.exe" />
<_MonoUtility Include="mono-symbolicate.exe" />
<_MonoUtility Include="mkbundle.exe" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion external/mono
Submodule mono updated 1 files
+1 −1 mcs/tools/Makefile

0 comments on commit eb175c5

Please sign in to comment.