This commit is contained in:
2020-06-17 21:03:51 +02:00
commit 2997ab7c7e
20 changed files with 466 additions and 0 deletions

23
Mino.Gtk/Mino.Gtk.csproj Normal file
View File

@@ -0,0 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Default' ">
<StartAction>Project</StartAction>
<ExternalConsole>false</ExternalConsole>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Mino\Mino.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Eto.Platform.Gtk" Version="2.5.2" />
</ItemGroup>
</Project>

17
Mino.Gtk/Program.cs Normal file
View File

@@ -0,0 +1,17 @@
using System;
using Eto;
using Eto.Drawing;
using Eto.Forms;
using Eto.GtkSharp.Forms.Controls;
namespace Mino.Gtk
{
class MainClass
{
[STAThread]
public static void Main(string[] args)
{
new Application(Eto.Platforms.Gtk).Run(new MainForm());
}
}
}