1.0.0 commit

This commit is contained in:
mikx
2025-02-16 17:56:41 -05:00
commit b6df623f02
20 changed files with 799 additions and 0 deletions

27
tTP.csproj Normal file
View File

@@ -0,0 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Import tModLoader mod properties -->
<Import Project="..\tModLoader.targets" />
<!-- General -->
<PropertyGroup>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="9.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="MySql.Data">
<HintPath>lib\MySql.Data.dll</HintPath>
</Reference>
<Reference Include="SQLite-net">
<HintPath>lib\SQLite-net.dll</HintPath>
</Reference>
<Reference Include="System.Data.SQLite">
<HintPath>lib\System.Data.SQLite.dll</HintPath>
</Reference>
</ItemGroup>
<!-- References -->
</Project>