27 lines
650 B
XML
27 lines
650 B
XML
<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> |