feat: 添加 Electron 的后端项目。

This commit is contained in:
real-zony 2021-10-29 19:07:45 +08:00
parent 24814dc83f
commit a468783167
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,10 @@
namespace ZonyLrcTools.LocalServer
{
public static class Program
{
public static int Main(string[] args)
{
return 0;
}
}
}

View File

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SuperSocket.WebSocket" Version="1.6.6.1" />
</ItemGroup>
</Project>