web-dev-qa-db-ja.com

Nugetを更新すると例外が処理されない:System.TypeLoadException

テスト目的で新しいマスターxamarinページを開始し、xamarin.Android.supportおよびxamarin.formsバージョンのnugetパッケージを更新しています。その後、私のプログラムは例外を受け取ります:

LoadApplicationは例外エラーを受け取ります:

    base.OnCreate(savedInstanceState);
    global::Xamarin.Forms.Forms.Init(this, savedInstanceState);
    LoadApplication(new App());


Unhandled Exception:

System.TypeLoadException: Could not load type of field 'Xamarin.Forms.Platform.Android.RendererPool:_freeRenderers' (0) due to: Could not resolve type with token 01000275 from typeref (expected class 'System.Collections.Generic.Stack`1' in Assembly 'mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e') Assembly:mscorlib, Version=2.0.5.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e type:System.Collections.Generic.Stack`1 member:(null) occurred
7
Joey

クラッシュの原因となっているスプラッシュスクリーン。次の回答は、最新のxamarinフォーム(4.2.0.815419)とVS 2019 Ent(16.3.1)の私の問題を修正しました

ここをチェック

0
shalin