Skip to content

Commit

Permalink
Compatibility mode
Browse files Browse the repository at this point in the history
  • Loading branch information
aensidhe committed Sep 21, 2018
1 parent 3c8779c commit f30016a
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 15 deletions.
5 changes: 0 additions & 5 deletions global.json

This file was deleted.

3 changes: 0 additions & 3 deletions progaudi.tarantool.sln
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@ EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "progaudi.tarantool.tests", "tests\progaudi.tarantool.tests\progaudi.tarantool.tests.csproj", "{4C681801-9A6B-4CE9-8EAA-23F80917F046}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{14BAEDF1-BEFC-4FB2-AAC9-08D397191216}"
ProjectSection(SolutionItems) = preProject
global.json = global.json
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "progaudi.tarantool.benchmark", "src\progaudi.tarantool.benchmark\progaudi.tarantool.benchmark.csproj", "{CD96AC2D-505F-4FDF-82FB-76F51CC28FF4}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@

<AssemblyName>progaudi.tarantool.benchmark</AssemblyName>
<RootNamespace>ProGaudi.Tarantool.Benchmark</RootNamespace>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/progaudi.tarantool/Model/ClientOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public ClientOptions(string replicationSource, ILog log = null, MsgPackContext c
private ClientOptions(ConnectionOptions options, ILog log, MsgPackContext context)
{
ConnectionOptions = options;
MsgPackContext = context ?? new MsgPackContext();
MsgPackContext = context ?? new MsgPackContext(binaryCompatibilityMode: true);
if (log != null)
{
LogWriter = new LogWriterWrapper(this, log);
Expand Down
2 changes: 1 addition & 1 deletion src/progaudi.tarantool/progaudi.tarantool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MsgPack.Light" Version="1.5.0" />
<PackageReference Include="MsgPack.Light" Version="1.6.0" />
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
</ItemGroup>
Expand Down
12 changes: 7 additions & 5 deletions tests/progaudi.tarantool.tests/progaudi.tarantool.tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,17 @@
<GenerateAssemblyTitleAttribute>true</GenerateAssemblyTitleAttribute>
<GenerateAssemblyProductAttribute>true</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>true</GenerateAssemblyCopyrightAttribute>

<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
<PackageReference Include="StackExchange.Redis" Version="1.2.6" />
<PackageReference Include="xunit" Version="2.3.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.1" />
<PackageReference Include="JetBrains.Annotations" Version="11.1.0" />
<PackageReference Include="Shouldly" Version="3.0.0" />
<PackageReference Include="xunit" Version="2.4.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.0" />
<PackageReference Include="JetBrains.Annotations" Version="2018.2.1" />
<PackageReference Include="Shouldly" Version="3.0.1" />
<ProjectReference Include="..\..\src\progaudi.tarantool\progaudi.tarantool.csproj" />
</ItemGroup>

Expand Down

0 comments on commit f30016a

Please sign in to comment.