25 строки
911 B
XML
25 строки
911 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
|
<Prefer32Bit>False</Prefer32Bit>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.Portable.Compatibility" Version="1.0.1" />
|
|
<PackageReference Include="MsgPack.Cli" Version="0.7.1" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
|
<PackageReference Include="protobuf-net" Version="2.1.0" />
|
|
<PackageReference Include="ZeroFormatter" Version="1.6.4" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\MessagePack.UnityShims\MessagePack.UnityShims.csproj" />
|
|
<ProjectReference Include="..\..\src\MessagePack\MessagePack.csproj" />
|
|
<ProjectReference Include="..\SharedData\SharedData.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|