Main Method
This commit is contained in:
parent
f3fd128173
commit
bf2acf6835
14
OpenCS2hock/OpenCS2hock.cs
Normal file
14
OpenCS2hock/OpenCS2hock.cs
Normal file
@ -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();
|
||||
}
|
||||
}
|
@ -8,4 +8,19 @@
|
||||
<RootNamespace>OpenCS2Hock</RootNamespace>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Update="Resources.resx">
|
||||
<Generator>ResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Update="Resources.Designer.cs">
|
||||
<DesignTime>True</DesignTime>
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
@ -4,6 +4,6 @@ public class Program
|
||||
{
|
||||
public static void Main(string[] args)
|
||||
{
|
||||
|
||||
new OpenCS2hock();
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user