web-dev-qa-db-ja.com

Xamarin-タイプまたは名前空間名「App」が見つかりませんでした

現在、XamarinアプリをiPhoneライブプレーヤーで実行しようとすると、このエラーが発生します。

"AppDelegate.cs(1,1): error: The type or namespace name 'App' could not be found (are you missing a using directive or an Assembly reference?)"

私のソリューションはエラーなしで構築されているため、少し行き詰まっています。これらのエラーは、最新のアップデートにアップデートするまで発生しませんでした。どんな助けでも大歓迎です。

App.xaml.cs:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using COCApp;

using Xamarin.Forms;

namespace COCApp
{
    public partial class App : Application
    {
        public App()
        {
            InitializeComponent();
            MainPage = new NavigationPage(new MainPage());
        }

        protected override void OnStart()
        {
            // Handle when your app starts
        }

        protected override void OnSleep()
        {
            // Handle when your app sleeps
        }

        protected override void OnResume()
        {
            // Handle when your app resumes
        }
    }
}

AppDelegate.cs

using System;
using System.Collections.Generic;
using System.Linq;
using COCApp;
using Foundation;
using UIKit;

namespace COCApp.iOS
{
    // The UIApplicationDelegate for the application. This class is responsible for launching the 
    // User Interface of the application, as well as listening (and optionally responding) to 
    // application events from iOS.
    [Register("AppDelegate")]
    public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
    {
        //
        // This method is invoked when the application has loaded and is ready to run. In this 
        // method you should instantiate the window, load the UI into it and then make the window
        // visible.
        //
        // You have 17 seconds to return from this method, or iOS will terminate your application.
        //
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            global::Xamarin.Forms.Forms.Init();
            LoadApplication(new App());

            return base.FinishedLaunching(app, options);
        }
    }
}
9
Jacob Dillson

私はAndroid=およびiOSでも同様の問題がありましたが、両方のプロジェクトのAppの下に赤い下線があったのを除いて、私のビルドと実行は問題ありませんでした。

Android参照->参照の追加->プロジェクトを右クリックして[OK]をクリックし、既に含まれている共有プロジェクトのチェックを外します。それから共有プロジェクトを再度追加し、エラーを修正しました。

Xamarin.Formsプロジェクトを最新のVisual Studioバージョンである.Net Standardで開始すると、PCLはもはや重要ではなくなります。

11
mbwasi

プロジェクトをチェックして、PCLへの参照があることを確認してください。

enter image description here

3
Cole Xia - MSFT

プロジェクトの命名方法が原因のようです。鉱山は「プロジェクト名」と呼ばれていましたが、参照では存在しない「Project_Name」としてインポートされたため、その参照を削除し、Android References-> Addに移動して正しい参照を追加しました参照->プロジェクト。新しいファイルの名前空間を作成すると、「プロジェクト名」のようになり、エラーが発生したため、プロジェクトを再作成しましたが、今回は名前にスペースがありません。

1
Ihor Bodnarchuk