mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 03:07:04 +02:00
fixed runtime xaml load failure
This commit is contained in:
20
src/core/Microsoft.PowerToys.Settings.UI.Runner/Program.cs
Normal file
20
src/core/Microsoft.PowerToys.Settings.UI.Runner/Program.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SettingsRunner
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
[System.STAThreadAttribute()]
|
||||
public static void Main()
|
||||
{
|
||||
using (new SettingsUI.App())
|
||||
{
|
||||
SettingsRunner.App app = new SettingsRunner.App();
|
||||
app.InitializeComponent();
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user