-
Notifications
You must be signed in to change notification settings - Fork 148
/
Copy pathNeo4jClient.nuspec
38 lines (38 loc) · 2.03 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
<?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, Tatham Oddie, Charlotte Skardon</authors>
<owners>Charlotte Skardon</owners>
<licenseUrl>https://github.com/DotNet4Neo4j/Neo4jClient/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/DotNet4Neo4j/Neo4jClient</projectUrl>
<description>A .NET client for neo4j: an open source, transactional graph database. It's pretty awesome.</description>
<tags>neo4j nosql cypher bolt graph</tags>
<dependencies>
<group targetFramework="net452">
<dependency id="Newtonsoft.Json" version="12.0.3" />
<dependency id="Neo4j.Driver.Signed" version="4.0.0" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Neo4j.Driver.Signed" version="4.0.0" />
<dependency id="Newtonsoft.Json" version="12.0.3" />
</group>
<group targetFramework="net46">
<dependency id="Newtonsoft.Json" version="12.0.3" />
<dependency id="Neo4j.Driver.Signed" version="4.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.dll" target="lib\net452"/>
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.pdb" target="lib\net452"/>
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.xml" target="lib\net452"/>
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.dll" target="lib\net46" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.pdb" target="lib\net46" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.xml" target="lib\net46" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.dll" target="lib\netstandard2.0" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.pdb" target="lib\netstandard2.0" />
<file src="Neo4jClient\bin\$configuration$\Neo4jClient.xml" target="lib\netstandard2.0" />
</files>
</package>