feat(battle-node): scaffold SVSim.BattleNode class library
This commit is contained in:
4
SVSim.BattleNode/AssemblyMarker.cs
Normal file
4
SVSim.BattleNode/AssemblyMarker.cs
Normal file
@@ -0,0 +1,4 @@
|
||||
namespace SVSim.BattleNode;
|
||||
|
||||
/// <summary>Marker class so dotnet build emits the assembly. Remove once real content lands.</summary>
|
||||
internal static class AssemblyMarker;
|
||||
14
SVSim.BattleNode/SVSim.BattleNode.csproj
Normal file
14
SVSim.BattleNode/SVSim.BattleNode.csproj
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net8.0</TargetFramework>
|
||||
<Nullable>enable</Nullable>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
||||
<PackageReference Include="MessagePack" Version="2.5.172" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<InternalsVisibleTo Include="SVSim.UnitTests" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Reference in New Issue
Block a user