Skip to content

Commit 2799290

Browse files
committed
Add netstandard2.0 support.
1 parent eda7d85 commit 2799290

File tree

4 files changed

+17
-9
lines changed

4 files changed

+17
-9
lines changed

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "1.0.0"
3+
"version": "2.0.0"
44
}
55
}

progaudi.tarantool.sln

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,17 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.26228.9
4+
VisualStudioVersion = 15.0.26730.12
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "progaudi.tarantool", "src\progaudi.tarantool\progaudi.tarantool.csproj", "{DD007E9F-FB2D-4351-AAB7-F2D367B295C4}"
77
EndProject
88
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "progaudi.tarantool.tests", "tests\progaudi.tarantool.tests\progaudi.tarantool.tests.csproj", "{4C681801-9A6B-4CE9-8EAA-23F80917F046}"
99
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{14BAEDF1-BEFC-4FB2-AAC9-08D397191216}"
11+
ProjectSection(SolutionItems) = preProject
12+
global.json = global.json
13+
EndProjectSection
14+
EndProject
1015
Global
1116
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1217
Debug|Any CPU = Debug|Any CPU
@@ -45,4 +50,7 @@ Global
4550
GlobalSection(SolutionProperties) = preSolution
4651
HideSolutionNode = FALSE
4752
EndGlobalSection
53+
GlobalSection(ExtensibilityGlobals) = postSolution
54+
SolutionGuid = {ADF03192-56BA-4020-9654-59533D08C629}
55+
EndGlobalSection
4856
EndGlobal

src/progaudi.tarantool/progaudi.tarantool.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
<PropertyGroup>
33
<PatchLevelVersion Condition=" '$(BuildNumber)' == '' ">0</PatchLevelVersion>
44
<PatchLevelVersion Condition=" '$(BuildNumber)' != '' ">$(BuildNumber).1-prerelease</PatchLevelVersion>
5-
<Version>0.8.$(PatchLevelVersion)</Version>
5+
<Version>0.9.$(PatchLevelVersion)</Version>
66

77
<Description>Tarantool low-level client Library</Description>
8-
<TargetFrameworks>net46;netstandard1.4</TargetFrameworks>
8+
<TargetFrameworks>net46;netstandard1.4;netstandard2.0</TargetFrameworks>
99
<WarningsAsErrors>true</WarningsAsErrors>
1010

1111
<AssemblyName>progaudi.tarantool</AssemblyName>
@@ -23,7 +23,7 @@
2323
</PropertyGroup>
2424

2525
<ItemGroup>
26-
<PackageReference Include="MsgPack.Light" Version="1.3.0" />
26+
<PackageReference Include="MsgPack.Light" Version="1.4.0" />
2727
<PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
2828
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
2929
</ItemGroup>

tests/progaudi.tarantool.tests/progaudi.tarantool.tests.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<Description>progaudi.tarantool Class Library tests</Description>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp1.0;netcoreapp1.1</TargetFrameworks>
5+
<TargetFrameworks>netcoreapp1.0;netcoreapp1.1;netcoreapp2.0</TargetFrameworks>
66
<WarningsAsErrors>true</WarningsAsErrors>
77

88
<AssemblyName>progaudi.tarantool.tests</AssemblyName>
@@ -20,11 +20,11 @@
2020
</PropertyGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.0.0" />
24-
<PackageReference Include="StackExchange.Redis" Version="1.2.4" />
23+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
24+
<PackageReference Include="StackExchange.Redis" Version="1.2.6" />
2525
<PackageReference Include="xunit" Version="2.2.0" />
2626
<PackageReference Include="xunit.runner.visualstudio" Version="2.2.0" />
27-
<PackageReference Include="JetBrains.Annotations" Version="10.4.0" />
27+
<PackageReference Include="JetBrains.Annotations" Version="11.0.0" />
2828
<PackageReference Include="Shouldly" Version="2.8.3" />
2929
<ProjectReference Include="..\..\src\progaudi.tarantool\progaudi.tarantool.csproj" />
3030
</ItemGroup>

0 commit comments

Comments
 (0)