mirror of
https://github.com/rmcrackan/Libation.git
synced 2026-02-15 08:33:45 -05:00
Make fields readonly Remove unnecessary casts Format document Remove unnecessary usings Sort usings Use file-level namespaces Order modifiers
17 lines
376 B
C#
17 lines
376 B
C#
using CrossPlatformClientExe;
|
|
|
|
namespace WindowsConfigApp;
|
|
|
|
class Program : OSConfigBase
|
|
{
|
|
public override Type InteropFunctionsType => typeof(WinInterop);
|
|
public override Type[] ReferencedTypes => new Type[]
|
|
{
|
|
typeof(Form1),
|
|
typeof(Bitmap),
|
|
typeof(Accessibility.IAccIdentity),
|
|
typeof(Microsoft.Win32.SystemEvents)
|
|
};
|
|
|
|
static void Main() => new Program().Run();
|
|
} |