mirror of
https://git.lewd.wtf/PGR/ascnet
synced 2025-12-13 07:25:09 +01:00
Add project files.
This commit is contained in:
19
AscNet/AscNet.csproj
Normal file
19
AscNet/AscNet.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net7.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\AscNet.SDKServer\AscNet.SDKServer.csproj" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="..\Resources\**">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
13
AscNet/Program.cs
Normal file
13
AscNet/Program.cs
Normal file
@@ -0,0 +1,13 @@
|
||||
using AscNet.Common.Util;
|
||||
|
||||
namespace AscNet
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
Logger.c.Log("Starting...");
|
||||
SDKServer.SDKServer.Main(args);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user