Skip to content

Commit

Permalink
[Xamarin.Android.Build.Tasks] Make use of the ProductVersion informat…
Browse files Browse the repository at this point in the history
…ion in the Common.props

At [1] we already attempt to replace the Product and Version information
in the Xamarin.Android.Common.props.in file. However the props.in file
did not have the appropriate text to replace in it.

This commit fixes that issue so we get the correct information.

[1] https://github.com/xamarin/xamarin-android/blob/master/src/Xamarin.Android.Build.Tasks/Xamarin.Android.Build.Tasks.targets#L129
  • Loading branch information
dellis1972 committed Jun 21, 2017
1 parent edabe8a commit 191b2ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<XamarinAndroidVersion>Unknown</XamarinAndroidVersion>
<XamarinAndroidVersion>@PACKAGE_VERSION@-@PACKAGE_VERSION_BUILD@</XamarinAndroidVersion>
<_JavaInteropReferences>Java.Interop;System.Runtime</_JavaInteropReferences>
<DependsOnSystemRuntime Condition=" '$(DependsOnSystemRuntime)' == '' ">true</DependsOnSystemRuntime>
<CopyNuGetImplementations Condition=" '$(CopyNuGetImplementations)' == ''">true</CopyNuGetImplementations>
Expand Down

0 comments on commit 191b2ea

Please sign in to comment.