mirror of
https://github.com/ACEmulator/ACE
synced 2026-08-17 12:26:06 -04:00
* Change child assemblies to AnyCPU. Ace.Server still x64 * Fix LifestonedConverter for > ushort.MaxValue weenies * Allow DbContexts to be configured/used by other applications * Make GetWeenie public * SQLWriters should take IDictionary, not Dictionary * Include links * Keep tests as x64
19 lines
610 B
XML
19 lines
610 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Platforms>AnyCPU</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="log4net" Version="2.0.8" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.1.1" />
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\ACE.Entity\ACE.Entity.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|