init c# backend

This commit is contained in:
Travis Shears 2026-04-12 21:37:53 +02:00
parent 40806deaa6
commit d2621e2aec
Signed by: travisshears
GPG key ID: CB9BF1910F3F7469
4 changed files with 160 additions and 0 deletions

16
backend/Backend.csproj Normal file
View file

@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<RootNamespace>Love2DBackend</RootNamespace>
<AssemblyName>Backend</AssemblyName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="ENet-CSharp" Version="2.4.8" />
</ItemGroup>
</Project>