b451f83174
Captures the pre-Godot-port state of the codebase. This is the rollback anchor for the Godot port (M0 of theriapolis-rpg-implementation-plan-godot-port.md). All Phase 0 through Phase 6.5 work is included; Phase 7 is in flight. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
25 lines
911 B
XML
25 lines
911 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>Theriapolis.Tools</RootNamespace>
|
|
<AssemblyName>Theriapolis.Tools</AssemblyName>
|
|
<LangVersion>12</LangVersion>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.7" />
|
|
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.4" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Theriapolis.Core\Theriapolis.Core.csproj" />
|
|
</ItemGroup>
|
|
<!-- Copy content data files to output -->
|
|
<ItemGroup>
|
|
<Content Include="..\Content\Data\**\*"
|
|
Link="Data\%(RecursiveDir)%(Filename)%(Extension)"
|
|
CopyToOutputDirectory="PreserveNewest" />
|
|
</ItemGroup>
|
|
</Project>
|