Skip to content

Commit

Permalink
Fix Tizen Templates (#144)
Browse files Browse the repository at this point in the history
  • Loading branch information
rookiejava committed Oct 12, 2021
1 parent 5702379 commit 6b53b4c
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 42 deletions.

This file was deleted.

16 changes: 16 additions & 0 deletions src/Templates/src/templates/maui-blazor/Platforms/Tizen/Main.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using Microsoft.Maui;

namespace MauiApp1
{
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();

static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}

This file was deleted.

16 changes: 16 additions & 0 deletions src/Templates/src/templates/maui-mobile/Platforms/Tizen/Main.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using Microsoft.Maui;

namespace MauiApp1
{
class Program : MauiApplication
{
protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();

static void Main(string[] args)
{
var app = new Program();
app.Run(args);
}
}
}

0 comments on commit 6b53b4c

Please sign in to comment.