Lavius / Base Project for New Settings Project (#1481)

* base WPF Project

* Added tests

* Update build configuration .sln file

* removed unnessesary asset files
This commit is contained in:
Lavius Motileng
2020-03-06 17:46:51 -08:00
parent 5ff146bc69
commit 59a2415a0d
20 changed files with 469 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace settings_v2
{
public class Program
{
[System.STAThreadAttribute()]
public static void Main()
{
using (new settingsui.App())
{
settings_v2.App app = new settings_v2.App();
app.InitializeComponent();
app.Run();
}
}
}
}