Initial
This commit is contained in:
16
Mino.Wpf/Mino.Wpf.csproj
Normal file
16
Mino.Wpf/Mino.Wpf.csproj
Normal file
@@ -0,0 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>WinExe</OutputType>
|
||||
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Mino\Mino.csproj"/>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Eto.Platform.Wpf" Version="2.5.2"/>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
14
Mino.Wpf/Program.cs
Normal file
14
Mino.Wpf/Program.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
using System;
|
||||
using Eto.Forms;
|
||||
|
||||
namespace Mino.Wpf
|
||||
{
|
||||
class MainClass
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
new Application(Eto.Platforms.Wpf).Run(new MainForm());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user