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
40 lines (26 loc) · 1.48 KB
/
Mongo2Go.nuspec
File metadata and controls
40 lines (26 loc) · 1.48 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
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-16"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>Mongo2Go</id>
<version>2.2.8</version>
<title>Mongo2Go</title>
<authors>Johannes Hoppe and many contributors</authors>
<owners>Johannes Hoppe</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Mongo2Go is a managed wrapper around the latest MongoDB binaries. It targets .NET Standard 1.6.
This Nuget package contains the executables of mongod, mongoimport and mongoexport v3.6.1 for Windows, Linux and macOS.
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>The 2.0 release introduced support for NET Standard 1.6 / .NET Core 2.0.</releaseNotes>
<tags>MongoDB Mongo unit test integration runner</tags>
<projectUrl>http://github.com/Mongo2Go/Mongo2Go</projectUrl>
<iconUrl>https://raw.github.com/Mongo2Go/Mongo2Go/master/src/mongo2go_200_200.png</iconUrl>
</metadata>
<files>
<file src="src\Mongo2Go\bin\Release\**" target="lib" />
<file src="tools\**" target="tools\" />
</files>
</package>