From 799318669cb703c87442332001f7b07594ce7128 Mon Sep 17 00:00:00 2001 From: privateclouddev <72884178+privateclouddev@users.noreply.github.com> Date: Tue, 14 Sep 2021 08:08:47 -0700 Subject: [PATCH] create main cs your app doesnt generate the correct the code for an xamarian this should be the correct for for the base code --- correctformsapp/main.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 correctformsapp/main.cs diff --git a/correctformsapp/main.cs b/correctformsapp/main.cs new file mode 100644 index 0000000..247f8be --- /dev/null +++ b/correctformsapp/main.cs @@ -0,0 +1,20 @@ +using System; +using System.IO; +using System.Linq; +using System.Collections.Generic; +using Xamarin.Forms; + +namespace CSharp_Shell +{ + + public class Program + { + public static void Main() + { + Ui.RunOnUiThread(()=> + { + Ui.LoadApplication(new Application()); + }); + } + } +}