Add project files.

This commit is contained in:
Denis
2021-11-09 08:52:14 +02:00
parent d3777dae91
commit b4970add7c
3 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

20
BMGEditor/Program.cs Normal file
View File

@@ -0,0 +1,20 @@
using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
namespace BMGEditor
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ApplicationConfiguration.Initialize();
}
}
}