forked from Mongo2Go/Mongo2Go
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMongo2Go.nuspec
More file actions
31 lines (29 loc) · 3.89 KB
/
Mongo2Go.nuspec
File metadata and controls
31 lines (29 loc) · 3.89 KB
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
<?xml version="1.0" encoding="utf-16"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Mongo2Go</id>
<version>0.1.3</version>
<title>Mongo2Go</title>
<authors>Johannes Hoppe</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Mongo2Go is a manged wrapper around the latest MongoDB binaries. It targets .NET 3.5 and works in later versions, too.
This Nuget package contains the executables of mongod, mongoimport and mongoexport v2.2.0 (32bit).
Mongo2Go has two use cases:
1. Providing multiple, temporary and isolated MongoDB databases for unit tests (or to be precise: integration tests)
2. Providing a quick to set up MongoDB database for a local developer environment</description>
<language>en-US</language>
<summary>MongoDB for integration tests and local debugging</summary>
<releaseNotes>This package is identical to v0.1.2 but includes the latest stable MongoDB release v2.2.0.</releaseNotes>
<tags>MongoDB Mongo unit test integration runner</tags>
<projectUrl>http://github.com/JohannesHoppe/Mongo2Go</projectUrl>
<iconUrl>https://raw.github.com/JohannesHoppe/Mongo2Go/master/src/mongo2go_200_200.png</iconUrl>
</metadata>
<files>
<file src="src\Mongo2Go\bin\Release\Mongo2Go.dll" target="lib\net35" />
<file src="src\Mongo2Go\bin\Release\Mongo2Go.xml" target="lib\net35" />
<file src="tools\mongodb-win32-i386-2.2.0\*.*" target="tools\mongodb-win32-i386-2.2.0" />
<file src="tools\mongodb-win32-i386-2.2.0\bin\mongod.exe" target="tools\mongodb-win32-i386-2.2.0\bin" />
<file src="tools\mongodb-win32-i386-2.2.0\bin\mongoexport.exe" target="tools\mongodb-win32-i386-2.2.0\bin" />
<file src="tools\mongodb-win32-i386-2.2.0\bin\mongoimport.exe" target="tools\mongodb-win32-i386-2.2.0\bin" />
</files>
</package>