21 lines
379 B
C#
21 lines
379 B
C#
|
|
using OpenMaui.Platform.Linux;
|
||
|
|
|
||
|
|
namespace $safeprojectname$;
|
||
|
|
|
||
|
|
public class Program
|
||
|
|
{
|
||
|
|
public static void Main(string[] args)
|
||
|
|
{
|
||
|
|
var app = new LinuxApplication();
|
||
|
|
|
||
|
|
// Configure the application
|
||
|
|
app.Title = "$projectname$";
|
||
|
|
|
||
|
|
// Set the main page
|
||
|
|
app.MainPage = new MainPage();
|
||
|
|
|
||
|
|
// Run the application
|
||
|
|
app.Run();
|
||
|
|
}
|
||
|
|
}
|