This error is currently trying to launch the Xamarin app for my iPhone in real time.
"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?)"
My solution builds without errors, so itβs a bit stuck. These errors did not occur until I updated to the last update. Any help is appreciated.
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() {
Appdelegate.cs
using System; using System.Collections.Generic; using System.Linq; using COCApp; using Foundation; using UIKit; namespace COCApp.iOS {
source share