The “ResolveLibraryProjectImports” task failed unexpectedly

后端 未结 24 1964
醉话见心
醉话见心 2021-01-01 09:48

I have a Xamarin project, which is based on MvvmCross. The project is for both iOS and Android. I opened this project in Visual Studio 15. I got some errors, wh

24条回答
  •  时光说笑
    2021-01-01 10:05

    Well for me the problem was in my xaml file...

    Somehow while setting the Layout bounds i used '.' as a separator instead of ','

    e.g

    AbsoluteLayout.LayoutBounds="0.5.0.3,1,0.3" should have been AbsoluteLayout.LayoutBounds="0.5,0.3,1,0.3"

    Hence changing the '.' to ',' solved the problem

提交回复
热议问题