chore: stop tracking dependencies and build artifacts

This commit is contained in:
2025-12-05 21:03:18 +00:00
parent ffa219cfeb
commit 5d7c687a77
6923 changed files with 0 additions and 7370335 deletions

View File

@@ -1,5 +0,0 @@
{
"version": 2,
"contentHash": "+O7lKaIl7VUHptE0hqTd7UY1G5KDp/o8S4upG7YL4uChMNKD/U6tz9i17nMGHaD/L2AiPLgaJcaDe2XACsegGA==",
"source": "https://api.nuget.org/v3/index.json"
}

View File

@@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>MongoDB.Driver</id>
<version>3.1.0</version>
<authors>MongoDB Inc.</authors>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
<icon>packageIcon.png</icon>
<readme>README.md</readme>
<projectUrl>https://www.mongodb.com/docs/drivers/csharp/</projectUrl>
<description>Official .NET driver for MongoDB.</description>
<releaseNotes>https://github.com/mongodb/mongo-csharp-driver/releases/tag/v3.1.0</releaseNotes>
<copyright>Copyright © 2010-present MongoDB Inc.</copyright>
<tags>mongodb mongo nosql</tags>
<repository type="git" url="https://github.com/mongodb/mongo-csharp-driver.git" commit="1a43b7138e2675ac0837e1ab3d8daa48645e75b0" />
<dependencies>
<group targetFramework=".NETFramework4.7.2">
<dependency id="MongoDB.Bson" version="3.1.0" exclude="Build,Analyzers" />
<dependency id="DnsClient" version="1.6.1" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.0.0" exclude="Build,Analyzers" />
<dependency id="SharpCompress" version="0.30.1" exclude="Build,Analyzers" />
<dependency id="Snappier" version="1.0.0" exclude="Build,Analyzers" />
<dependency id="System.Buffers" version="4.5.1" exclude="Build,Analyzers" />
<dependency id="System.Net.Http" version="4.3.4" exclude="Build,Analyzers" />
<dependency id="System.Runtime.InteropServices.RuntimeInformation" version="4.3.0" exclude="Build,Analyzers" />
<dependency id="ZstdSharp.Port" version="0.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework="net6.0">
<dependency id="MongoDB.Bson" version="3.1.0" exclude="Build,Analyzers" />
<dependency id="DnsClient" version="1.6.1" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.0.0" exclude="Build,Analyzers" />
<dependency id="SharpCompress" version="0.30.1" exclude="Build,Analyzers" />
<dependency id="Snappier" version="1.0.0" exclude="Build,Analyzers" />
<dependency id="System.Buffers" version="4.5.1" exclude="Build,Analyzers" />
<dependency id="ZstdSharp.Port" version="0.7.3" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.1">
<dependency id="MongoDB.Bson" version="3.1.0" exclude="Build,Analyzers" />
<dependency id="DnsClient" version="1.6.1" exclude="Build,Analyzers" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.0.0" exclude="Build,Analyzers" />
<dependency id="SharpCompress" version="0.30.1" exclude="Build,Analyzers" />
<dependency id="Snappier" version="1.0.0" exclude="Build,Analyzers" />
<dependency id="System.Buffers" version="4.5.1" exclude="Build,Analyzers" />
<dependency id="ZstdSharp.Port" version="0.7.3" exclude="Build,Analyzers" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.IO" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Net.Http" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Runtime" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Runtime.InteropServices.RuntimeInformation" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Security.Cryptography.Algorithms" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Security.Cryptography.Encoding" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Security.Cryptography.Primitives" targetFramework=".NETFramework4.7.2" />
<frameworkAssembly assemblyName="System.Security.Cryptography.X509Certificates" targetFramework=".NETFramework4.7.2" />
</frameworkAssemblies>
</metadata>
</package>

View File

@@ -1,79 +0,0 @@
MongoDB C# Driver
=================
You can get the latest stable release from the [official Nuget.org feed](https://www.nuget.org/packages/MongoDB.Driver) or from our [github releases page](https://github.com/mongodb/mongo-csharp-driver/releases).
Getting Started
---------------
### Untyped Documents
```C#
using MongoDB.Bson;
using MongoDB.Driver;
```
```C#
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<BsonDocument>("bar");
await collection.InsertOneAsync(new BsonDocument("Name", "Jack"));
var list = await collection.Find(new BsonDocument("Name", "Jack"))
.ToListAsync();
foreach(var document in list)
{
Console.WriteLine(document["Name"]);
}
```
### Typed Documents
```C#
using MongoDB.Bson;
using MongoDB.Driver;
```
```C#
public class Person
{
public ObjectId Id { get; set; }
public string Name { get; set; }
}
```
```C#
var client = new MongoClient("mongodb://localhost:27017");
var database = client.GetDatabase("foo");
var collection = database.GetCollection<Person>("bar");
await collection.InsertOneAsync(new Person { Name = "Jack" });
var list = await collection.Find(x => x.Name == "Jack")
.ToListAsync();
foreach(var person in list)
{
Console.WriteLine(person.Name);
}
```
Documentation
-------------
* [MongoDB](https://www.mongodb.com/docs)
* [Documentation](https://www.mongodb.com/docs/drivers/csharp/current/)
Questions/Bug Reports
---------------------
* [MongoDB Community Forum](https://www.mongodb.com/community/forums/tags/c/data/drivers-odms/7/dot-net)
* [Jira](https://jira.mongodb.org/browse/CSHARP)
If youve identified a security vulnerability in a driver or any other MongoDB project, please report it according to the [instructions here](https://www.mongodb.com/docs/manual/tutorial/create-a-vulnerability-report).
Contributing
------------
Please see our [guidelines](CONTRIBUTING.md) for contributing to the driver.
Thank you to [everyone](https://github.com/mongodb/mongo-csharp-driver/graphs/contributors) who has contributed to this project.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1 +0,0 @@
vqGWx8lSNQDn2Pnb4ckDyrG603ycuk7j0fFBO8WZGrsz2fmkcuz2sxWhBFmUTUtqXWMFUeocq3GO8HaSV0Giuw==

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB