17 lines
345 B
C#
17 lines
345 B
C#
namespace WirelessTextSyncer.Windows;
|
|
|
|
using WirelessTextSyncer.Windows.Tray;
|
|
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
ApplicationConfiguration.Initialize();
|
|
Application.Run(new TrayApplicationContext());
|
|
}
|
|
}
|