forked from DotNet4Neo4j/Neo4jClient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Neo4jClient.nuspec
87 lines (87 loc) · 5.27 KB
/
Neo4jClient.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Neo4jClient</id>
<version>$version$</version>
<authors>Readify, Chris Skardon</authors>
<owners>Tatham Oddie, Chris Skardon</owners>
<licenseUrl>https://github.com/Readify/Neo4jClient/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/Readify/Neo4jClient</projectUrl>
<description>A .NET client for neo4j: an open source, transactional graph database. It's pretty awesome.</description>
<tags>neo4j nosql cypher</tags>
<dependencies>
<group targetFramework="dotnet">
<dependency id="Microsoft.CSharp" version="4.0.1" />
<dependency id="Microsoft.VisualBasic" version="10.0.1" />
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="System.Collections" version="4.0.11" />
<dependency id="System.Collections.NonGeneric" version="4.0.1" />
<dependency id="System.ComponentModel" version="4.0.1" />
<dependency id="System.ComponentModel.Annotations" version="4.1.0" />
<dependency id="System.ComponentModel.TypeConverter" version="4.1.0" />
<dependency id="System.Diagnostics.Debug" version="4.0.11" />
<dependency id="System.Dynamic.Runtime" version="4.0.11" />
<dependency id="System.Globalization" version="4.0.11" />
<dependency id="System.IO" version="4.1.0" />
<dependency id="System.Linq" version="4.1.0" />
<dependency id="System.Linq.Expressions" version="4.1.0" />
<dependency id="System.Net.Http" version="4.1.0" />
<dependency id="System.Net.Primitives" version="4.0.11" />
<dependency id="System.Reflection" version="4.1.0" />
<dependency id="System.Reflection.Extensions" version="4.0.1" />
<dependency id="System.Reflection.TypeExtensions" version="4.1.0" />
<dependency id="System.Resources.ResourceManager" version="4.0.1" />
<dependency id="System.Runtime" version="4.1.0" />
<dependency id="System.Runtime.Extensions" version="4.1.0" />
<dependency id="System.Runtime.Serialization.Primitives" version="4.1.1" />
<dependency id="System.Text.Encoding" version="4.0.11" />
<dependency id="System.Text.RegularExpressions" version="4.1.0" />
<dependency id="System.Threading" version="4.0.11" />
<dependency id="System.Threading.Tasks" version="4.0.11" />
</group>
<group targetFramework="netstandard1.0">
<dependency id="Microsoft.CSharp" version="4.0.1" />
<dependency id="Microsoft.VisualBasic" version="10.0.1" />
<dependency id="Newtonsoft.Json" version="9.0.1" />
<dependency id="System.Collections" version="4.0.11" />
<dependency id="System.Collections.NonGeneric" version="4.0.1" />
<dependency id="System.ComponentModel" version="4.0.1" />
<dependency id="System.ComponentModel.Annotations" version="4.1.0" />
<dependency id="System.ComponentModel.TypeConverter" version="4.1.0" />
<dependency id="System.Diagnostics.Debug" version="4.0.11" />
<dependency id="System.Dynamic.Runtime" version="4.0.11" />
<dependency id="System.Globalization" version="4.0.11" />
<dependency id="System.IO" version="4.1.0" />
<dependency id="System.Linq" version="4.1.0" />
<dependency id="System.Linq.Expressions" version="4.1.0" />
<dependency id="System.Net.Http" version="4.1.0" />
<dependency id="System.Net.Primitives" version="4.0.11" />
<dependency id="System.Reflection" version="4.1.0" />
<dependency id="System.Reflection.Extensions" version="4.0.1" />
<dependency id="System.Reflection.TypeExtensions" version="4.1.0" />
<dependency id="System.Resources.ResourceManager" version="4.0.1" />
<dependency id="System.Runtime" version="4.1.0" />
<dependency id="System.Runtime.Extensions" version="4.1.0" />
<dependency id="System.Runtime.Serialization.Primitives" version="4.1.1" />
<dependency id="System.Text.Encoding" version="4.0.11" />
<dependency id="System.Text.RegularExpressions" version="4.1.0" />
<dependency id="System.Threading" version="4.0.11" />
<dependency id="System.Threading.Tasks" version="4.0.11" />
</group>
<group targetFramework="net45">
<dependency id="Newtonsoft.Json" version="9.0.1" />
</group>
</dependencies>
</metadata>
<files>
<file src="Neo4jClient.Full\bin\$configuration$\Neo4jClient.dll" target="lib\net45" />
<file src="Neo4jClient.Full\bin\$configuration$\Neo4jClient.pdb" target="lib\net45" />
<file src="Neo4jClient.Full\bin\$configuration$\Neo4jClient.xml" target="lib\net45" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.dll" target="lib\dotnet" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.pdb" target="lib\dotnet" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.xml" target="lib\dotnet" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.dll" target="lib\netstandard1.0" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.pdb" target="lib\netstandard1.0" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.xml" target="lib\netstandard1.0" />
</files>
</package>