Rename Prospect.Server.Steam to Prospect.Steam

This commit is contained in:
AeonLucid
2022-01-08 19:33:41 +01:00
parent 99c4fe49b9
commit e9091d7ac3
11 changed files with 88 additions and 14 deletions
+9
View File
@@ -0,0 +1,9 @@
namespace Prospect.Server.Game;
internal static class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="4.0.1" />
</ItemGroup>
</Project>