In a FabScaffold.Android there is a duplicate reference to System.Threading.Tasks.Extensions.dll
They are pointing to
C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\ReferenceAssemblies\Microsoft\Framework\MonoAndroid\v1.0\Facades\System.Threading.Tasks.Extensions.dll
\FabScaffold\packages\System.Threading.Tasks.Extensions.4.5.2\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll
This happens both in VS2019 and Rider 2019.3
After I manually remove reference from fsproj file
<Reference Include="System.Threading.Tasks.Extensions">
<HintPath>..\packages\System.Threading.Tasks.Extensions.4.5.2\lib\netstandard2.0\System.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
both references disappear, but I am able to build and run application in Android emulator
In a FabScaffold.Android there is a duplicate reference to System.Threading.Tasks.Extensions.dll
They are pointing to
This happens both in VS2019 and Rider 2019.3
After I manually remove reference from fsproj file
both references disappear, but I am able to build and run application in Android emulator