20 lines
585 B
XML
20 lines
585 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<Platforms>x64</Platforms>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Deps\Source\Google.Protobuf\Google.Protobuf.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.4.1" />
|
|
<PackageReference Include="MySql.Data" Version="6.10.6" />
|
|
<PackageReference Include="System.Reflection.Emit.Lightweight" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|