mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 11:16:51 +02:00
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:
20
src/settings_v2/Program.cs
Normal file
20
src/settings_v2/Program.cs
Normal 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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user