I am trying to implement finger touch login in my xamarin app
for that I have installed package Plugin. Fingerprint version 1.4.5.0
but it gives me an error while building
The primary reference "Plugin.Fingerprint, Version=1.4.5.0, Culture=neutral, processorArchitecture=MSIL" could not be resolved because it was built against the ".NETPortable,Version=v5.0" framework. This is a higher version than the currently targeted framework ".NETPortable,Version=v4.5,Profile=Profile111".
after searching for that error I got this solution
I've converted all projects in my Xamarin solution to netstandard1.1 (I used your guide) and now all works
but I m wondering it will not affect other feature of application? means this is the right solution? to degrade version like this will not affect any other things?
if yes what is the other solution to this error?
please help
I ran into this issue and Visual Studio Mac had the hint path wrong. Newer versions of VS Mac don't appear to allow you to change the Mono version, so the advice above didn't work for me.
Here's what I had to change:
Right click the project and select "Edit Project File"
Look for the library that's causing you issues. For example:
< Reference Include="Polly, Version=5.1.0.0, Culture=neutral, processorArchitecture=MSIL"> ....\packages\Polly.5.1.0\lib\ netstandard1.0 \ Polly.dll < /HintPath>
(sorry for the weird markup... the editor is NOT liking the XML for some reason)
Note that it's targeting netstandard1.0? Well, if it's PCL 4.5, you need to change that to the following:
If you look in your packages folder, you should see the net45 folder next to the netstandard1.0 folder. As long as your packages.config pointed to the right target framework, the package should have been restored properly. However, somehow VS Mac is using the wrong hint path. I don't know if this is a bug, but I've reported it nonetheless :)