Skip to content

Commit

Permalink
Fix Control.Samples.Singleproject Main correctly (#150)
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Feb 4, 2022
1 parent 497cf2c commit 2379ba8
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using Microsoft.Maui;

namespace Maui.Controls.Sample.SingleProject
{
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();

static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}
24 changes: 0 additions & 24 deletions src/Controls/samples/Controls.Sample.SingleProject/Tizen/Main.cs

This file was deleted.

0 comments on commit 2379ba8

Please sign in to comment.