am creating forms application but staring the application
starting error for InitializeComponent();
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Xamarin.Forms;
- namespace Popups
- {
- public partial class App : Application
- {
- public App()
- {
- InitializeComponent();
- MainPage = new Popups.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
- }
- }
- }

Suthahar JegatheesanPosted May 1, 2017, 1:13 AM
Step 1: Right Click on the .Xaml file
Step 2: Select Properties
Step 3: You will See a property called “ Custom Tool “
Step 4: Change its value from MSBuild:Compile to MSBuild:UpdateDesignTimeXaml
I believe this will help you, let me know, if any
Prabakaran RPosted Apr 22, 2017, 11:01 PM