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,15 @@
using System;
using System.Collections.Generic;
using System.IO;
using Microsoft.Toolkit.Win32.UI.XamlHost;
namespace settingsui
{
public sealed partial class App : XamlApplication
{
public App()
{
this.Initialize();
}
}
}