mirror of
https://github.com/Tyrrrz/DiscordChatExporter.git
synced 2025-05-20 09:55:08 -04:00
Add command line interface and change solution structure (#26)
This commit is contained in:
parent
7da82f9ef4
commit
8515efe11b
74 changed files with 508 additions and 218 deletions
17
DiscordChatExporter.Gui/Program.cs
Normal file
17
DiscordChatExporter.Gui/Program.cs
Normal file
|
@ -0,0 +1,17 @@
|
|||
using System;
|
||||
using AmmySidekick;
|
||||
|
||||
namespace DiscordChatExporter.Gui
|
||||
{
|
||||
public static class Program
|
||||
{
|
||||
[STAThread]
|
||||
public static void Main()
|
||||
{
|
||||
var app = new App();
|
||||
app.InitializeComponent();
|
||||
RuntimeUpdateHandler.Register(app, $"/{Ammy.GetAssemblyName(app)};component/App.g.xaml");
|
||||
app.Run();
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue