You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by fl...@apache.org on 2018/08/13 17:38:17 UTC

[11/15] tinkerpop git commit: Add dependency on Microsoft.CSharp TINKERPOP-1945 CTR

Add dependency on Microsoft.CSharp TINKERPOP-1945 CTR

We need this dependency to use dynamic in C#. We already had an indirect
dependency on it before through the dependency on Newtonsoft.Json.
Newtonsoft.Json dropped that dependency in version 11 for .NET Standard
2.0 which broke our build.
This commit only makes the dependency explicit.


Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo
Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/ea18963e
Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/ea18963e
Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/ea18963e

Branch: refs/heads/master
Commit: ea18963e543de90668f401938217f5aa21f2ff29
Parents: d6a7950
Author: Florian Hockmann <fh...@florian-hockmann.de>
Authored: Mon Aug 13 18:09:52 2018 +0200
Committer: Florian Hockmann <fh...@florian-hockmann.de>
Committed: Mon Aug 13 18:09:52 2018 +0200

----------------------------------------------------------------------
 gremlin-dotnet/glv/Gremlin.Net.csproj.template    | 1 +
 gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj | 1 +
 2 files changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ea18963e/gremlin-dotnet/glv/Gremlin.Net.csproj.template
----------------------------------------------------------------------
diff --git a/gremlin-dotnet/glv/Gremlin.Net.csproj.template b/gremlin-dotnet/glv/Gremlin.Net.csproj.template
index 965fba9..50c227a 100644
--- a/gremlin-dotnet/glv/Gremlin.Net.csproj.template
+++ b/gremlin-dotnet/glv/Gremlin.Net.csproj.template
@@ -49,6 +49,7 @@ Please see the reference documentation at Apache TinkerPop for more information
 
   <ItemGroup>
     <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
+    <PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
   </ItemGroup>
 
   <ItemGroup Condition="'\$(TargetFramework)' == 'netstandard1.3'">

http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/ea18963e/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
----------------------------------------------------------------------
diff --git a/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj b/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
index e506bf5..476ca23 100644
--- a/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
+++ b/gremlin-dotnet/src/Gremlin.Net/Gremlin.Net.csproj
@@ -49,6 +49,7 @@ Please see the reference documentation at Apache TinkerPop for more information
 
   <ItemGroup>
     <PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
+    <PackageReference Include="Microsoft.CSharp" Version="4.3.0" />
   </ItemGroup>
 
   <ItemGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">