繁体   English   中英

Xamarin - 找不到类型或命名空间名称“App”

[英]Xamarin - The type or namespace name 'App' could not be found

当前尝试将我的 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?)"

我的解决方案构建没有错误,所以有点卡住了。 这些错误直到我更新到最近的更新后才发生。 任何帮助是极大的赞赏。

应用程序.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);
        }
    }
}

我在 Android 和 iOS 上遇到了类似的问题,但我的构建和运行都很好,只是两个项目的 App 下都有一个红色下划线。

我通过右键单击 Android References->Add Reference->Projects 然后取消选中已包含的共享项目单击确定来修复它。 然后我重新添加了共享项目并修复了错误。

请注意,在最新的 Visual Studio 版本(现在的 .Net Standard)中启动 Xamarin.Forms 项目时,不再需要 PCL。

检查您的项目以确保它引用了 PCL。

在此处输入图片说明

似乎是因为您如何命名项目。 我的被​​称为“项目名称”,但在引用中它被导入为不存在的“Project_Name”,所以我只是删除了该引用并通过转到 Android 引用->添加引用->项目添加了一个正确的引用。 现在,当我创建新的文件命名空间时就像“项目名称”并且有错误,所以我最终重新创建了项目,但这次名称中没有空格

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM