diff --git a/OpenCS2hock/OpenCS2hock.cs b/OpenCS2hock/OpenCS2hock.cs new file mode 100644 index 0000000..e8eb0e8 --- /dev/null +++ b/OpenCS2hock/OpenCS2hock.cs @@ -0,0 +1,14 @@ +namespace OpenCS2hock; + +public class OpenCS2hock +{ + private GSIServer GSIServer { get; init; } + public OpenCS2hock() + { + GSIServer gsiServer; + Installer.InstallGsi(); + this.GSIServer = new GSIServer(3000); + + this.GSIServer.Dispose(); + } +} \ No newline at end of file diff --git a/OpenCS2hock/OpenCS2hock.csproj b/OpenCS2hock/OpenCS2hock.csproj index a65f9a2..d7b8c2c 100644 --- a/OpenCS2hock/OpenCS2hock.csproj +++ b/OpenCS2hock/OpenCS2hock.csproj @@ -8,4 +8,19 @@ OpenCS2Hock + + + ResXFileCodeGenerator + Resources.Designer.cs + + + + + + True + True + Resources.resx + + + diff --git a/OpenCS2hock/Program.cs b/OpenCS2hock/Program.cs index 4c92a2d..9157aa2 100644 --- a/OpenCS2hock/Program.cs +++ b/OpenCS2hock/Program.cs @@ -4,6 +4,6 @@ public class Program { public static void Main(string[] args) { - + new OpenCS2hock(); } } \ No newline at end of file