I recently open my one of the old Project. Which is use old Xamarin.component barchart-1.1.2.1. But as I open my Project is say
Time to Upgrade We've detected that your solution is currently using Xamarin Components, which is no longer supported.Please remove the used Components manually and reopen the solution.
I know it say that remove the Xamarin Component. But I want the alternative of that Xamarin Component which is free to use and give the same functionality.
Note And Research :
I know that all Xamarin Component now converted into Nuget Package but I can't found barchart component on Nuget Package.
Any help will be Appreciated.
To Resolve the Problem I just open the .csproj
file
and remove the all XamarinComponent define in the csproj it will solve the Time to Upgrade error.
<ItemGroup>
<XamarinComponentReference Include="Masonry">
<Version>0.6.4.0</Version>
<Visible>False</Visible>
</XamarinComponentReference>
<XamarinComponentReference Include="barchart">
<Version>1.1.2.1</Version>
<Visible>False</Visible>
</XamarinComponentReference>
<XamarinComponentReference Include="json.net">
<Version>7.0.1</Version>
<Visible>False</Visible>
</XamarinComponentReference>
</ItemGroup>