├── .gitignore ├── MongoDBExample ├── MongoDBExample.sln ├── MongoDBExample │ ├── Business │ │ ├── Abstractions │ │ │ └── IPersonService.cs │ │ ├── Implementations │ │ │ └── PersonService.cs │ │ └── ServicesExtension.cs │ ├── Controllers │ │ └── ExampleController.cs │ ├── Data │ │ ├── BsonCollectionAttribute.cs │ │ ├── IMongoDBContext.cs │ │ ├── MongoDBContext.cs │ │ ├── RepositoriesExtension.cs │ │ └── Repository │ │ │ ├── Abstractions │ │ │ ├── IBaseRepository.cs │ │ │ └── IPersonRepository.cs │ │ │ └── Implementations │ │ │ ├── BaseRepository.cs │ │ │ └── PersonRepository.cs │ ├── Entities │ │ ├── BusinessEntities │ │ │ ├── Base │ │ │ │ └── BaseEntity.cs │ │ │ └── Person.cs │ │ └── ClientEntities │ │ │ ├── Request │ │ │ └── AddPersonRequest.cs │ │ │ └── Response │ │ │ └── GetPersonResponse.cs │ ├── Helpers │ │ ├── IMongoDbSettings.cs │ │ └── MongoDbSettings.cs │ ├── MongoDBExample.csproj │ ├── MongoDBExample.csproj.user │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── NUnitTestProjectExample │ ├── NUnitTestProjectExample.csproj │ ├── PersonServiceTest.cs │ ├── bin │ └── Debug │ │ └── netcoreapp3.1 │ │ ├── Castle.Core.dll │ │ ├── DnsClient.dll │ │ ├── FizzWare.NBuilder.dll │ │ ├── Microsoft.DotNet.InternalAbstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.Abstractions.dll │ │ ├── Microsoft.Extensions.DependencyInjection.dll │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.dll │ │ ├── Microsoft.TestPlatform.PlatformAbstractions.dll │ │ ├── Microsoft.TestPlatform.Utilities.dll │ │ ├── Microsoft.VisualStudio.CodeCoverage.Shim.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.ObjectModel.dll │ │ ├── MongoDB.Bson.dll │ │ ├── MongoDB.Driver.Core.dll │ │ ├── MongoDB.Driver.dll │ │ ├── MongoDB.Libmongocrypt.dll │ │ ├── MongoDBExample.dll │ │ ├── MongoDBExample.exe │ │ ├── MongoDBExample.pdb │ │ ├── NSubstitute.dll │ │ ├── NUnit3.TestAdapter.dll │ │ ├── NUnit3.TestAdapter.pdb │ │ ├── NUnitTestProjectExample.deps.json │ │ ├── NUnitTestProjectExample.dll │ │ ├── NUnitTestProjectExample.pdb │ │ ├── NUnitTestProjectExample.runtimeconfig.dev.json │ │ ├── NUnitTestProjectExample.runtimeconfig.json │ │ ├── Newtonsoft.Json.dll │ │ ├── NuGet.Frameworks.dll │ │ ├── Properties │ │ └── launchSettings.json │ │ ├── SharpCompress.dll │ │ ├── System.Xml.XPath.XmlDocument.dll │ │ ├── appsettings.Development.json │ │ ├── appsettings.json │ │ ├── cs │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── de │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── es │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── fr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── it │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ja │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ko │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── nunit.engine.api.dll │ │ ├── nunit.engine.dll │ │ ├── nunit.framework.dll │ │ ├── nunit_random_seed.tmp │ │ ├── pl │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── pt-BR │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── ru │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── testhost.dll │ │ ├── tr │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ ├── zh-Hans │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ │ └── zh-Hant │ │ ├── Microsoft.TestPlatform.CommunicationUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CoreUtilities.resources.dll │ │ ├── Microsoft.TestPlatform.CrossPlatEngine.resources.dll │ │ ├── Microsoft.VisualStudio.TestPlatform.Common.resources.dll │ │ └── Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll │ └── obj │ ├── Debug │ └── netcoreapp3.1 │ │ ├── NUnitTestProjectExample.AssemblyInfo.cs │ │ ├── NUnitTestProjectExample.AssemblyInfoInputs.cache │ │ ├── NUnitTestProjectExample.assets.cache │ │ ├── NUnitTestProjectExample.csproj.CopyComplete │ │ ├── NUnitTestProjectExample.csproj.CoreCompileInputs.cache │ │ ├── NUnitTestProjectExample.csproj.FileListAbsolute.txt │ │ ├── NUnitTestProjectExample.csprojAssemblyReference.cache │ │ ├── NUnitTestProjectExample.dll │ │ ├── NUnitTestProjectExample.genruntimeconfig.cache │ │ └── NUnitTestProjectExample.pdb │ ├── NUnitTestProjectExample.csproj.nuget.dgspec.json │ ├── NUnitTestProjectExample.csproj.nuget.g.props │ ├── NUnitTestProjectExample.csproj.nuget.g.targets │ ├── project.assets.json │ └── project.nuget.cache └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /.vs/MongoDBExample 6 | /MongoDBExample/.vs/MongoDBExample/v16 7 | /MongoDBExample/.vs/MongoDBExample 8 | /MongoDBExample/MongoDBExample/obj 9 | /MongoDBExample/MongoDBExample/bin/Debug/netcoreapp3.1 10 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30002.166 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MongoDBExample", "MongoDBExample\MongoDBExample.csproj", "{6627882F-A96F-415A-B104-B81C445683D2}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NUnitTestProjectExample", "NUnitTestProjectExample\NUnitTestProjectExample.csproj", "{F306F11E-56C4-4C28-A96F-EAC68FB8890E}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {6627882F-A96F-415A-B104-B81C445683D2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {6627882F-A96F-415A-B104-B81C445683D2}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {6627882F-A96F-415A-B104-B81C445683D2}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {6627882F-A96F-415A-B104-B81C445683D2}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {F306F11E-56C4-4C28-A96F-EAC68FB8890E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {F306F11E-56C4-4C28-A96F-EAC68FB8890E}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {F306F11E-56C4-4C28-A96F-EAC68FB8890E}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {F306F11E-56C4-4C28-A96F-EAC68FB8890E}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {8C22F4A0-0DCB-4C72-83DC-B643A71235C3} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Business/Abstractions/IPersonService.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Entities.ClientEntities.Request; 2 | using MongoDBExample.Entities.ClientEntities.Response; 3 | using System; 4 | 5 | namespace MongoDBExample.Business.Abstractions 6 | { 7 | public interface IPersonService 8 | { 9 | bool Add(AddPersonRequest request); 10 | 11 | GetPersonResponse Get(Guid request); 12 | 13 | bool Delete(Guid request); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Business/Implementations/PersonService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using MongoDBExample.Business.Abstractions; 4 | using MongoDBExample.Data.Repository.Abstractions; 5 | using MongoDBExample.Entities.BusinessEntities; 6 | using MongoDBExample.Entities.ClientEntities; 7 | using MongoDBExample.Entities.ClientEntities.Request; 8 | using MongoDBExample.Entities.ClientEntities.Response; 9 | 10 | namespace MongoDBExample.Business.Implementations 11 | { 12 | public class PersonService : IPersonService 13 | { 14 | private readonly IServiceProvider _collection; 15 | 16 | public PersonService(IServiceProvider collection) 17 | { 18 | _collection = collection; 19 | } 20 | 21 | public bool Add(AddPersonRequest request) 22 | { 23 | Person entity = new Person(); 24 | entity.BirthDate = request.BirthDate; 25 | entity.FirstName = request.FirstName; 26 | entity.LastName = request.LastName; 27 | entity.CreateDate = DateTime.Now; 28 | 29 | var person = _collection.GetService().Add(entity); 30 | 31 | return person != null ? true : false; 32 | } 33 | 34 | public GetPersonResponse Get(Guid request) 35 | { 36 | GetPersonResponse response = new GetPersonResponse(); 37 | 38 | var person = _collection.GetService().GetById(request); 39 | 40 | if (person != null) 41 | { 42 | response.Id = person.Id; 43 | response.FirstName = person.FirstName; 44 | response.LastName = person.LastName; 45 | response.BirthDate = person.BirthDate; 46 | } 47 | return response; 48 | } 49 | 50 | public bool Delete(Guid request) 51 | { 52 | _collection.GetService().Remove(request); 53 | return true; 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Business/ServicesExtension.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.DependencyInjection; 2 | using MongoDBExample.Business.Abstractions; 3 | using MongoDBExample.Business.Implementations; 4 | 5 | namespace MongoDBExample.Business 6 | { 7 | public static class ServicesExtension 8 | { 9 | public static void RegisterServices(this IServiceCollection services) 10 | { 11 | services.AddTransient(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Controllers/ExampleController.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using Microsoft.Extensions.DependencyInjection; 3 | using Microsoft.AspNetCore.Mvc; 4 | using MongoDBExample.Business.Abstractions; 5 | using MongoDBExample.Entities.ClientEntities.Response; 6 | using MongoDBExample.Entities.ClientEntities.Request; 7 | 8 | namespace MongoDBExample.Controllers 9 | { 10 | [ApiController] 11 | [Route("[controller]")] 12 | public class ExampleController : ControllerBase 13 | { 14 | private readonly IServiceProvider _collection; 15 | 16 | public ExampleController(IServiceProvider collection) 17 | { 18 | _collection = collection; 19 | } 20 | 21 | [HttpPost] 22 | [Route("Add")] 23 | public bool Add(AddPersonRequest request) 24 | { 25 | using (var scope = _collection.CreateScope()) 26 | { 27 | return _collection.GetService().Add(request); 28 | } 29 | } 30 | 31 | [HttpGet] 32 | [Route("Get")] 33 | public GetPersonResponse Get(Guid q) 34 | { 35 | using (var scope = _collection.CreateScope()) 36 | { 37 | return _collection.GetService().Get(q); 38 | } 39 | } 40 | 41 | [HttpDelete] 42 | [Route("Delete")] 43 | public bool Delete(Guid q) 44 | { 45 | using (var scope = _collection.CreateScope()) 46 | { 47 | return _collection.GetService().Delete(q); 48 | } 49 | } 50 | } 51 | } 52 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/BsonCollectionAttribute.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MongoDBExample.Data 4 | { 5 | [AttributeUsage(AttributeTargets.Class, Inherited = false)] 6 | public class BsonCollectionAttribute : Attribute 7 | { 8 | public string CollectionName { get; } 9 | 10 | public BsonCollectionAttribute(string collectionName) 11 | { 12 | CollectionName = collectionName; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/IMongoDBContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.Options; 2 | using MongoDB.Driver; 3 | using MongoDBExample.Helpers; 4 | 5 | namespace MongoDBExample.Data 6 | { 7 | public interface IMongoDBContext 8 | { 9 | IMongoDatabase _db { get; } 10 | MongoClient _mongoClient { get; } 11 | IMongoCollection GetCollection(string name); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/MongoDBContext.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.Extensions.Options; 2 | using MongoDB.Driver; 3 | using MongoDBExample.Helpers; 4 | 5 | namespace MongoDBExample.Data 6 | { 7 | public class MongoDBContext : IMongoDBContext 8 | { 9 | private IMongoDatabase _db { get; set; } 10 | private MongoClient _mongoClient { get; set; } 11 | 12 | IMongoDatabase IMongoDBContext._db { get { return _db; } } 13 | 14 | MongoClient IMongoDBContext._mongoClient { get { return _mongoClient; } } 15 | 16 | public MongoDBContext(IOptions configuration) 17 | { 18 | _mongoClient = new MongoClient(configuration.Value.ConnectionString); 19 | _db = _mongoClient.GetDatabase(configuration.Value.DatabaseName); 20 | } 21 | 22 | public IMongoCollection GetCollection(string name) 23 | { 24 | return _db.GetCollection(name); 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/RepositoriesExtension.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Data.Repository.Abstractions; 2 | using MongoDBExample.Data.Repository.Implementations; 3 | using Microsoft.Extensions.DependencyInjection; 4 | 5 | namespace MongoDBExample.Data 6 | { 7 | public static class RepositoriesExtension 8 | { 9 | public static void RegisterRepos(this IServiceCollection services) 10 | { 11 | services.AddTransient(); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/Repository/Abstractions/IBaseRepository.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Entities.BusinessEntities.Base; 2 | using System; 3 | using System.Collections.Generic; 4 | 5 | namespace MongoDBExample.Data.Repository.Abstractions 6 | { 7 | public interface IBaseRepository where T : BaseEntity 8 | { 9 | T Add(T entity); 10 | T GetById(Guid id); 11 | void Remove(Guid id); 12 | IEnumerable GetAll(); 13 | void Update(T entity); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/Repository/Abstractions/IPersonRepository.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Entities.BusinessEntities; 2 | using System; 3 | 4 | namespace MongoDBExample.Data.Repository.Abstractions 5 | { 6 | public interface IPersonRepository : IBaseRepository 7 | { 8 | 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/Repository/Implementations/BaseRepository.cs: -------------------------------------------------------------------------------- 1 | using MongoDB.Bson; 2 | using MongoDB.Driver; 3 | using MongoDBExample.Data.Repository.Abstractions; 4 | using MongoDBExample.Entities.BusinessEntities.Base; 5 | using System; 6 | using System.Collections.Generic; 7 | using System.Threading.Tasks; 8 | 9 | namespace MongoDBExample.Data.Repository.Implementations 10 | { 11 | public abstract class BaseRepository : IBaseRepository where T : BaseEntity 12 | { 13 | protected readonly IMongoDBContext _mongoContext; 14 | protected IMongoCollection _dbCollection; 15 | 16 | protected BaseRepository(IMongoDBContext context) 17 | { 18 | _mongoContext = context; 19 | _dbCollection = _mongoContext.GetCollection(typeof(T).Name); 20 | } 21 | 22 | public virtual T Add(T entity) 23 | { 24 | _dbCollection.InsertOne(entity); 25 | return entity; 26 | } 27 | 28 | public virtual T GetById(Guid id) 29 | { 30 | return _dbCollection.Find(m => m.Id == id).FirstOrDefault(); 31 | } 32 | 33 | public virtual void Remove(Guid id) 34 | { 35 | _dbCollection.DeleteOne(m => m.Id == id); 36 | } 37 | 38 | public virtual IEnumerable GetAll() 39 | { 40 | return _dbCollection.Find(T => true).ToList(); 41 | } 42 | 43 | public void Update(T entity) 44 | { 45 | _dbCollection.ReplaceOne(Builders.Filter.Eq("_id", entity.Id), entity); 46 | } 47 | } 48 | } -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Data/Repository/Implementations/PersonRepository.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Data.Repository.Abstractions; 2 | using MongoDBExample.Entities.BusinessEntities; 3 | using System; 4 | 5 | namespace MongoDBExample.Data.Repository.Implementations 6 | { 7 | public class PersonRepository : BaseRepository, IPersonRepository 8 | { 9 | public PersonRepository(IMongoDBContext context) : base(context) 10 | { 11 | 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Entities/BusinessEntities/Base/BaseEntity.cs: -------------------------------------------------------------------------------- 1 | using MongoDB.Bson; 2 | using MongoDB.Bson.Serialization.Attributes; 3 | using System; 4 | 5 | namespace MongoDBExample.Entities.BusinessEntities.Base 6 | { 7 | public class BaseEntity 8 | { 9 | [BsonId] 10 | [BsonRepresentation(BsonType.String)] 11 | public Guid Id { get; set; } 12 | 13 | public DateTime CreateDate { get; set; } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Entities/BusinessEntities/Person.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Data; 2 | using MongoDBExample.Entities.BusinessEntities.Base; 3 | using System; 4 | 5 | namespace MongoDBExample.Entities.BusinessEntities 6 | { 7 | [BsonCollection("people")] 8 | public class Person : BaseEntity 9 | { 10 | public string FirstName { get; set; } 11 | public string LastName { get; set; } 12 | public DateTime BirthDate { get; set; } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Entities/ClientEntities/Request/AddPersonRequest.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MongoDBExample.Entities.ClientEntities.Request 4 | { 5 | public class AddPersonRequest 6 | { 7 | public string FirstName { get; set; } 8 | public string LastName { get; set; } 9 | public DateTime BirthDate { get; set; } 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Entities/ClientEntities/Response/GetPersonResponse.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MongoDBExample.Entities.ClientEntities.Response 4 | { 5 | public class GetPersonResponse 6 | { 7 | public Guid Id { get; set; } 8 | public string FirstName { get; set; } 9 | public string LastName { get; set; } 10 | public DateTime BirthDate { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Helpers/IMongoDbSettings.cs: -------------------------------------------------------------------------------- 1 | namespace MongoDBExample.Helpers 2 | { 3 | public interface IMongoDbSettings 4 | { 5 | string DatabaseName { get; set; } 6 | string ConnectionString { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Helpers/MongoDbSettings.cs: -------------------------------------------------------------------------------- 1 | namespace MongoDBExample.Helpers 2 | { 3 | public class MongoDbSettings : IMongoDbSettings 4 | { 5 | public string DatabaseName { get; set; } 6 | public string ConnectionString { get; set; } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/MongoDBExample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/MongoDBExample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | false 5 | 6 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Program.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Hosting; 2 | using Microsoft.Extensions.Hosting; 3 | 4 | namespace MongoDBExample 5 | { 6 | public class Program 7 | { 8 | public static void Main(string[] args) 9 | { 10 | CreateHostBuilder(args).Build().Run(); 11 | } 12 | 13 | public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBuilder(args).ConfigureWebHostDefaults(webBuilder => { webBuilder.UseStartup(); }); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:50564", 8 | "sslPort": 0 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "MongoDBExample": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "", 24 | "applicationUrl": "http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/Startup.cs: -------------------------------------------------------------------------------- 1 | using Microsoft.AspNetCore.Builder; 2 | using Microsoft.AspNetCore.Hosting; 3 | using Microsoft.Extensions.Configuration; 4 | using Microsoft.Extensions.DependencyInjection; 5 | using Microsoft.Extensions.Hosting; 6 | using Microsoft.Extensions.Options; 7 | using MongoDBExample.Business; 8 | using MongoDBExample.Data; 9 | using MongoDBExample.Data.Repository.Abstractions; 10 | using MongoDBExample.Data.Repository.Implementations; 11 | using MongoDBExample.Helpers; 12 | 13 | namespace MongoDBExample 14 | { 15 | public class Startup 16 | { 17 | public Startup(IConfiguration configuration) 18 | { 19 | Configuration = configuration; 20 | } 21 | 22 | public IConfiguration Configuration { get; } 23 | 24 | // This method gets called by the runtime. Use this method to add services to the container. 25 | public void ConfigureServices(IServiceCollection services) 26 | { 27 | services.Configure(Configuration.GetSection("MongoDbSettings")); 28 | 29 | services.AddSingleton(serviceProvider => serviceProvider.GetRequiredService>().Value); 30 | 31 | services.AddSingleton(); 32 | 33 | services.RegisterRepos(); 34 | services.RegisterServices(); 35 | 36 | services.AddControllers(); 37 | } 38 | 39 | // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 40 | public void Configure(IApplicationBuilder app, IWebHostEnvironment env) 41 | { 42 | if (env.IsDevelopment()) 43 | { 44 | app.UseDeveloperExceptionPage(); 45 | } 46 | 47 | app.UseRouting(); 48 | 49 | app.UseAuthorization(); 50 | 51 | app.UseEndpoints(endpoints => 52 | { 53 | endpoints.MapControllers(); 54 | }); 55 | } 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MongoDBExample/MongoDBExample/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MongoDbSettings": { 3 | "ConnectionString": "mongodb://localhost:27017", 4 | "DatabaseName": "ExampleDatabase" 5 | }, 6 | "AllowedHosts": "*" 7 | } 8 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/NUnitTestProjectExample.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | netcoreapp3.1 5 | 6 | false 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/PersonServiceTest.cs: -------------------------------------------------------------------------------- 1 | using MongoDBExample.Data.Repository.Abstractions; 2 | using MongoDBExample.Entities.BusinessEntities; 3 | using MongoDBExample.Entities.ClientEntities.Response; 4 | using NSubstitute; 5 | using NUnit.Framework; 6 | using System; 7 | using Microsoft.Extensions.DependencyInjection; 8 | using MongoDBExample.Business.Implementations; 9 | using FizzWare.NBuilder; 10 | 11 | namespace NUnitTestProjectExample 12 | { 13 | [TestFixture] 14 | [Category("UnitTests.PersonServiceTest")] 15 | public class PersonServiceTest 16 | { 17 | IServiceProvider _serviceProvider; 18 | 19 | [SetUp] 20 | public void Setup() 21 | { 22 | _serviceProvider = Substitute.For(); 23 | } 24 | 25 | [Test] 26 | public void AddPersonService_HappyPath() 27 | { 28 | var PersonRepository = Substitute.For(); 29 | 30 | var request = Guid.NewGuid(); 31 | 32 | var personResponse = Builder.CreateNew().Build(); 33 | 34 | PersonRepository.GetById(request).Returns(personResponse); 35 | _serviceProvider.GetService().Returns(PersonRepository); 36 | 37 | var personService = new PersonService(_serviceProvider); 38 | 39 | Assert.True(personService.Get(request) != null); 40 | 41 | } 42 | } 43 | } -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Castle.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Castle.Core.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/DnsClient.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/DnsClient.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/FizzWare.NBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/FizzWare.NBuilder.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.DotNet.InternalAbstractions.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.exe -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/MongoDBExample.pdb -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NSubstitute.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NSubstitute.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnit3.TestAdapter.pdb -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.deps.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeTarget": { 3 | "name": ".NETCoreApp,Version=v3.1", 4 | "signature": "" 5 | }, 6 | "compilationOptions": {}, 7 | "targets": { 8 | ".NETCoreApp,Version=v3.1": { 9 | "NUnitTestProjectExample/1.0.0": { 10 | "dependencies": { 11 | "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.3", 12 | "Microsoft.NET.Test.Sdk": "16.4.0", 13 | "MongoDBExample": "1.0.0", 14 | "NBuilder": "6.1.0", 15 | "NSubstitute": "4.2.1", 16 | "NUnit3TestAdapter": "3.15.1", 17 | "NUnit": "3.12.0" 18 | }, 19 | "runtime": { 20 | "NUnitTestProjectExample.dll": {} 21 | } 22 | }, 23 | "Castle.Core/4.4.0": { 24 | "dependencies": { 25 | "NETStandard.Library": "2.0.0", 26 | "System.Collections.Specialized": "4.3.0", 27 | "System.ComponentModel": "4.3.0", 28 | "System.ComponentModel.TypeConverter": "4.3.0", 29 | "System.Diagnostics.TraceSource": "4.3.0", 30 | "System.Dynamic.Runtime": "4.3.0", 31 | "System.Reflection": "4.3.0", 32 | "System.Reflection.Emit": "4.3.0", 33 | "System.Reflection.TypeExtensions": "4.3.0", 34 | "System.Xml.XmlDocument": "4.3.0" 35 | }, 36 | "runtime": { 37 | "lib/netstandard1.5/Castle.Core.dll": { 38 | "assemblyVersion": "4.0.0.0", 39 | "fileVersion": "4.4.0.0" 40 | } 41 | } 42 | }, 43 | "DnsClient/1.3.1": { 44 | "runtime": { 45 | "lib/netstandard2.1/DnsClient.dll": { 46 | "assemblyVersion": "1.3.1.0", 47 | "fileVersion": "1.3.1.0" 48 | } 49 | } 50 | }, 51 | "Microsoft.CodeCoverage/16.4.0": { 52 | "runtime": { 53 | "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { 54 | "assemblyVersion": "15.0.0.0", 55 | "fileVersion": "16.0.28223.3002" 56 | } 57 | } 58 | }, 59 | "Microsoft.CSharp/4.0.1": { 60 | "dependencies": { 61 | "System.Collections": "4.3.0", 62 | "System.Diagnostics.Debug": "4.3.0", 63 | "System.Dynamic.Runtime": "4.3.0", 64 | "System.Globalization": "4.3.0", 65 | "System.Linq": "4.3.0", 66 | "System.Linq.Expressions": "4.3.0", 67 | "System.ObjectModel": "4.3.0", 68 | "System.Reflection": "4.3.0", 69 | "System.Reflection.Extensions": "4.3.0", 70 | "System.Reflection.Primitives": "4.3.0", 71 | "System.Reflection.TypeExtensions": "4.3.0", 72 | "System.Resources.ResourceManager": "4.3.0", 73 | "System.Runtime": "4.3.0", 74 | "System.Runtime.Extensions": "4.3.0", 75 | "System.Runtime.InteropServices": "4.3.0", 76 | "System.Threading": "4.3.0" 77 | } 78 | }, 79 | "Microsoft.DotNet.InternalAbstractions/1.0.0": { 80 | "dependencies": { 81 | "System.AppContext": "4.1.0", 82 | "System.Collections": "4.3.0", 83 | "System.IO": "4.3.0", 84 | "System.IO.FileSystem": "4.3.0", 85 | "System.Reflection.TypeExtensions": "4.3.0", 86 | "System.Runtime.Extensions": "4.3.0", 87 | "System.Runtime.InteropServices": "4.3.0", 88 | "System.Runtime.InteropServices.RuntimeInformation": "4.3.0" 89 | }, 90 | "runtime": { 91 | "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll": { 92 | "assemblyVersion": "1.0.0.0", 93 | "fileVersion": "1.0.0.0" 94 | } 95 | } 96 | }, 97 | "Microsoft.Extensions.DependencyInjection/3.1.3": { 98 | "dependencies": { 99 | "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.3" 100 | }, 101 | "runtime": { 102 | "lib/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll": { 103 | "assemblyVersion": "3.1.3.0", 104 | "fileVersion": "3.100.320.12802" 105 | } 106 | } 107 | }, 108 | "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.3": { 109 | "runtime": { 110 | "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { 111 | "assemblyVersion": "3.1.3.0", 112 | "fileVersion": "3.100.320.12802" 113 | } 114 | } 115 | }, 116 | "Microsoft.NET.Test.Sdk/16.4.0": { 117 | "dependencies": { 118 | "Microsoft.CodeCoverage": "16.4.0", 119 | "Microsoft.TestPlatform.TestHost": "16.4.0" 120 | } 121 | }, 122 | "Microsoft.NETCore.Platforms/2.1.2": {}, 123 | "Microsoft.NETCore.Targets/1.1.0": {}, 124 | "Microsoft.TestPlatform.ObjectModel/16.4.0": { 125 | "dependencies": { 126 | "NuGet.Frameworks": "5.0.0" 127 | }, 128 | "runtime": { 129 | "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll": { 130 | "assemblyVersion": "15.0.0.0", 131 | "fileVersion": "15.0.0.0" 132 | }, 133 | "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll": { 134 | "assemblyVersion": "15.0.0.0", 135 | "fileVersion": "15.0.0.0" 136 | }, 137 | "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { 138 | "assemblyVersion": "15.0.0.0", 139 | "fileVersion": "15.0.0.0" 140 | } 141 | }, 142 | "resources": { 143 | "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 144 | "locale": "cs" 145 | }, 146 | "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 147 | "locale": "cs" 148 | }, 149 | "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 150 | "locale": "de" 151 | }, 152 | "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 153 | "locale": "de" 154 | }, 155 | "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 156 | "locale": "es" 157 | }, 158 | "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 159 | "locale": "es" 160 | }, 161 | "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 162 | "locale": "fr" 163 | }, 164 | "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 165 | "locale": "fr" 166 | }, 167 | "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 168 | "locale": "it" 169 | }, 170 | "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 171 | "locale": "it" 172 | }, 173 | "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 174 | "locale": "ja" 175 | }, 176 | "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 177 | "locale": "ja" 178 | }, 179 | "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 180 | "locale": "ko" 181 | }, 182 | "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 183 | "locale": "ko" 184 | }, 185 | "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 186 | "locale": "pl" 187 | }, 188 | "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 189 | "locale": "pl" 190 | }, 191 | "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 192 | "locale": "pt-BR" 193 | }, 194 | "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 195 | "locale": "pt-BR" 196 | }, 197 | "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 198 | "locale": "ru" 199 | }, 200 | "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 201 | "locale": "ru" 202 | }, 203 | "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 204 | "locale": "tr" 205 | }, 206 | "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 207 | "locale": "tr" 208 | }, 209 | "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 210 | "locale": "zh-Hans" 211 | }, 212 | "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 213 | "locale": "zh-Hans" 214 | }, 215 | "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { 216 | "locale": "zh-Hant" 217 | }, 218 | "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { 219 | "locale": "zh-Hant" 220 | } 221 | } 222 | }, 223 | "Microsoft.TestPlatform.TestHost/16.4.0": { 224 | "dependencies": { 225 | "Microsoft.TestPlatform.ObjectModel": "16.4.0", 226 | "Newtonsoft.Json": "9.0.1" 227 | }, 228 | "runtime": { 229 | "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { 230 | "assemblyVersion": "15.0.0.0", 231 | "fileVersion": "15.0.0.0" 232 | }, 233 | "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { 234 | "assemblyVersion": "15.0.0.0", 235 | "fileVersion": "15.0.0.0" 236 | }, 237 | "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { 238 | "assemblyVersion": "15.0.0.0", 239 | "fileVersion": "15.0.0.0" 240 | }, 241 | "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { 242 | "assemblyVersion": "15.0.0.0", 243 | "fileVersion": "15.0.0.0" 244 | }, 245 | "lib/netcoreapp2.1/testhost.dll": { 246 | "assemblyVersion": "15.0.0.0", 247 | "fileVersion": "15.0.0.0" 248 | } 249 | }, 250 | "resources": { 251 | "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 252 | "locale": "cs" 253 | }, 254 | "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 255 | "locale": "cs" 256 | }, 257 | "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 258 | "locale": "cs" 259 | }, 260 | "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 261 | "locale": "de" 262 | }, 263 | "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 264 | "locale": "de" 265 | }, 266 | "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 267 | "locale": "de" 268 | }, 269 | "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 270 | "locale": "es" 271 | }, 272 | "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 273 | "locale": "es" 274 | }, 275 | "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 276 | "locale": "es" 277 | }, 278 | "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 279 | "locale": "fr" 280 | }, 281 | "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 282 | "locale": "fr" 283 | }, 284 | "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 285 | "locale": "fr" 286 | }, 287 | "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 288 | "locale": "it" 289 | }, 290 | "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 291 | "locale": "it" 292 | }, 293 | "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 294 | "locale": "it" 295 | }, 296 | "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 297 | "locale": "ja" 298 | }, 299 | "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 300 | "locale": "ja" 301 | }, 302 | "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 303 | "locale": "ja" 304 | }, 305 | "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 306 | "locale": "ko" 307 | }, 308 | "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 309 | "locale": "ko" 310 | }, 311 | "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 312 | "locale": "ko" 313 | }, 314 | "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 315 | "locale": "pl" 316 | }, 317 | "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 318 | "locale": "pl" 319 | }, 320 | "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 321 | "locale": "pl" 322 | }, 323 | "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 324 | "locale": "pt-BR" 325 | }, 326 | "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 327 | "locale": "pt-BR" 328 | }, 329 | "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 330 | "locale": "pt-BR" 331 | }, 332 | "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 333 | "locale": "ru" 334 | }, 335 | "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 336 | "locale": "ru" 337 | }, 338 | "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 339 | "locale": "ru" 340 | }, 341 | "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 342 | "locale": "tr" 343 | }, 344 | "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 345 | "locale": "tr" 346 | }, 347 | "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 348 | "locale": "tr" 349 | }, 350 | "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 351 | "locale": "zh-Hans" 352 | }, 353 | "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 354 | "locale": "zh-Hans" 355 | }, 356 | "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 357 | "locale": "zh-Hans" 358 | }, 359 | "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { 360 | "locale": "zh-Hant" 361 | }, 362 | "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { 363 | "locale": "zh-Hant" 364 | }, 365 | "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { 366 | "locale": "zh-Hant" 367 | } 368 | } 369 | }, 370 | "Microsoft.Win32.Primitives/4.3.0": { 371 | "dependencies": { 372 | "Microsoft.NETCore.Platforms": "2.1.2", 373 | "Microsoft.NETCore.Targets": "1.1.0", 374 | "System.Runtime": "4.3.0" 375 | } 376 | }, 377 | "Microsoft.Win32.Registry/4.3.0": { 378 | "dependencies": { 379 | "Microsoft.NETCore.Platforms": "2.1.2", 380 | "System.Collections": "4.3.0", 381 | "System.Globalization": "4.3.0", 382 | "System.Resources.ResourceManager": "4.3.0", 383 | "System.Runtime": "4.3.0", 384 | "System.Runtime.Extensions": "4.3.0", 385 | "System.Runtime.Handles": "4.3.0", 386 | "System.Runtime.InteropServices": "4.3.0" 387 | } 388 | }, 389 | "MongoDB.Bson/2.10.3": { 390 | "dependencies": { 391 | "NETStandard.Library": "2.0.0", 392 | "System.Collections.NonGeneric": "4.3.0", 393 | "System.Diagnostics.Process": "4.3.0", 394 | "System.Dynamic.Runtime": "4.3.0", 395 | "System.Reflection.Emit.Lightweight": "4.3.0", 396 | "System.Runtime.Serialization.Formatters": "4.3.0" 397 | }, 398 | "runtime": { 399 | "lib/netstandard1.5/MongoDB.Bson.dll": { 400 | "assemblyVersion": "2.10.3.0", 401 | "fileVersion": "2.10.3.0" 402 | } 403 | } 404 | }, 405 | "MongoDB.Driver/2.10.3": { 406 | "dependencies": { 407 | "MongoDB.Bson": "2.10.3", 408 | "MongoDB.Driver.Core": "2.10.3", 409 | "MongoDB.Libmongocrypt": "1.0.0", 410 | "NETStandard.Library": "2.0.0", 411 | "System.ComponentModel.TypeConverter": "4.3.0", 412 | "System.Linq.Queryable": "4.0.1" 413 | }, 414 | "runtime": { 415 | "lib/netstandard1.5/MongoDB.Driver.dll": { 416 | "assemblyVersion": "2.10.3.0", 417 | "fileVersion": "2.10.3.0" 418 | } 419 | } 420 | }, 421 | "MongoDB.Driver.Core/2.10.3": { 422 | "dependencies": { 423 | "DnsClient": "1.3.1", 424 | "MongoDB.Bson": "2.10.3", 425 | "MongoDB.Libmongocrypt": "1.0.0", 426 | "NETStandard.Library": "2.0.0", 427 | "SharpCompress": "0.23.0", 428 | "System.Collections.Specialized": "4.3.0", 429 | "System.Diagnostics.TextWriterTraceListener": "4.0.0", 430 | "System.Diagnostics.TraceSource": "4.3.0", 431 | "System.Net.NameResolution": "4.3.0", 432 | "System.Net.Security": "4.3.2", 433 | "System.Security.SecureString": "4.0.0", 434 | "System.Threading.Thread": "4.3.0" 435 | }, 436 | "runtime": { 437 | "lib/netstandard1.5/MongoDB.Driver.Core.dll": { 438 | "assemblyVersion": "2.10.3.0", 439 | "fileVersion": "2.10.3.0" 440 | } 441 | } 442 | }, 443 | "MongoDB.Libmongocrypt/1.0.0": { 444 | "dependencies": { 445 | "NETStandard.Library": "2.0.0" 446 | }, 447 | "runtime": { 448 | "lib/netstandard1.5/MongoDB.Libmongocrypt.dll": { 449 | "assemblyVersion": "1.0.0.0", 450 | "fileVersion": "1.0.0.0" 451 | } 452 | } 453 | }, 454 | "NBuilder/6.1.0": { 455 | "dependencies": { 456 | "NETStandard.Library": "2.0.0" 457 | }, 458 | "runtime": { 459 | "lib/netstandard1.6/FizzWare.NBuilder.dll": { 460 | "assemblyVersion": "1.0.0.0", 461 | "fileVersion": "1.0.0.0" 462 | } 463 | } 464 | }, 465 | "NETStandard.Library/2.0.0": { 466 | "dependencies": { 467 | "Microsoft.NETCore.Platforms": "2.1.2" 468 | } 469 | }, 470 | "Newtonsoft.Json/9.0.1": { 471 | "dependencies": { 472 | "Microsoft.CSharp": "4.0.1", 473 | "System.Collections": "4.3.0", 474 | "System.Diagnostics.Debug": "4.3.0", 475 | "System.Dynamic.Runtime": "4.3.0", 476 | "System.Globalization": "4.3.0", 477 | "System.IO": "4.3.0", 478 | "System.Linq": "4.3.0", 479 | "System.Linq.Expressions": "4.3.0", 480 | "System.ObjectModel": "4.3.0", 481 | "System.Reflection": "4.3.0", 482 | "System.Reflection.Extensions": "4.3.0", 483 | "System.Resources.ResourceManager": "4.3.0", 484 | "System.Runtime": "4.3.0", 485 | "System.Runtime.Extensions": "4.3.0", 486 | "System.Runtime.Serialization.Primitives": "4.3.0", 487 | "System.Text.Encoding": "4.3.0", 488 | "System.Text.Encoding.Extensions": "4.3.0", 489 | "System.Text.RegularExpressions": "4.3.0", 490 | "System.Threading": "4.3.0", 491 | "System.Threading.Tasks": "4.3.0", 492 | "System.Xml.ReaderWriter": "4.3.0", 493 | "System.Xml.XDocument": "4.0.11" 494 | }, 495 | "runtime": { 496 | "lib/netstandard1.0/Newtonsoft.Json.dll": { 497 | "assemblyVersion": "9.0.0.0", 498 | "fileVersion": "9.0.1.19813" 499 | } 500 | } 501 | }, 502 | "NSubstitute/4.2.1": { 503 | "dependencies": { 504 | "Castle.Core": "4.4.0", 505 | "System.Threading.Tasks.Extensions": "4.3.0" 506 | }, 507 | "runtime": { 508 | "lib/netstandard2.0/NSubstitute.dll": { 509 | "assemblyVersion": "4.2.0.0", 510 | "fileVersion": "4.2.1.0" 511 | } 512 | } 513 | }, 514 | "NuGet.Frameworks/5.0.0": { 515 | "runtime": { 516 | "lib/netstandard2.0/NuGet.Frameworks.dll": { 517 | "assemblyVersion": "5.0.0.6", 518 | "fileVersion": "5.0.0.5923" 519 | } 520 | } 521 | }, 522 | "NUnit/3.12.0": { 523 | "dependencies": { 524 | "NETStandard.Library": "2.0.0" 525 | }, 526 | "runtime": { 527 | "lib/netstandard2.0/nunit.framework.dll": { 528 | "assemblyVersion": "3.12.0.0", 529 | "fileVersion": "3.12.0.0" 530 | } 531 | } 532 | }, 533 | "NUnit3TestAdapter/3.15.1": { 534 | "dependencies": { 535 | "Microsoft.DotNet.InternalAbstractions": "1.0.0", 536 | "System.ComponentModel.EventBasedAsync": "4.3.0", 537 | "System.ComponentModel.TypeConverter": "4.3.0", 538 | "System.Diagnostics.Process": "4.3.0", 539 | "System.Reflection": "4.3.0", 540 | "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", 541 | "System.Threading.Thread": "4.3.0", 542 | "System.Xml.XPath.XmlDocument": "4.3.0", 543 | "System.Xml.XmlDocument": "4.3.0" 544 | } 545 | }, 546 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 547 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 548 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 549 | "runtime.native.System/4.3.0": { 550 | "dependencies": { 551 | "Microsoft.NETCore.Platforms": "2.1.2", 552 | "Microsoft.NETCore.Targets": "1.1.0" 553 | } 554 | }, 555 | "runtime.native.System.Net.Http/4.3.0": { 556 | "dependencies": { 557 | "Microsoft.NETCore.Platforms": "2.1.2", 558 | "Microsoft.NETCore.Targets": "1.1.0" 559 | } 560 | }, 561 | "runtime.native.System.Net.Security/4.3.0": { 562 | "dependencies": { 563 | "Microsoft.NETCore.Platforms": "2.1.2", 564 | "Microsoft.NETCore.Targets": "1.1.0" 565 | } 566 | }, 567 | "runtime.native.System.Security.Cryptography.Apple/4.3.0": { 568 | "dependencies": { 569 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" 570 | } 571 | }, 572 | "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 573 | "dependencies": { 574 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 575 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 576 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 577 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 578 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 579 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 580 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 581 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 582 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2", 583 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 584 | } 585 | }, 586 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 587 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 588 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, 589 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 590 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 591 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 592 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 593 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": {}, 594 | "SharpCompress/0.23.0": { 595 | "dependencies": { 596 | "System.Text.Encoding.CodePages": "4.5.1" 597 | }, 598 | "runtime": { 599 | "lib/netstandard2.0/SharpCompress.dll": { 600 | "assemblyVersion": "0.23.0.0", 601 | "fileVersion": "0.23.0.0" 602 | } 603 | } 604 | }, 605 | "System.AppContext/4.1.0": { 606 | "dependencies": { 607 | "System.Runtime": "4.3.0" 608 | } 609 | }, 610 | "System.Collections/4.3.0": { 611 | "dependencies": { 612 | "Microsoft.NETCore.Platforms": "2.1.2", 613 | "Microsoft.NETCore.Targets": "1.1.0", 614 | "System.Runtime": "4.3.0" 615 | } 616 | }, 617 | "System.Collections.Concurrent/4.3.0": { 618 | "dependencies": { 619 | "System.Collections": "4.3.0", 620 | "System.Diagnostics.Debug": "4.3.0", 621 | "System.Diagnostics.Tracing": "4.3.0", 622 | "System.Globalization": "4.3.0", 623 | "System.Reflection": "4.3.0", 624 | "System.Resources.ResourceManager": "4.3.0", 625 | "System.Runtime": "4.3.0", 626 | "System.Runtime.Extensions": "4.3.0", 627 | "System.Threading": "4.3.0", 628 | "System.Threading.Tasks": "4.3.0" 629 | } 630 | }, 631 | "System.Collections.NonGeneric/4.3.0": { 632 | "dependencies": { 633 | "System.Diagnostics.Debug": "4.3.0", 634 | "System.Globalization": "4.3.0", 635 | "System.Resources.ResourceManager": "4.3.0", 636 | "System.Runtime": "4.3.0", 637 | "System.Runtime.Extensions": "4.3.0", 638 | "System.Threading": "4.3.0" 639 | } 640 | }, 641 | "System.Collections.Specialized/4.3.0": { 642 | "dependencies": { 643 | "System.Collections.NonGeneric": "4.3.0", 644 | "System.Globalization": "4.3.0", 645 | "System.Globalization.Extensions": "4.3.0", 646 | "System.Resources.ResourceManager": "4.3.0", 647 | "System.Runtime": "4.3.0", 648 | "System.Runtime.Extensions": "4.3.0", 649 | "System.Threading": "4.3.0" 650 | } 651 | }, 652 | "System.ComponentModel/4.3.0": { 653 | "dependencies": { 654 | "System.Runtime": "4.3.0" 655 | } 656 | }, 657 | "System.ComponentModel.EventBasedAsync/4.3.0": { 658 | "dependencies": { 659 | "System.Resources.ResourceManager": "4.3.0", 660 | "System.Runtime": "4.3.0", 661 | "System.Threading": "4.3.0", 662 | "System.Threading.Tasks": "4.3.0" 663 | } 664 | }, 665 | "System.ComponentModel.Primitives/4.3.0": { 666 | "dependencies": { 667 | "System.ComponentModel": "4.3.0", 668 | "System.Resources.ResourceManager": "4.3.0", 669 | "System.Runtime": "4.3.0" 670 | } 671 | }, 672 | "System.ComponentModel.TypeConverter/4.3.0": { 673 | "dependencies": { 674 | "System.Collections": "4.3.0", 675 | "System.Collections.NonGeneric": "4.3.0", 676 | "System.Collections.Specialized": "4.3.0", 677 | "System.ComponentModel": "4.3.0", 678 | "System.ComponentModel.Primitives": "4.3.0", 679 | "System.Globalization": "4.3.0", 680 | "System.Linq": "4.3.0", 681 | "System.Reflection": "4.3.0", 682 | "System.Reflection.Extensions": "4.3.0", 683 | "System.Reflection.Primitives": "4.3.0", 684 | "System.Reflection.TypeExtensions": "4.3.0", 685 | "System.Resources.ResourceManager": "4.3.0", 686 | "System.Runtime": "4.3.0", 687 | "System.Runtime.Extensions": "4.3.0", 688 | "System.Threading": "4.3.0" 689 | } 690 | }, 691 | "System.Diagnostics.Debug/4.3.0": { 692 | "dependencies": { 693 | "Microsoft.NETCore.Platforms": "2.1.2", 694 | "Microsoft.NETCore.Targets": "1.1.0", 695 | "System.Runtime": "4.3.0" 696 | } 697 | }, 698 | "System.Diagnostics.Process/4.3.0": { 699 | "dependencies": { 700 | "Microsoft.NETCore.Platforms": "2.1.2", 701 | "Microsoft.Win32.Primitives": "4.3.0", 702 | "Microsoft.Win32.Registry": "4.3.0", 703 | "System.Collections": "4.3.0", 704 | "System.Diagnostics.Debug": "4.3.0", 705 | "System.Globalization": "4.3.0", 706 | "System.IO": "4.3.0", 707 | "System.IO.FileSystem": "4.3.0", 708 | "System.IO.FileSystem.Primitives": "4.3.0", 709 | "System.Resources.ResourceManager": "4.3.0", 710 | "System.Runtime": "4.3.0", 711 | "System.Runtime.Extensions": "4.3.0", 712 | "System.Runtime.Handles": "4.3.0", 713 | "System.Runtime.InteropServices": "4.3.0", 714 | "System.Text.Encoding": "4.3.0", 715 | "System.Text.Encoding.Extensions": "4.3.0", 716 | "System.Threading": "4.3.0", 717 | "System.Threading.Tasks": "4.3.0", 718 | "System.Threading.Thread": "4.3.0", 719 | "System.Threading.ThreadPool": "4.3.0", 720 | "runtime.native.System": "4.3.0" 721 | } 722 | }, 723 | "System.Diagnostics.TextWriterTraceListener/4.0.0": { 724 | "dependencies": { 725 | "System.Diagnostics.TraceSource": "4.3.0", 726 | "System.Globalization": "4.3.0", 727 | "System.IO": "4.3.0", 728 | "System.Resources.ResourceManager": "4.3.0", 729 | "System.Runtime": "4.3.0", 730 | "System.Threading": "4.3.0" 731 | } 732 | }, 733 | "System.Diagnostics.Tools/4.0.1": { 734 | "dependencies": { 735 | "Microsoft.NETCore.Platforms": "2.1.2", 736 | "Microsoft.NETCore.Targets": "1.1.0", 737 | "System.Runtime": "4.3.0" 738 | } 739 | }, 740 | "System.Diagnostics.TraceSource/4.3.0": { 741 | "dependencies": { 742 | "Microsoft.NETCore.Platforms": "2.1.2", 743 | "System.Collections": "4.3.0", 744 | "System.Diagnostics.Debug": "4.3.0", 745 | "System.Globalization": "4.3.0", 746 | "System.Resources.ResourceManager": "4.3.0", 747 | "System.Runtime": "4.3.0", 748 | "System.Runtime.Extensions": "4.3.0", 749 | "System.Threading": "4.3.0", 750 | "runtime.native.System": "4.3.0" 751 | } 752 | }, 753 | "System.Diagnostics.Tracing/4.3.0": { 754 | "dependencies": { 755 | "Microsoft.NETCore.Platforms": "2.1.2", 756 | "Microsoft.NETCore.Targets": "1.1.0", 757 | "System.Runtime": "4.3.0" 758 | } 759 | }, 760 | "System.Dynamic.Runtime/4.3.0": { 761 | "dependencies": { 762 | "System.Collections": "4.3.0", 763 | "System.Diagnostics.Debug": "4.3.0", 764 | "System.Linq": "4.3.0", 765 | "System.Linq.Expressions": "4.3.0", 766 | "System.ObjectModel": "4.3.0", 767 | "System.Reflection": "4.3.0", 768 | "System.Reflection.Emit": "4.3.0", 769 | "System.Reflection.Emit.ILGeneration": "4.3.0", 770 | "System.Reflection.Primitives": "4.3.0", 771 | "System.Reflection.TypeExtensions": "4.3.0", 772 | "System.Resources.ResourceManager": "4.3.0", 773 | "System.Runtime": "4.3.0", 774 | "System.Runtime.Extensions": "4.3.0", 775 | "System.Threading": "4.3.0" 776 | } 777 | }, 778 | "System.Globalization/4.3.0": { 779 | "dependencies": { 780 | "Microsoft.NETCore.Platforms": "2.1.2", 781 | "Microsoft.NETCore.Targets": "1.1.0", 782 | "System.Runtime": "4.3.0" 783 | } 784 | }, 785 | "System.Globalization.Calendars/4.3.0": { 786 | "dependencies": { 787 | "Microsoft.NETCore.Platforms": "2.1.2", 788 | "Microsoft.NETCore.Targets": "1.1.0", 789 | "System.Globalization": "4.3.0", 790 | "System.Runtime": "4.3.0" 791 | } 792 | }, 793 | "System.Globalization.Extensions/4.3.0": { 794 | "dependencies": { 795 | "Microsoft.NETCore.Platforms": "2.1.2", 796 | "System.Globalization": "4.3.0", 797 | "System.Resources.ResourceManager": "4.3.0", 798 | "System.Runtime": "4.3.0", 799 | "System.Runtime.Extensions": "4.3.0", 800 | "System.Runtime.InteropServices": "4.3.0" 801 | } 802 | }, 803 | "System.IO/4.3.0": { 804 | "dependencies": { 805 | "Microsoft.NETCore.Platforms": "2.1.2", 806 | "Microsoft.NETCore.Targets": "1.1.0", 807 | "System.Runtime": "4.3.0", 808 | "System.Text.Encoding": "4.3.0", 809 | "System.Threading.Tasks": "4.3.0" 810 | } 811 | }, 812 | "System.IO.FileSystem/4.3.0": { 813 | "dependencies": { 814 | "Microsoft.NETCore.Platforms": "2.1.2", 815 | "Microsoft.NETCore.Targets": "1.1.0", 816 | "System.IO": "4.3.0", 817 | "System.IO.FileSystem.Primitives": "4.3.0", 818 | "System.Runtime": "4.3.0", 819 | "System.Runtime.Handles": "4.3.0", 820 | "System.Text.Encoding": "4.3.0", 821 | "System.Threading.Tasks": "4.3.0" 822 | } 823 | }, 824 | "System.IO.FileSystem.Primitives/4.3.0": { 825 | "dependencies": { 826 | "System.Runtime": "4.3.0" 827 | } 828 | }, 829 | "System.Linq/4.3.0": { 830 | "dependencies": { 831 | "System.Collections": "4.3.0", 832 | "System.Diagnostics.Debug": "4.3.0", 833 | "System.Resources.ResourceManager": "4.3.0", 834 | "System.Runtime": "4.3.0", 835 | "System.Runtime.Extensions": "4.3.0" 836 | } 837 | }, 838 | "System.Linq.Expressions/4.3.0": { 839 | "dependencies": { 840 | "System.Collections": "4.3.0", 841 | "System.Diagnostics.Debug": "4.3.0", 842 | "System.Globalization": "4.3.0", 843 | "System.IO": "4.3.0", 844 | "System.Linq": "4.3.0", 845 | "System.ObjectModel": "4.3.0", 846 | "System.Reflection": "4.3.0", 847 | "System.Reflection.Emit": "4.3.0", 848 | "System.Reflection.Emit.ILGeneration": "4.3.0", 849 | "System.Reflection.Emit.Lightweight": "4.3.0", 850 | "System.Reflection.Extensions": "4.3.0", 851 | "System.Reflection.Primitives": "4.3.0", 852 | "System.Reflection.TypeExtensions": "4.3.0", 853 | "System.Resources.ResourceManager": "4.3.0", 854 | "System.Runtime": "4.3.0", 855 | "System.Runtime.Extensions": "4.3.0", 856 | "System.Threading": "4.3.0" 857 | } 858 | }, 859 | "System.Linq.Queryable/4.0.1": { 860 | "dependencies": { 861 | "System.Collections": "4.3.0", 862 | "System.Diagnostics.Debug": "4.3.0", 863 | "System.Linq": "4.3.0", 864 | "System.Linq.Expressions": "4.3.0", 865 | "System.Reflection": "4.3.0", 866 | "System.Reflection.Extensions": "4.3.0", 867 | "System.Resources.ResourceManager": "4.3.0", 868 | "System.Runtime": "4.3.0" 869 | } 870 | }, 871 | "System.Net.NameResolution/4.3.0": { 872 | "dependencies": { 873 | "Microsoft.NETCore.Platforms": "2.1.2", 874 | "System.Collections": "4.3.0", 875 | "System.Diagnostics.Tracing": "4.3.0", 876 | "System.Globalization": "4.3.0", 877 | "System.Net.Primitives": "4.3.0", 878 | "System.Resources.ResourceManager": "4.3.0", 879 | "System.Runtime": "4.3.0", 880 | "System.Runtime.Extensions": "4.3.0", 881 | "System.Runtime.Handles": "4.3.0", 882 | "System.Runtime.InteropServices": "4.3.0", 883 | "System.Security.Principal.Windows": "4.3.0", 884 | "System.Threading": "4.3.0", 885 | "System.Threading.Tasks": "4.3.0", 886 | "runtime.native.System": "4.3.0" 887 | } 888 | }, 889 | "System.Net.Primitives/4.3.0": { 890 | "dependencies": { 891 | "Microsoft.NETCore.Platforms": "2.1.2", 892 | "Microsoft.NETCore.Targets": "1.1.0", 893 | "System.Runtime": "4.3.0", 894 | "System.Runtime.Handles": "4.3.0" 895 | } 896 | }, 897 | "System.Net.Security/4.3.2": { 898 | "dependencies": { 899 | "Microsoft.NETCore.Platforms": "2.1.2", 900 | "Microsoft.Win32.Primitives": "4.3.0", 901 | "System.Collections": "4.3.0", 902 | "System.Collections.Concurrent": "4.3.0", 903 | "System.Diagnostics.Tracing": "4.3.0", 904 | "System.Globalization": "4.3.0", 905 | "System.Globalization.Extensions": "4.3.0", 906 | "System.IO": "4.3.0", 907 | "System.Net.Primitives": "4.3.0", 908 | "System.Resources.ResourceManager": "4.3.0", 909 | "System.Runtime": "4.3.0", 910 | "System.Runtime.Extensions": "4.3.0", 911 | "System.Runtime.Handles": "4.3.0", 912 | "System.Runtime.InteropServices": "4.3.0", 913 | "System.Security.Claims": "4.3.0", 914 | "System.Security.Cryptography.Algorithms": "4.3.0", 915 | "System.Security.Cryptography.Encoding": "4.3.0", 916 | "System.Security.Cryptography.OpenSsl": "4.3.0", 917 | "System.Security.Cryptography.Primitives": "4.3.0", 918 | "System.Security.Cryptography.X509Certificates": "4.3.0", 919 | "System.Security.Principal": "4.3.0", 920 | "System.Text.Encoding": "4.3.0", 921 | "System.Threading": "4.3.0", 922 | "System.Threading.Tasks": "4.3.0", 923 | "System.Threading.ThreadPool": "4.3.0", 924 | "runtime.native.System": "4.3.0", 925 | "runtime.native.System.Net.Security": "4.3.0", 926 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 927 | } 928 | }, 929 | "System.ObjectModel/4.3.0": { 930 | "dependencies": { 931 | "System.Collections": "4.3.0", 932 | "System.Diagnostics.Debug": "4.3.0", 933 | "System.Resources.ResourceManager": "4.3.0", 934 | "System.Runtime": "4.3.0", 935 | "System.Threading": "4.3.0" 936 | } 937 | }, 938 | "System.Reflection/4.3.0": { 939 | "dependencies": { 940 | "Microsoft.NETCore.Platforms": "2.1.2", 941 | "Microsoft.NETCore.Targets": "1.1.0", 942 | "System.IO": "4.3.0", 943 | "System.Reflection.Primitives": "4.3.0", 944 | "System.Runtime": "4.3.0" 945 | } 946 | }, 947 | "System.Reflection.Emit/4.3.0": { 948 | "dependencies": { 949 | "System.IO": "4.3.0", 950 | "System.Reflection": "4.3.0", 951 | "System.Reflection.Emit.ILGeneration": "4.3.0", 952 | "System.Reflection.Primitives": "4.3.0", 953 | "System.Runtime": "4.3.0" 954 | } 955 | }, 956 | "System.Reflection.Emit.ILGeneration/4.3.0": { 957 | "dependencies": { 958 | "System.Reflection": "4.3.0", 959 | "System.Reflection.Primitives": "4.3.0", 960 | "System.Runtime": "4.3.0" 961 | } 962 | }, 963 | "System.Reflection.Emit.Lightweight/4.3.0": { 964 | "dependencies": { 965 | "System.Reflection": "4.3.0", 966 | "System.Reflection.Emit.ILGeneration": "4.3.0", 967 | "System.Reflection.Primitives": "4.3.0", 968 | "System.Runtime": "4.3.0" 969 | } 970 | }, 971 | "System.Reflection.Extensions/4.3.0": { 972 | "dependencies": { 973 | "Microsoft.NETCore.Platforms": "2.1.2", 974 | "Microsoft.NETCore.Targets": "1.1.0", 975 | "System.Reflection": "4.3.0", 976 | "System.Runtime": "4.3.0" 977 | } 978 | }, 979 | "System.Reflection.Primitives/4.3.0": { 980 | "dependencies": { 981 | "Microsoft.NETCore.Platforms": "2.1.2", 982 | "Microsoft.NETCore.Targets": "1.1.0", 983 | "System.Runtime": "4.3.0" 984 | } 985 | }, 986 | "System.Reflection.TypeExtensions/4.3.0": { 987 | "dependencies": { 988 | "System.Reflection": "4.3.0", 989 | "System.Runtime": "4.3.0" 990 | } 991 | }, 992 | "System.Resources.ResourceManager/4.3.0": { 993 | "dependencies": { 994 | "Microsoft.NETCore.Platforms": "2.1.2", 995 | "Microsoft.NETCore.Targets": "1.1.0", 996 | "System.Globalization": "4.3.0", 997 | "System.Reflection": "4.3.0", 998 | "System.Runtime": "4.3.0" 999 | } 1000 | }, 1001 | "System.Runtime/4.3.0": { 1002 | "dependencies": { 1003 | "Microsoft.NETCore.Platforms": "2.1.2", 1004 | "Microsoft.NETCore.Targets": "1.1.0" 1005 | } 1006 | }, 1007 | "System.Runtime.CompilerServices.Unsafe/4.5.2": {}, 1008 | "System.Runtime.Extensions/4.3.0": { 1009 | "dependencies": { 1010 | "Microsoft.NETCore.Platforms": "2.1.2", 1011 | "Microsoft.NETCore.Targets": "1.1.0", 1012 | "System.Runtime": "4.3.0" 1013 | } 1014 | }, 1015 | "System.Runtime.Handles/4.3.0": { 1016 | "dependencies": { 1017 | "Microsoft.NETCore.Platforms": "2.1.2", 1018 | "Microsoft.NETCore.Targets": "1.1.0", 1019 | "System.Runtime": "4.3.0" 1020 | } 1021 | }, 1022 | "System.Runtime.InteropServices/4.3.0": { 1023 | "dependencies": { 1024 | "Microsoft.NETCore.Platforms": "2.1.2", 1025 | "Microsoft.NETCore.Targets": "1.1.0", 1026 | "System.Reflection": "4.3.0", 1027 | "System.Reflection.Primitives": "4.3.0", 1028 | "System.Runtime": "4.3.0", 1029 | "System.Runtime.Handles": "4.3.0" 1030 | } 1031 | }, 1032 | "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { 1033 | "dependencies": { 1034 | "System.Reflection": "4.3.0", 1035 | "System.Reflection.Extensions": "4.3.0", 1036 | "System.Resources.ResourceManager": "4.3.0", 1037 | "System.Runtime": "4.3.0", 1038 | "System.Runtime.InteropServices": "4.3.0", 1039 | "System.Threading": "4.3.0", 1040 | "runtime.native.System": "4.3.0" 1041 | } 1042 | }, 1043 | "System.Runtime.Numerics/4.3.0": { 1044 | "dependencies": { 1045 | "System.Globalization": "4.3.0", 1046 | "System.Resources.ResourceManager": "4.3.0", 1047 | "System.Runtime": "4.3.0", 1048 | "System.Runtime.Extensions": "4.3.0" 1049 | } 1050 | }, 1051 | "System.Runtime.Serialization.Formatters/4.3.0": { 1052 | "dependencies": { 1053 | "System.Collections": "4.3.0", 1054 | "System.Reflection": "4.3.0", 1055 | "System.Resources.ResourceManager": "4.3.0", 1056 | "System.Runtime": "4.3.0", 1057 | "System.Runtime.Serialization.Primitives": "4.3.0" 1058 | } 1059 | }, 1060 | "System.Runtime.Serialization.Primitives/4.3.0": { 1061 | "dependencies": { 1062 | "System.Resources.ResourceManager": "4.3.0", 1063 | "System.Runtime": "4.3.0" 1064 | } 1065 | }, 1066 | "System.Security.Claims/4.3.0": { 1067 | "dependencies": { 1068 | "System.Collections": "4.3.0", 1069 | "System.Globalization": "4.3.0", 1070 | "System.IO": "4.3.0", 1071 | "System.Resources.ResourceManager": "4.3.0", 1072 | "System.Runtime": "4.3.0", 1073 | "System.Runtime.Extensions": "4.3.0", 1074 | "System.Security.Principal": "4.3.0" 1075 | } 1076 | }, 1077 | "System.Security.Cryptography.Algorithms/4.3.0": { 1078 | "dependencies": { 1079 | "Microsoft.NETCore.Platforms": "2.1.2", 1080 | "System.Collections": "4.3.0", 1081 | "System.IO": "4.3.0", 1082 | "System.Resources.ResourceManager": "4.3.0", 1083 | "System.Runtime": "4.3.0", 1084 | "System.Runtime.Extensions": "4.3.0", 1085 | "System.Runtime.Handles": "4.3.0", 1086 | "System.Runtime.InteropServices": "4.3.0", 1087 | "System.Runtime.Numerics": "4.3.0", 1088 | "System.Security.Cryptography.Encoding": "4.3.0", 1089 | "System.Security.Cryptography.Primitives": "4.3.0", 1090 | "System.Text.Encoding": "4.3.0", 1091 | "runtime.native.System.Security.Cryptography.Apple": "4.3.0", 1092 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 1093 | } 1094 | }, 1095 | "System.Security.Cryptography.Cng/4.3.0": { 1096 | "dependencies": { 1097 | "Microsoft.NETCore.Platforms": "2.1.2", 1098 | "System.IO": "4.3.0", 1099 | "System.Resources.ResourceManager": "4.3.0", 1100 | "System.Runtime": "4.3.0", 1101 | "System.Runtime.Extensions": "4.3.0", 1102 | "System.Runtime.Handles": "4.3.0", 1103 | "System.Runtime.InteropServices": "4.3.0", 1104 | "System.Security.Cryptography.Algorithms": "4.3.0", 1105 | "System.Security.Cryptography.Encoding": "4.3.0", 1106 | "System.Security.Cryptography.Primitives": "4.3.0", 1107 | "System.Text.Encoding": "4.3.0" 1108 | } 1109 | }, 1110 | "System.Security.Cryptography.Csp/4.3.0": { 1111 | "dependencies": { 1112 | "Microsoft.NETCore.Platforms": "2.1.2", 1113 | "System.IO": "4.3.0", 1114 | "System.Reflection": "4.3.0", 1115 | "System.Resources.ResourceManager": "4.3.0", 1116 | "System.Runtime": "4.3.0", 1117 | "System.Runtime.Extensions": "4.3.0", 1118 | "System.Runtime.Handles": "4.3.0", 1119 | "System.Runtime.InteropServices": "4.3.0", 1120 | "System.Security.Cryptography.Algorithms": "4.3.0", 1121 | "System.Security.Cryptography.Encoding": "4.3.0", 1122 | "System.Security.Cryptography.Primitives": "4.3.0", 1123 | "System.Text.Encoding": "4.3.0", 1124 | "System.Threading": "4.3.0" 1125 | } 1126 | }, 1127 | "System.Security.Cryptography.Encoding/4.3.0": { 1128 | "dependencies": { 1129 | "Microsoft.NETCore.Platforms": "2.1.2", 1130 | "System.Collections": "4.3.0", 1131 | "System.Collections.Concurrent": "4.3.0", 1132 | "System.Linq": "4.3.0", 1133 | "System.Resources.ResourceManager": "4.3.0", 1134 | "System.Runtime": "4.3.0", 1135 | "System.Runtime.Extensions": "4.3.0", 1136 | "System.Runtime.Handles": "4.3.0", 1137 | "System.Runtime.InteropServices": "4.3.0", 1138 | "System.Security.Cryptography.Primitives": "4.3.0", 1139 | "System.Text.Encoding": "4.3.0", 1140 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 1141 | } 1142 | }, 1143 | "System.Security.Cryptography.OpenSsl/4.3.0": { 1144 | "dependencies": { 1145 | "System.Collections": "4.3.0", 1146 | "System.IO": "4.3.0", 1147 | "System.Resources.ResourceManager": "4.3.0", 1148 | "System.Runtime": "4.3.0", 1149 | "System.Runtime.Extensions": "4.3.0", 1150 | "System.Runtime.Handles": "4.3.0", 1151 | "System.Runtime.InteropServices": "4.3.0", 1152 | "System.Runtime.Numerics": "4.3.0", 1153 | "System.Security.Cryptography.Algorithms": "4.3.0", 1154 | "System.Security.Cryptography.Encoding": "4.3.0", 1155 | "System.Security.Cryptography.Primitives": "4.3.0", 1156 | "System.Text.Encoding": "4.3.0", 1157 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 1158 | } 1159 | }, 1160 | "System.Security.Cryptography.Primitives/4.3.0": { 1161 | "dependencies": { 1162 | "System.Diagnostics.Debug": "4.3.0", 1163 | "System.Globalization": "4.3.0", 1164 | "System.IO": "4.3.0", 1165 | "System.Resources.ResourceManager": "4.3.0", 1166 | "System.Runtime": "4.3.0", 1167 | "System.Threading": "4.3.0", 1168 | "System.Threading.Tasks": "4.3.0" 1169 | } 1170 | }, 1171 | "System.Security.Cryptography.X509Certificates/4.3.0": { 1172 | "dependencies": { 1173 | "Microsoft.NETCore.Platforms": "2.1.2", 1174 | "System.Collections": "4.3.0", 1175 | "System.Diagnostics.Debug": "4.3.0", 1176 | "System.Globalization": "4.3.0", 1177 | "System.Globalization.Calendars": "4.3.0", 1178 | "System.IO": "4.3.0", 1179 | "System.IO.FileSystem": "4.3.0", 1180 | "System.IO.FileSystem.Primitives": "4.3.0", 1181 | "System.Resources.ResourceManager": "4.3.0", 1182 | "System.Runtime": "4.3.0", 1183 | "System.Runtime.Extensions": "4.3.0", 1184 | "System.Runtime.Handles": "4.3.0", 1185 | "System.Runtime.InteropServices": "4.3.0", 1186 | "System.Runtime.Numerics": "4.3.0", 1187 | "System.Security.Cryptography.Algorithms": "4.3.0", 1188 | "System.Security.Cryptography.Cng": "4.3.0", 1189 | "System.Security.Cryptography.Csp": "4.3.0", 1190 | "System.Security.Cryptography.Encoding": "4.3.0", 1191 | "System.Security.Cryptography.OpenSsl": "4.3.0", 1192 | "System.Security.Cryptography.Primitives": "4.3.0", 1193 | "System.Text.Encoding": "4.3.0", 1194 | "System.Threading": "4.3.0", 1195 | "runtime.native.System": "4.3.0", 1196 | "runtime.native.System.Net.Http": "4.3.0", 1197 | "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.2" 1198 | } 1199 | }, 1200 | "System.Security.Principal/4.3.0": { 1201 | "dependencies": { 1202 | "System.Runtime": "4.3.0" 1203 | } 1204 | }, 1205 | "System.Security.Principal.Windows/4.3.0": { 1206 | "dependencies": { 1207 | "Microsoft.NETCore.Platforms": "2.1.2", 1208 | "Microsoft.Win32.Primitives": "4.3.0", 1209 | "System.Collections": "4.3.0", 1210 | "System.Diagnostics.Debug": "4.3.0", 1211 | "System.Reflection": "4.3.0", 1212 | "System.Resources.ResourceManager": "4.3.0", 1213 | "System.Runtime": "4.3.0", 1214 | "System.Runtime.Extensions": "4.3.0", 1215 | "System.Runtime.Handles": "4.3.0", 1216 | "System.Runtime.InteropServices": "4.3.0", 1217 | "System.Security.Claims": "4.3.0", 1218 | "System.Security.Principal": "4.3.0", 1219 | "System.Text.Encoding": "4.3.0", 1220 | "System.Threading": "4.3.0" 1221 | } 1222 | }, 1223 | "System.Security.SecureString/4.0.0": { 1224 | "dependencies": { 1225 | "Microsoft.NETCore.Platforms": "2.1.2", 1226 | "System.Resources.ResourceManager": "4.3.0", 1227 | "System.Runtime": "4.3.0", 1228 | "System.Runtime.Handles": "4.3.0", 1229 | "System.Runtime.InteropServices": "4.3.0", 1230 | "System.Security.Cryptography.Primitives": "4.3.0", 1231 | "System.Text.Encoding": "4.3.0", 1232 | "System.Threading": "4.3.0" 1233 | } 1234 | }, 1235 | "System.Text.Encoding/4.3.0": { 1236 | "dependencies": { 1237 | "Microsoft.NETCore.Platforms": "2.1.2", 1238 | "Microsoft.NETCore.Targets": "1.1.0", 1239 | "System.Runtime": "4.3.0" 1240 | } 1241 | }, 1242 | "System.Text.Encoding.CodePages/4.5.1": { 1243 | "dependencies": { 1244 | "Microsoft.NETCore.Platforms": "2.1.2", 1245 | "System.Runtime.CompilerServices.Unsafe": "4.5.2" 1246 | } 1247 | }, 1248 | "System.Text.Encoding.Extensions/4.3.0": { 1249 | "dependencies": { 1250 | "Microsoft.NETCore.Platforms": "2.1.2", 1251 | "Microsoft.NETCore.Targets": "1.1.0", 1252 | "System.Runtime": "4.3.0", 1253 | "System.Text.Encoding": "4.3.0" 1254 | } 1255 | }, 1256 | "System.Text.RegularExpressions/4.3.0": { 1257 | "dependencies": { 1258 | "System.Runtime": "4.3.0" 1259 | } 1260 | }, 1261 | "System.Threading/4.3.0": { 1262 | "dependencies": { 1263 | "System.Runtime": "4.3.0", 1264 | "System.Threading.Tasks": "4.3.0" 1265 | } 1266 | }, 1267 | "System.Threading.Tasks/4.3.0": { 1268 | "dependencies": { 1269 | "Microsoft.NETCore.Platforms": "2.1.2", 1270 | "Microsoft.NETCore.Targets": "1.1.0", 1271 | "System.Runtime": "4.3.0" 1272 | } 1273 | }, 1274 | "System.Threading.Tasks.Extensions/4.3.0": { 1275 | "dependencies": { 1276 | "System.Collections": "4.3.0", 1277 | "System.Runtime": "4.3.0", 1278 | "System.Threading.Tasks": "4.3.0" 1279 | } 1280 | }, 1281 | "System.Threading.Thread/4.3.0": { 1282 | "dependencies": { 1283 | "System.Runtime": "4.3.0" 1284 | } 1285 | }, 1286 | "System.Threading.ThreadPool/4.3.0": { 1287 | "dependencies": { 1288 | "System.Runtime": "4.3.0", 1289 | "System.Runtime.Handles": "4.3.0" 1290 | } 1291 | }, 1292 | "System.Xml.ReaderWriter/4.3.0": { 1293 | "dependencies": { 1294 | "System.Collections": "4.3.0", 1295 | "System.Diagnostics.Debug": "4.3.0", 1296 | "System.Globalization": "4.3.0", 1297 | "System.IO": "4.3.0", 1298 | "System.IO.FileSystem": "4.3.0", 1299 | "System.IO.FileSystem.Primitives": "4.3.0", 1300 | "System.Resources.ResourceManager": "4.3.0", 1301 | "System.Runtime": "4.3.0", 1302 | "System.Runtime.Extensions": "4.3.0", 1303 | "System.Runtime.InteropServices": "4.3.0", 1304 | "System.Text.Encoding": "4.3.0", 1305 | "System.Text.Encoding.Extensions": "4.3.0", 1306 | "System.Text.RegularExpressions": "4.3.0", 1307 | "System.Threading.Tasks": "4.3.0", 1308 | "System.Threading.Tasks.Extensions": "4.3.0" 1309 | } 1310 | }, 1311 | "System.Xml.XDocument/4.0.11": { 1312 | "dependencies": { 1313 | "System.Collections": "4.3.0", 1314 | "System.Diagnostics.Debug": "4.3.0", 1315 | "System.Diagnostics.Tools": "4.0.1", 1316 | "System.Globalization": "4.3.0", 1317 | "System.IO": "4.3.0", 1318 | "System.Reflection": "4.3.0", 1319 | "System.Resources.ResourceManager": "4.3.0", 1320 | "System.Runtime": "4.3.0", 1321 | "System.Runtime.Extensions": "4.3.0", 1322 | "System.Text.Encoding": "4.3.0", 1323 | "System.Threading": "4.3.0", 1324 | "System.Xml.ReaderWriter": "4.3.0" 1325 | } 1326 | }, 1327 | "System.Xml.XmlDocument/4.3.0": { 1328 | "dependencies": { 1329 | "System.Collections": "4.3.0", 1330 | "System.Diagnostics.Debug": "4.3.0", 1331 | "System.Globalization": "4.3.0", 1332 | "System.IO": "4.3.0", 1333 | "System.Resources.ResourceManager": "4.3.0", 1334 | "System.Runtime": "4.3.0", 1335 | "System.Runtime.Extensions": "4.3.0", 1336 | "System.Text.Encoding": "4.3.0", 1337 | "System.Threading": "4.3.0", 1338 | "System.Xml.ReaderWriter": "4.3.0" 1339 | } 1340 | }, 1341 | "System.Xml.XPath/4.3.0": { 1342 | "dependencies": { 1343 | "System.Collections": "4.3.0", 1344 | "System.Diagnostics.Debug": "4.3.0", 1345 | "System.Globalization": "4.3.0", 1346 | "System.IO": "4.3.0", 1347 | "System.Resources.ResourceManager": "4.3.0", 1348 | "System.Runtime": "4.3.0", 1349 | "System.Runtime.Extensions": "4.3.0", 1350 | "System.Threading": "4.3.0", 1351 | "System.Xml.ReaderWriter": "4.3.0" 1352 | } 1353 | }, 1354 | "System.Xml.XPath.XmlDocument/4.3.0": { 1355 | "dependencies": { 1356 | "System.Collections": "4.3.0", 1357 | "System.Globalization": "4.3.0", 1358 | "System.IO": "4.3.0", 1359 | "System.Resources.ResourceManager": "4.3.0", 1360 | "System.Runtime": "4.3.0", 1361 | "System.Runtime.Extensions": "4.3.0", 1362 | "System.Threading": "4.3.0", 1363 | "System.Xml.ReaderWriter": "4.3.0", 1364 | "System.Xml.XPath": "4.3.0", 1365 | "System.Xml.XmlDocument": "4.3.0" 1366 | }, 1367 | "runtime": { 1368 | "lib/netstandard1.3/System.Xml.XPath.XmlDocument.dll": { 1369 | "assemblyVersion": "4.0.2.0", 1370 | "fileVersion": "4.6.24705.1" 1371 | } 1372 | } 1373 | }, 1374 | "MongoDBExample/1.0.0": { 1375 | "dependencies": { 1376 | "Microsoft.Extensions.DependencyInjection": "3.1.3", 1377 | "MongoDB.Driver": "2.10.3" 1378 | }, 1379 | "runtime": { 1380 | "MongoDBExample.dll": {} 1381 | } 1382 | } 1383 | } 1384 | }, 1385 | "libraries": { 1386 | "NUnitTestProjectExample/1.0.0": { 1387 | "type": "project", 1388 | "serviceable": false, 1389 | "sha512": "" 1390 | }, 1391 | "Castle.Core/4.4.0": { 1392 | "type": "package", 1393 | "serviceable": true, 1394 | "sha512": "sha512-b5rRL5zeaau1y/5hIbI+6mGw3cwun16YjkHZnV9RRT5UyUIFsgLmNXJ0YnIN9p8Hw7K7AbG1q1UclQVU3DinAQ==", 1395 | "path": "castle.core/4.4.0", 1396 | "hashPath": "castle.core.4.4.0.nupkg.sha512" 1397 | }, 1398 | "DnsClient/1.3.1": { 1399 | "type": "package", 1400 | "serviceable": true, 1401 | "sha512": "sha512-b9XczgqSjs3dd+OlV799jn+LXxdfirln1q36GKjs3QwWBhjhgIvgHLEG5s2VrBLcP4ogQjtA0PZ5+AmRJ35Vhg==", 1402 | "path": "dnsclient/1.3.1", 1403 | "hashPath": "dnsclient.1.3.1.nupkg.sha512" 1404 | }, 1405 | "Microsoft.CodeCoverage/16.4.0": { 1406 | "type": "package", 1407 | "serviceable": true, 1408 | "sha512": "sha512-qb7PMVZMAY5iUCvB/kDUEt9xqazWKZoKY/sGpAJO4VtwgN5IcEgipCu3n0i1GPCwGbWVL6k4a8a9F+FqmADJng==", 1409 | "path": "microsoft.codecoverage/16.4.0", 1410 | "hashPath": "microsoft.codecoverage.16.4.0.nupkg.sha512" 1411 | }, 1412 | "Microsoft.CSharp/4.0.1": { 1413 | "type": "package", 1414 | "serviceable": true, 1415 | "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", 1416 | "path": "microsoft.csharp/4.0.1", 1417 | "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" 1418 | }, 1419 | "Microsoft.DotNet.InternalAbstractions/1.0.0": { 1420 | "type": "package", 1421 | "serviceable": true, 1422 | "sha512": "sha512-AAguUq7YyKk3yDWPoWA8DrLZvURxB/LrDdTn1h5lmPeznkFUpfC3p459w5mQYQE0qpquf/CkSQZ0etiV5vRHFA==", 1423 | "path": "microsoft.dotnet.internalabstractions/1.0.0", 1424 | "hashPath": "microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512" 1425 | }, 1426 | "Microsoft.Extensions.DependencyInjection/3.1.3": { 1427 | "type": "package", 1428 | "serviceable": true, 1429 | "sha512": "sha512-H/d/jt4Pdp2iYx28shLkxfgQpk9S7cCCTEjtS/61PbZcFAT/mc4cemmOlBdED7+CqmEAIDg8X4Fo0KtADaNizg==", 1430 | "path": "microsoft.extensions.dependencyinjection/3.1.3", 1431 | "hashPath": "microsoft.extensions.dependencyinjection.3.1.3.nupkg.sha512" 1432 | }, 1433 | "Microsoft.Extensions.DependencyInjection.Abstractions/3.1.3": { 1434 | "type": "package", 1435 | "serviceable": true, 1436 | "sha512": "sha512-woeS5XeBChU76EmtFCwGHKgBfsYIn76u3myDq4zNY2ZrcwzBMNEViK2FRgXDgF11PBNbGdKCXsWFFZDtqPW0nQ==", 1437 | "path": "microsoft.extensions.dependencyinjection.abstractions/3.1.3", 1438 | "hashPath": "microsoft.extensions.dependencyinjection.abstractions.3.1.3.nupkg.sha512" 1439 | }, 1440 | "Microsoft.NET.Test.Sdk/16.4.0": { 1441 | "type": "package", 1442 | "serviceable": true, 1443 | "sha512": "sha512-gjjqS3rCzg4DrSQq4YwJwUUvc49HtXpXrZkW9fu5VG+K4X+Ztn4+UzolyML7wPnl/EAIufk4hu628bJB4WtpFg==", 1444 | "path": "microsoft.net.test.sdk/16.4.0", 1445 | "hashPath": "microsoft.net.test.sdk.16.4.0.nupkg.sha512" 1446 | }, 1447 | "Microsoft.NETCore.Platforms/2.1.2": { 1448 | "type": "package", 1449 | "serviceable": true, 1450 | "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", 1451 | "path": "microsoft.netcore.platforms/2.1.2", 1452 | "hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512" 1453 | }, 1454 | "Microsoft.NETCore.Targets/1.1.0": { 1455 | "type": "package", 1456 | "serviceable": true, 1457 | "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", 1458 | "path": "microsoft.netcore.targets/1.1.0", 1459 | "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" 1460 | }, 1461 | "Microsoft.TestPlatform.ObjectModel/16.4.0": { 1462 | "type": "package", 1463 | "serviceable": true, 1464 | "sha512": "sha512-4geKywSUJHHrfBTr1wJXUVWP0Vx1X03oFQAdZdGa8jK8p5MSwsJ4Vd0/mqN0dB2YXaIXIhDT94ti5WQ1KZ4jdw==", 1465 | "path": "microsoft.testplatform.objectmodel/16.4.0", 1466 | "hashPath": "microsoft.testplatform.objectmodel.16.4.0.nupkg.sha512" 1467 | }, 1468 | "Microsoft.TestPlatform.TestHost/16.4.0": { 1469 | "type": "package", 1470 | "serviceable": true, 1471 | "sha512": "sha512-tMlz3uc7VUZSYYslyVOVXH40KexTptZMAi8gIE+5w+SIt8I0qLPObpqX6QVLWszPr7sxX4WAKTiFgqgBB1MxjA==", 1472 | "path": "microsoft.testplatform.testhost/16.4.0", 1473 | "hashPath": "microsoft.testplatform.testhost.16.4.0.nupkg.sha512" 1474 | }, 1475 | "Microsoft.Win32.Primitives/4.3.0": { 1476 | "type": "package", 1477 | "serviceable": true, 1478 | "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", 1479 | "path": "microsoft.win32.primitives/4.3.0", 1480 | "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" 1481 | }, 1482 | "Microsoft.Win32.Registry/4.3.0": { 1483 | "type": "package", 1484 | "serviceable": true, 1485 | "sha512": "sha512-Lw1/VwLH1yxz6SfFEjVRCN0pnflLEsWgnV4qsdJ512/HhTwnKXUG+zDQ4yTO3K/EJQemGoNaBHX5InISNKTzUQ==", 1486 | "path": "microsoft.win32.registry/4.3.0", 1487 | "hashPath": "microsoft.win32.registry.4.3.0.nupkg.sha512" 1488 | }, 1489 | "MongoDB.Bson/2.10.3": { 1490 | "type": "package", 1491 | "serviceable": true, 1492 | "sha512": "sha512-UT6w7vsiXlCH7mABxj/NuaGR0KWfXIW5zP5RHW16JrviiygSoEb6fEUhs1QgrjdcNHP+gns1/T9Sfqi4KUPPew==", 1493 | "path": "mongodb.bson/2.10.3", 1494 | "hashPath": "mongodb.bson.2.10.3.nupkg.sha512" 1495 | }, 1496 | "MongoDB.Driver/2.10.3": { 1497 | "type": "package", 1498 | "serviceable": true, 1499 | "sha512": "sha512-KArEHjZrga9cGM8/OcYpr5vkQq4V8P54L3L/D8oUNAVREwzJ2BExX8LNNV7Y2qt9lWk3kO8JkUcjgoD77DyDog==", 1500 | "path": "mongodb.driver/2.10.3", 1501 | "hashPath": "mongodb.driver.2.10.3.nupkg.sha512" 1502 | }, 1503 | "MongoDB.Driver.Core/2.10.3": { 1504 | "type": "package", 1505 | "serviceable": true, 1506 | "sha512": "sha512-YnHsNpIVDzjrDDagg1mhu7F7i11zAdSxQlmhbD3+VuU5Yb2fcjVrS2s90QsrshxuAAXg3DreYNx7hWBK4JvKGg==", 1507 | "path": "mongodb.driver.core/2.10.3", 1508 | "hashPath": "mongodb.driver.core.2.10.3.nupkg.sha512" 1509 | }, 1510 | "MongoDB.Libmongocrypt/1.0.0": { 1511 | "type": "package", 1512 | "serviceable": true, 1513 | "sha512": "sha512-zkcsra5riDiKXqOiCKskycakpbO5RYkuUWG+z2AZML3A4NShvAs/D3InwkxH0OcbjZQOWo763Hjdmhr0AaylcA==", 1514 | "path": "mongodb.libmongocrypt/1.0.0", 1515 | "hashPath": "mongodb.libmongocrypt.1.0.0.nupkg.sha512" 1516 | }, 1517 | "NBuilder/6.1.0": { 1518 | "type": "package", 1519 | "serviceable": true, 1520 | "sha512": "sha512-NtDOtz/yc24t5yNivaGJQ1LHczoaYwNDjI04P7KEFDmbb2h6uL5OJZ5ExKx+wcypK2dBhRj2o1SiLAfj3kc8jw==", 1521 | "path": "nbuilder/6.1.0", 1522 | "hashPath": "nbuilder.6.1.0.nupkg.sha512" 1523 | }, 1524 | "NETStandard.Library/2.0.0": { 1525 | "type": "package", 1526 | "serviceable": true, 1527 | "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", 1528 | "path": "netstandard.library/2.0.0", 1529 | "hashPath": "netstandard.library.2.0.0.nupkg.sha512" 1530 | }, 1531 | "Newtonsoft.Json/9.0.1": { 1532 | "type": "package", 1533 | "serviceable": true, 1534 | "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", 1535 | "path": "newtonsoft.json/9.0.1", 1536 | "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512" 1537 | }, 1538 | "NSubstitute/4.2.1": { 1539 | "type": "package", 1540 | "serviceable": true, 1541 | "sha512": "sha512-CqQuOU06ftAKrTV7Op/s0hdSII4RP6SNjP/XT1+2oEC6EqwYLXOfek/p+SEuHgaH8WNwEHWIYjsrUV9oSOIOXw==", 1542 | "path": "nsubstitute/4.2.1", 1543 | "hashPath": "nsubstitute.4.2.1.nupkg.sha512" 1544 | }, 1545 | "NuGet.Frameworks/5.0.0": { 1546 | "type": "package", 1547 | "serviceable": true, 1548 | "sha512": "sha512-c5JVjuVAm4f7E9Vj+v09Z9s2ZsqFDjBpcsyS3M9xRo0bEdm/LVZSzLxxNvfvAwRiiE8nwe1h2G4OwiwlzFKXlA==", 1549 | "path": "nuget.frameworks/5.0.0", 1550 | "hashPath": "nuget.frameworks.5.0.0.nupkg.sha512" 1551 | }, 1552 | "NUnit/3.12.0": { 1553 | "type": "package", 1554 | "serviceable": true, 1555 | "sha512": "sha512-3oJTrcUcT9wmweBUwgUf0f1XIYy6RZq2ziV+RM95HMKAJGsHPN2i3MKK1dAPvDPMRLz799Llj4eyu/STB9Q7OA==", 1556 | "path": "nunit/3.12.0", 1557 | "hashPath": "nunit.3.12.0.nupkg.sha512" 1558 | }, 1559 | "NUnit3TestAdapter/3.15.1": { 1560 | "type": "package", 1561 | "serviceable": true, 1562 | "sha512": "sha512-gqy0llGjhJYq9ebFvtbmBcF/MY8z5kcTIxYs+eXwp2d4Ntha8pSPxUzryvBm7H46VbWI6FS5/XNbxwiQpe88vQ==", 1563 | "path": "nunit3testadapter/3.15.1", 1564 | "hashPath": "nunit3testadapter.3.15.1.nupkg.sha512" 1565 | }, 1566 | "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1567 | "type": "package", 1568 | "serviceable": true, 1569 | "sha512": "sha512-7VSGO0URRKoMEAq0Sc9cRz8mb6zbyx/BZDEWhgPdzzpmFhkam3fJ1DAGWFXBI4nGlma+uPKpfuMQP5LXRnOH5g==", 1570 | "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1571 | "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1572 | }, 1573 | "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1574 | "type": "package", 1575 | "serviceable": true, 1576 | "sha512": "sha512-0oAaTAm6e2oVH+/Zttt0cuhGaePQYKII1dY8iaqP7CvOpVKgLybKRFvQjXR2LtxXOXTVPNv14j0ot8uV+HrUmw==", 1577 | "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1578 | "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1579 | }, 1580 | "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1581 | "type": "package", 1582 | "serviceable": true, 1583 | "sha512": "sha512-G24ibsCNi5Kbz0oXWynBoRgtGvsw5ZSVEWjv13/KiCAM8C6wz9zzcCniMeQFIkJ2tasjo2kXlvlBZhplL51kGg==", 1584 | "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1585 | "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1586 | }, 1587 | "runtime.native.System/4.3.0": { 1588 | "type": "package", 1589 | "serviceable": true, 1590 | "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", 1591 | "path": "runtime.native.system/4.3.0", 1592 | "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" 1593 | }, 1594 | "runtime.native.System.Net.Http/4.3.0": { 1595 | "type": "package", 1596 | "serviceable": true, 1597 | "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", 1598 | "path": "runtime.native.system.net.http/4.3.0", 1599 | "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" 1600 | }, 1601 | "runtime.native.System.Net.Security/4.3.0": { 1602 | "type": "package", 1603 | "serviceable": true, 1604 | "sha512": "sha512-M2nN92ePS8BgQ2oi6Jj3PlTUzadYSIWLdZrHY1n1ZcW9o4wAQQ6W+aQ2lfq1ysZQfVCgDwY58alUdowrzezztg==", 1605 | "path": "runtime.native.system.net.security/4.3.0", 1606 | "hashPath": "runtime.native.system.net.security.4.3.0.nupkg.sha512" 1607 | }, 1608 | "runtime.native.System.Security.Cryptography.Apple/4.3.0": { 1609 | "type": "package", 1610 | "serviceable": true, 1611 | "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", 1612 | "path": "runtime.native.system.security.cryptography.apple/4.3.0", 1613 | "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" 1614 | }, 1615 | "runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1616 | "type": "package", 1617 | "serviceable": true, 1618 | "sha512": "sha512-QR1OwtwehHxSeQvZKXe+iSd+d3XZNkEcuWMFYa2i0aG1l+lR739HPicKMlTbJst3spmeekDVBUS7SeS26s4U/g==", 1619 | "path": "runtime.native.system.security.cryptography.openssl/4.3.2", 1620 | "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1621 | }, 1622 | "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1623 | "type": "package", 1624 | "serviceable": true, 1625 | "sha512": "sha512-I+GNKGg2xCHueRd1m9PzeEW7WLbNNLznmTuEi8/vZX71HudUbx1UTwlGkiwMri7JLl8hGaIAWnA/GONhu+LOyQ==", 1626 | "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1627 | "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1628 | }, 1629 | "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1630 | "type": "package", 1631 | "serviceable": true, 1632 | "sha512": "sha512-1Z3TAq1ytS1IBRtPXJvEUZdVsfWfeNEhBkbiOCGEl9wwAfsjP2lz3ZFDx5tq8p60/EqbS0HItG5piHuB71RjoA==", 1633 | "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1634 | "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1635 | }, 1636 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { 1637 | "type": "package", 1638 | "serviceable": true, 1639 | "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", 1640 | "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", 1641 | "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" 1642 | }, 1643 | "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1644 | "type": "package", 1645 | "serviceable": true, 1646 | "sha512": "sha512-6mU/cVmmHtQiDXhnzUImxIcDL48GbTk+TsptXyJA+MIOG9LRjPoAQC/qBFB7X+UNyK86bmvGwC8t+M66wsYC8w==", 1647 | "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1648 | "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1649 | }, 1650 | "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1651 | "type": "package", 1652 | "serviceable": true, 1653 | "sha512": "sha512-vjwG0GGcTW/PPg6KVud8F9GLWYuAV1rrw1BKAqY0oh4jcUqg15oYF1+qkGR2x2ZHM4DQnWKQ7cJgYbfncz/lYg==", 1654 | "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1655 | "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1656 | }, 1657 | "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1658 | "type": "package", 1659 | "serviceable": true, 1660 | "sha512": "sha512-7KMFpTkHC/zoExs+PwP8jDCWcrK9H6L7soowT80CUx3e+nxP/AFnq0AQAW5W76z2WYbLAYCRyPfwYFG6zkvQRw==", 1661 | "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1662 | "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1663 | }, 1664 | "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1665 | "type": "package", 1666 | "serviceable": true, 1667 | "sha512": "sha512-xrlmRCnKZJLHxyyLIqkZjNXqgxnKdZxfItrPkjI+6pkRo5lHX8YvSZlWrSI5AVwLMi4HbNWP7064hcAWeZKp5w==", 1668 | "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1669 | "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1670 | }, 1671 | "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.2": { 1672 | "type": "package", 1673 | "serviceable": true, 1674 | "sha512": "sha512-leXiwfiIkW7Gmn7cgnNcdtNAU70SjmKW3jxGj1iKHOvdn0zRWsgv/l2OJUO5zdGdiv2VRFnAsxxhDgMzofPdWg==", 1675 | "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.2", 1676 | "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512" 1677 | }, 1678 | "SharpCompress/0.23.0": { 1679 | "type": "package", 1680 | "serviceable": true, 1681 | "sha512": "sha512-HBbT47JHvNrsZX2dTBzUBOSzBt+EmIRGLIBkbxcP6Jef7DB4eFWQX5iHWV3Nj7hABFPCjISrZ8s0z72nF2zFHQ==", 1682 | "path": "sharpcompress/0.23.0", 1683 | "hashPath": "sharpcompress.0.23.0.nupkg.sha512" 1684 | }, 1685 | "System.AppContext/4.1.0": { 1686 | "type": "package", 1687 | "serviceable": true, 1688 | "sha512": "sha512-3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", 1689 | "path": "system.appcontext/4.1.0", 1690 | "hashPath": "system.appcontext.4.1.0.nupkg.sha512" 1691 | }, 1692 | "System.Collections/4.3.0": { 1693 | "type": "package", 1694 | "serviceable": true, 1695 | "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", 1696 | "path": "system.collections/4.3.0", 1697 | "hashPath": "system.collections.4.3.0.nupkg.sha512" 1698 | }, 1699 | "System.Collections.Concurrent/4.3.0": { 1700 | "type": "package", 1701 | "serviceable": true, 1702 | "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", 1703 | "path": "system.collections.concurrent/4.3.0", 1704 | "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" 1705 | }, 1706 | "System.Collections.NonGeneric/4.3.0": { 1707 | "type": "package", 1708 | "serviceable": true, 1709 | "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", 1710 | "path": "system.collections.nongeneric/4.3.0", 1711 | "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" 1712 | }, 1713 | "System.Collections.Specialized/4.3.0": { 1714 | "type": "package", 1715 | "serviceable": true, 1716 | "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", 1717 | "path": "system.collections.specialized/4.3.0", 1718 | "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" 1719 | }, 1720 | "System.ComponentModel/4.3.0": { 1721 | "type": "package", 1722 | "serviceable": true, 1723 | "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", 1724 | "path": "system.componentmodel/4.3.0", 1725 | "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" 1726 | }, 1727 | "System.ComponentModel.EventBasedAsync/4.3.0": { 1728 | "type": "package", 1729 | "serviceable": true, 1730 | "sha512": "sha512-fCFl8f0XdwA/BuoNrVBB5D0Y48/hv2J+w4xSDdXQitXZsR6UCSOrDVE7TCUraY802ENwcHUnUCv4En8CupDU1g==", 1731 | "path": "system.componentmodel.eventbasedasync/4.3.0", 1732 | "hashPath": "system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512" 1733 | }, 1734 | "System.ComponentModel.Primitives/4.3.0": { 1735 | "type": "package", 1736 | "serviceable": true, 1737 | "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", 1738 | "path": "system.componentmodel.primitives/4.3.0", 1739 | "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" 1740 | }, 1741 | "System.ComponentModel.TypeConverter/4.3.0": { 1742 | "type": "package", 1743 | "serviceable": true, 1744 | "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", 1745 | "path": "system.componentmodel.typeconverter/4.3.0", 1746 | "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" 1747 | }, 1748 | "System.Diagnostics.Debug/4.3.0": { 1749 | "type": "package", 1750 | "serviceable": true, 1751 | "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", 1752 | "path": "system.diagnostics.debug/4.3.0", 1753 | "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" 1754 | }, 1755 | "System.Diagnostics.Process/4.3.0": { 1756 | "type": "package", 1757 | "serviceable": true, 1758 | "sha512": "sha512-J0wOX07+QASQblsfxmIMFc9Iq7KTXYL3zs2G/Xc704Ylv3NpuVdo6gij6V3PGiptTxqsK0K7CdXenRvKUnkA2g==", 1759 | "path": "system.diagnostics.process/4.3.0", 1760 | "hashPath": "system.diagnostics.process.4.3.0.nupkg.sha512" 1761 | }, 1762 | "System.Diagnostics.TextWriterTraceListener/4.0.0": { 1763 | "type": "package", 1764 | "serviceable": true, 1765 | "sha512": "sha512-w36Dr8yKy8xP150qPANe7Td+/zOI3G62ImRcHDIEW+oUXUuTKZHd4DHmqRx5+x8RXd85v3tXd1uhNTfsr+yxjA==", 1766 | "path": "system.diagnostics.textwritertracelistener/4.0.0", 1767 | "hashPath": "system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512" 1768 | }, 1769 | "System.Diagnostics.Tools/4.0.1": { 1770 | "type": "package", 1771 | "serviceable": true, 1772 | "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", 1773 | "path": "system.diagnostics.tools/4.0.1", 1774 | "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" 1775 | }, 1776 | "System.Diagnostics.TraceSource/4.3.0": { 1777 | "type": "package", 1778 | "serviceable": true, 1779 | "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", 1780 | "path": "system.diagnostics.tracesource/4.3.0", 1781 | "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" 1782 | }, 1783 | "System.Diagnostics.Tracing/4.3.0": { 1784 | "type": "package", 1785 | "serviceable": true, 1786 | "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", 1787 | "path": "system.diagnostics.tracing/4.3.0", 1788 | "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" 1789 | }, 1790 | "System.Dynamic.Runtime/4.3.0": { 1791 | "type": "package", 1792 | "serviceable": true, 1793 | "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", 1794 | "path": "system.dynamic.runtime/4.3.0", 1795 | "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" 1796 | }, 1797 | "System.Globalization/4.3.0": { 1798 | "type": "package", 1799 | "serviceable": true, 1800 | "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", 1801 | "path": "system.globalization/4.3.0", 1802 | "hashPath": "system.globalization.4.3.0.nupkg.sha512" 1803 | }, 1804 | "System.Globalization.Calendars/4.3.0": { 1805 | "type": "package", 1806 | "serviceable": true, 1807 | "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", 1808 | "path": "system.globalization.calendars/4.3.0", 1809 | "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" 1810 | }, 1811 | "System.Globalization.Extensions/4.3.0": { 1812 | "type": "package", 1813 | "serviceable": true, 1814 | "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", 1815 | "path": "system.globalization.extensions/4.3.0", 1816 | "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" 1817 | }, 1818 | "System.IO/4.3.0": { 1819 | "type": "package", 1820 | "serviceable": true, 1821 | "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", 1822 | "path": "system.io/4.3.0", 1823 | "hashPath": "system.io.4.3.0.nupkg.sha512" 1824 | }, 1825 | "System.IO.FileSystem/4.3.0": { 1826 | "type": "package", 1827 | "serviceable": true, 1828 | "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", 1829 | "path": "system.io.filesystem/4.3.0", 1830 | "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" 1831 | }, 1832 | "System.IO.FileSystem.Primitives/4.3.0": { 1833 | "type": "package", 1834 | "serviceable": true, 1835 | "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", 1836 | "path": "system.io.filesystem.primitives/4.3.0", 1837 | "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" 1838 | }, 1839 | "System.Linq/4.3.0": { 1840 | "type": "package", 1841 | "serviceable": true, 1842 | "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", 1843 | "path": "system.linq/4.3.0", 1844 | "hashPath": "system.linq.4.3.0.nupkg.sha512" 1845 | }, 1846 | "System.Linq.Expressions/4.3.0": { 1847 | "type": "package", 1848 | "serviceable": true, 1849 | "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", 1850 | "path": "system.linq.expressions/4.3.0", 1851 | "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" 1852 | }, 1853 | "System.Linq.Queryable/4.0.1": { 1854 | "type": "package", 1855 | "serviceable": true, 1856 | "sha512": "sha512-Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", 1857 | "path": "system.linq.queryable/4.0.1", 1858 | "hashPath": "system.linq.queryable.4.0.1.nupkg.sha512" 1859 | }, 1860 | "System.Net.NameResolution/4.3.0": { 1861 | "type": "package", 1862 | "serviceable": true, 1863 | "sha512": "sha512-AFYl08R7MrsrEjqpQWTZWBadqXyTzNDaWpMqyxhb0d6sGhV6xMDKueuBXlLL30gz+DIRY6MpdgnHWlCh5wmq9w==", 1864 | "path": "system.net.nameresolution/4.3.0", 1865 | "hashPath": "system.net.nameresolution.4.3.0.nupkg.sha512" 1866 | }, 1867 | "System.Net.Primitives/4.3.0": { 1868 | "type": "package", 1869 | "serviceable": true, 1870 | "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", 1871 | "path": "system.net.primitives/4.3.0", 1872 | "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" 1873 | }, 1874 | "System.Net.Security/4.3.2": { 1875 | "type": "package", 1876 | "serviceable": true, 1877 | "sha512": "sha512-xT2jbYpbBo3ha87rViHoTA6WdvqOAW37drmqyx/6LD8p7HEPT2qgdxoimRzWtPg8Jh4X5G9BV2seeTv4x6FYlA==", 1878 | "path": "system.net.security/4.3.2", 1879 | "hashPath": "system.net.security.4.3.2.nupkg.sha512" 1880 | }, 1881 | "System.ObjectModel/4.3.0": { 1882 | "type": "package", 1883 | "serviceable": true, 1884 | "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", 1885 | "path": "system.objectmodel/4.3.0", 1886 | "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" 1887 | }, 1888 | "System.Reflection/4.3.0": { 1889 | "type": "package", 1890 | "serviceable": true, 1891 | "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", 1892 | "path": "system.reflection/4.3.0", 1893 | "hashPath": "system.reflection.4.3.0.nupkg.sha512" 1894 | }, 1895 | "System.Reflection.Emit/4.3.0": { 1896 | "type": "package", 1897 | "serviceable": true, 1898 | "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", 1899 | "path": "system.reflection.emit/4.3.0", 1900 | "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" 1901 | }, 1902 | "System.Reflection.Emit.ILGeneration/4.3.0": { 1903 | "type": "package", 1904 | "serviceable": true, 1905 | "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", 1906 | "path": "system.reflection.emit.ilgeneration/4.3.0", 1907 | "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" 1908 | }, 1909 | "System.Reflection.Emit.Lightweight/4.3.0": { 1910 | "type": "package", 1911 | "serviceable": true, 1912 | "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", 1913 | "path": "system.reflection.emit.lightweight/4.3.0", 1914 | "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" 1915 | }, 1916 | "System.Reflection.Extensions/4.3.0": { 1917 | "type": "package", 1918 | "serviceable": true, 1919 | "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", 1920 | "path": "system.reflection.extensions/4.3.0", 1921 | "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" 1922 | }, 1923 | "System.Reflection.Primitives/4.3.0": { 1924 | "type": "package", 1925 | "serviceable": true, 1926 | "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", 1927 | "path": "system.reflection.primitives/4.3.0", 1928 | "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" 1929 | }, 1930 | "System.Reflection.TypeExtensions/4.3.0": { 1931 | "type": "package", 1932 | "serviceable": true, 1933 | "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", 1934 | "path": "system.reflection.typeextensions/4.3.0", 1935 | "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" 1936 | }, 1937 | "System.Resources.ResourceManager/4.3.0": { 1938 | "type": "package", 1939 | "serviceable": true, 1940 | "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", 1941 | "path": "system.resources.resourcemanager/4.3.0", 1942 | "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" 1943 | }, 1944 | "System.Runtime/4.3.0": { 1945 | "type": "package", 1946 | "serviceable": true, 1947 | "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", 1948 | "path": "system.runtime/4.3.0", 1949 | "hashPath": "system.runtime.4.3.0.nupkg.sha512" 1950 | }, 1951 | "System.Runtime.CompilerServices.Unsafe/4.5.2": { 1952 | "type": "package", 1953 | "serviceable": true, 1954 | "sha512": "sha512-wprSFgext8cwqymChhrBLu62LMg/1u92bU+VOwyfBimSPVFXtsNqEWC92Pf9ofzJFlk4IHmJA75EDJn1b2goAQ==", 1955 | "path": "system.runtime.compilerservices.unsafe/4.5.2", 1956 | "hashPath": "system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512" 1957 | }, 1958 | "System.Runtime.Extensions/4.3.0": { 1959 | "type": "package", 1960 | "serviceable": true, 1961 | "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", 1962 | "path": "system.runtime.extensions/4.3.0", 1963 | "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" 1964 | }, 1965 | "System.Runtime.Handles/4.3.0": { 1966 | "type": "package", 1967 | "serviceable": true, 1968 | "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", 1969 | "path": "system.runtime.handles/4.3.0", 1970 | "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" 1971 | }, 1972 | "System.Runtime.InteropServices/4.3.0": { 1973 | "type": "package", 1974 | "serviceable": true, 1975 | "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", 1976 | "path": "system.runtime.interopservices/4.3.0", 1977 | "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" 1978 | }, 1979 | "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { 1980 | "type": "package", 1981 | "serviceable": true, 1982 | "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", 1983 | "path": "system.runtime.interopservices.runtimeinformation/4.3.0", 1984 | "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" 1985 | }, 1986 | "System.Runtime.Numerics/4.3.0": { 1987 | "type": "package", 1988 | "serviceable": true, 1989 | "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", 1990 | "path": "system.runtime.numerics/4.3.0", 1991 | "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" 1992 | }, 1993 | "System.Runtime.Serialization.Formatters/4.3.0": { 1994 | "type": "package", 1995 | "serviceable": true, 1996 | "sha512": "sha512-KT591AkTNFOTbhZlaeMVvfax3RqhH1EJlcwF50Wm7sfnBLuHiOeZRRKrr1ns3NESkM20KPZ5Ol/ueMq5vg4QoQ==", 1997 | "path": "system.runtime.serialization.formatters/4.3.0", 1998 | "hashPath": "system.runtime.serialization.formatters.4.3.0.nupkg.sha512" 1999 | }, 2000 | "System.Runtime.Serialization.Primitives/4.3.0": { 2001 | "type": "package", 2002 | "serviceable": true, 2003 | "sha512": "sha512-Wz+0KOukJGAlXjtKr+5Xpuxf8+c8739RI1C+A2BoQZT+wMCCoMDDdO8/4IRHfaVINqL78GO8dW8G2lW/e45Mcw==", 2004 | "path": "system.runtime.serialization.primitives/4.3.0", 2005 | "hashPath": "system.runtime.serialization.primitives.4.3.0.nupkg.sha512" 2006 | }, 2007 | "System.Security.Claims/4.3.0": { 2008 | "type": "package", 2009 | "serviceable": true, 2010 | "sha512": "sha512-P/+BR/2lnc4PNDHt/TPBAWHVMLMRHsyYZbU1NphW4HIWzCggz8mJbTQQ3MKljFE7LS3WagmVFuBgoLcFzYXlkA==", 2011 | "path": "system.security.claims/4.3.0", 2012 | "hashPath": "system.security.claims.4.3.0.nupkg.sha512" 2013 | }, 2014 | "System.Security.Cryptography.Algorithms/4.3.0": { 2015 | "type": "package", 2016 | "serviceable": true, 2017 | "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", 2018 | "path": "system.security.cryptography.algorithms/4.3.0", 2019 | "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" 2020 | }, 2021 | "System.Security.Cryptography.Cng/4.3.0": { 2022 | "type": "package", 2023 | "serviceable": true, 2024 | "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", 2025 | "path": "system.security.cryptography.cng/4.3.0", 2026 | "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" 2027 | }, 2028 | "System.Security.Cryptography.Csp/4.3.0": { 2029 | "type": "package", 2030 | "serviceable": true, 2031 | "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", 2032 | "path": "system.security.cryptography.csp/4.3.0", 2033 | "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" 2034 | }, 2035 | "System.Security.Cryptography.Encoding/4.3.0": { 2036 | "type": "package", 2037 | "serviceable": true, 2038 | "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", 2039 | "path": "system.security.cryptography.encoding/4.3.0", 2040 | "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" 2041 | }, 2042 | "System.Security.Cryptography.OpenSsl/4.3.0": { 2043 | "type": "package", 2044 | "serviceable": true, 2045 | "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", 2046 | "path": "system.security.cryptography.openssl/4.3.0", 2047 | "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" 2048 | }, 2049 | "System.Security.Cryptography.Primitives/4.3.0": { 2050 | "type": "package", 2051 | "serviceable": true, 2052 | "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", 2053 | "path": "system.security.cryptography.primitives/4.3.0", 2054 | "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" 2055 | }, 2056 | "System.Security.Cryptography.X509Certificates/4.3.0": { 2057 | "type": "package", 2058 | "serviceable": true, 2059 | "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", 2060 | "path": "system.security.cryptography.x509certificates/4.3.0", 2061 | "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" 2062 | }, 2063 | "System.Security.Principal/4.3.0": { 2064 | "type": "package", 2065 | "serviceable": true, 2066 | "sha512": "sha512-I1tkfQlAoMM2URscUtpcRo/hX0jinXx6a/KUtEQoz3owaYwl3qwsO8cbzYVVnjxrzxjHo3nJC+62uolgeGIS9A==", 2067 | "path": "system.security.principal/4.3.0", 2068 | "hashPath": "system.security.principal.4.3.0.nupkg.sha512" 2069 | }, 2070 | "System.Security.Principal.Windows/4.3.0": { 2071 | "type": "package", 2072 | "serviceable": true, 2073 | "sha512": "sha512-HVL1rvqYtnRCxFsYag/2le/ZfKLK4yMw79+s6FmKXbSCNN0JeAhrYxnRAHFoWRa0dEojsDcbBSpH3l22QxAVyw==", 2074 | "path": "system.security.principal.windows/4.3.0", 2075 | "hashPath": "system.security.principal.windows.4.3.0.nupkg.sha512" 2076 | }, 2077 | "System.Security.SecureString/4.0.0": { 2078 | "type": "package", 2079 | "serviceable": true, 2080 | "sha512": "sha512-sqzq9GD6/b0yqPuMpgIKBuoLf4VKAj8oAfh4kXSzPaN6eoKY3hRi9C5L27uip25qlU+BGPfb0xh2Rmbwc4jFVA==", 2081 | "path": "system.security.securestring/4.0.0", 2082 | "hashPath": "system.security.securestring.4.0.0.nupkg.sha512" 2083 | }, 2084 | "System.Text.Encoding/4.3.0": { 2085 | "type": "package", 2086 | "serviceable": true, 2087 | "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", 2088 | "path": "system.text.encoding/4.3.0", 2089 | "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" 2090 | }, 2091 | "System.Text.Encoding.CodePages/4.5.1": { 2092 | "type": "package", 2093 | "serviceable": true, 2094 | "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", 2095 | "path": "system.text.encoding.codepages/4.5.1", 2096 | "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" 2097 | }, 2098 | "System.Text.Encoding.Extensions/4.3.0": { 2099 | "type": "package", 2100 | "serviceable": true, 2101 | "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", 2102 | "path": "system.text.encoding.extensions/4.3.0", 2103 | "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" 2104 | }, 2105 | "System.Text.RegularExpressions/4.3.0": { 2106 | "type": "package", 2107 | "serviceable": true, 2108 | "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", 2109 | "path": "system.text.regularexpressions/4.3.0", 2110 | "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" 2111 | }, 2112 | "System.Threading/4.3.0": { 2113 | "type": "package", 2114 | "serviceable": true, 2115 | "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", 2116 | "path": "system.threading/4.3.0", 2117 | "hashPath": "system.threading.4.3.0.nupkg.sha512" 2118 | }, 2119 | "System.Threading.Tasks/4.3.0": { 2120 | "type": "package", 2121 | "serviceable": true, 2122 | "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", 2123 | "path": "system.threading.tasks/4.3.0", 2124 | "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" 2125 | }, 2126 | "System.Threading.Tasks.Extensions/4.3.0": { 2127 | "type": "package", 2128 | "serviceable": true, 2129 | "sha512": "sha512-npvJkVKl5rKXrtl1Kkm6OhOUaYGEiF9wFbppFRWSMoApKzt2PiPHT2Bb8a5sAWxprvdOAtvaARS9QYMznEUtug==", 2130 | "path": "system.threading.tasks.extensions/4.3.0", 2131 | "hashPath": "system.threading.tasks.extensions.4.3.0.nupkg.sha512" 2132 | }, 2133 | "System.Threading.Thread/4.3.0": { 2134 | "type": "package", 2135 | "serviceable": true, 2136 | "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", 2137 | "path": "system.threading.thread/4.3.0", 2138 | "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" 2139 | }, 2140 | "System.Threading.ThreadPool/4.3.0": { 2141 | "type": "package", 2142 | "serviceable": true, 2143 | "sha512": "sha512-k/+g4b7vjdd4aix83sTgC9VG6oXYKAktSfNIJUNGxPEj7ryEOfzHHhfnmsZvjxawwcD9HyWXKCXmPjX8U4zeSw==", 2144 | "path": "system.threading.threadpool/4.3.0", 2145 | "hashPath": "system.threading.threadpool.4.3.0.nupkg.sha512" 2146 | }, 2147 | "System.Xml.ReaderWriter/4.3.0": { 2148 | "type": "package", 2149 | "serviceable": true, 2150 | "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", 2151 | "path": "system.xml.readerwriter/4.3.0", 2152 | "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" 2153 | }, 2154 | "System.Xml.XDocument/4.0.11": { 2155 | "type": "package", 2156 | "serviceable": true, 2157 | "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", 2158 | "path": "system.xml.xdocument/4.0.11", 2159 | "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" 2160 | }, 2161 | "System.Xml.XmlDocument/4.3.0": { 2162 | "type": "package", 2163 | "serviceable": true, 2164 | "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", 2165 | "path": "system.xml.xmldocument/4.3.0", 2166 | "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" 2167 | }, 2168 | "System.Xml.XPath/4.3.0": { 2169 | "type": "package", 2170 | "serviceable": true, 2171 | "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", 2172 | "path": "system.xml.xpath/4.3.0", 2173 | "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" 2174 | }, 2175 | "System.Xml.XPath.XmlDocument/4.3.0": { 2176 | "type": "package", 2177 | "serviceable": true, 2178 | "sha512": "sha512-A/uxsWi/Ifzkmd4ArTLISMbfFs6XpRPsXZonrIqyTY70xi8t+mDtvSM5Os0RqyRDobjMBwIDHDL4NOIbkDwf7A==", 2179 | "path": "system.xml.xpath.xmldocument/4.3.0", 2180 | "hashPath": "system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" 2181 | }, 2182 | "MongoDBExample/1.0.0": { 2183 | "type": "project", 2184 | "serviceable": false, 2185 | "sha512": "" 2186 | } 2187 | } 2188 | } -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.pdb -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.runtimeconfig.dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "additionalProbingPaths": [ 4 | "C:\\Users\\osman\\.dotnet\\store\\|arch|\\|tfm|", 5 | "C:\\Users\\osman\\.nuget\\packages", 6 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 7 | ] 8 | } 9 | } -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NUnitTestProjectExample.runtimeconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "runtimeOptions": { 3 | "tfm": "netcoreapp3.1", 4 | "framework": { 5 | "name": "Microsoft.AspNetCore.App", 6 | "version": "3.1.0" 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/launchsettings.json", 3 | "iisSettings": { 4 | "windowsAuthentication": false, 5 | "anonymousAuthentication": true, 6 | "iisExpress": { 7 | "applicationUrl": "http://localhost:50564", 8 | "sslPort": 0 9 | } 10 | }, 11 | "profiles": { 12 | "IIS Express": { 13 | "commandName": "IISExpress", 14 | "launchBrowser": true, 15 | "launchUrl": "", 16 | "environmentVariables": { 17 | "ASPNETCORE_ENVIRONMENT": "Development" 18 | } 19 | }, 20 | "MongoDBExample": { 21 | "commandName": "Project", 22 | "launchBrowser": true, 23 | "launchUrl": "", 24 | "applicationUrl": "http://localhost:5000", 25 | "environmentVariables": { 26 | "ASPNETCORE_ENVIRONMENT": "Development" 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/SharpCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/SharpCompress.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/System.Xml.XPath.XmlDocument.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/appsettings.Development.json: -------------------------------------------------------------------------------- 1 | { 2 | "Logging": { 3 | "LogLevel": { 4 | "Default": "Information", 5 | "Microsoft": "Warning", 6 | "Microsoft.Hosting.Lifetime": "Information" 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "MongoDbSettings": { 3 | "ConnectionString": "mongodb://localhost:27017", 4 | "DatabaseName": "ExampleDatabase" 5 | }, 6 | "AllowedHosts": "*" 7 | } 8 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.engine.api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.engine.api.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.engine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.engine.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit.framework.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/nunit_random_seed.tmp: -------------------------------------------------------------------------------- 1 | 357119857 -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/testhost.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/testhost.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | using System; 12 | using System.Reflection; 13 | 14 | [assembly: System.Reflection.AssemblyCompanyAttribute("NUnitTestProjectExample")] 15 | [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] 16 | [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] 17 | [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] 18 | [assembly: System.Reflection.AssemblyProductAttribute("NUnitTestProjectExample")] 19 | [assembly: System.Reflection.AssemblyTitleAttribute("NUnitTestProjectExample")] 20 | [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] 21 | 22 | // Generated by the MSBuild WriteCodeFragment class. 23 | 24 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.AssemblyInfoInputs.cache: -------------------------------------------------------------------------------- 1 | ba1e44ea56adb4d6ae6f115b179666220343d94c 2 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.assets.cache -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csproj.CopyComplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csproj.CopyComplete -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 19f6908b970b1607227f8faeed5e32b9d586635f 2 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnit3.TestAdapter.dll 2 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnit3.TestAdapter.pdb 3 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\nunit.engine.dll 4 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\nunit.engine.api.dll 5 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnitTestProjectExample.deps.json 6 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnitTestProjectExample.runtimeconfig.json 7 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnitTestProjectExample.runtimeconfig.dev.json 8 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnitTestProjectExample.dll 9 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll 10 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.DotNet.InternalAbstractions.dll 11 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll 12 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll 13 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll 14 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll 15 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll 16 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.Utilities.dll 17 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll 18 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\testhost.dll 19 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll 20 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll 21 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\nunit.framework.dll 22 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\System.Xml.XPath.XmlDocument.dll 23 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll 24 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 25 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll 26 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 27 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll 28 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 29 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll 30 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 31 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll 32 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 33 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll 34 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 35 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll 36 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 37 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll 38 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 39 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll 40 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 41 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll 42 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 43 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll 44 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 45 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll 46 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 47 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll 48 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll 49 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 50 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 51 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 52 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 53 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 54 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 55 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 56 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 57 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 58 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 59 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 60 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 61 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 62 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 63 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 64 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 65 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 66 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 67 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 68 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 69 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 70 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 71 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 72 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 73 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 74 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 75 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 76 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 77 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 78 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 79 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 80 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 81 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 82 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 83 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 84 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 85 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll 86 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll 87 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll 88 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.csprojAssemblyReference.cache 89 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.AssemblyInfoInputs.cache 90 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.AssemblyInfo.cs 91 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.csproj.CopyComplete 92 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.genruntimeconfig.cache 93 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Castle.Core.dll 94 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NSubstitute.dll 95 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll 96 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\appsettings.Development.json 97 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\appsettings.json 98 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Properties\launchSettings.json 99 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDBExample.exe 100 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\NUnitTestProjectExample.pdb 101 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\DnsClient.dll 102 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll 103 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDB.Bson.dll 104 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDB.Driver.dll 105 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDB.Driver.Core.dll 106 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDB.Libmongocrypt.dll 107 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\FizzWare.NBuilder.dll 108 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\SharpCompress.dll 109 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDBExample.dll 110 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\bin\Debug\netcoreapp3.1\MongoDBExample.pdb 111 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.csproj.CoreCompileInputs.cache 112 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.dll 113 | Y:\WebProjeleri\Net-Core-MongoDB-Generic-Repository\MongoDBExample\NUnitTestProjectExample\obj\Debug\netcoreapp3.1\NUnitTestProjectExample.pdb 114 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.dll -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.genruntimeconfig.cache: -------------------------------------------------------------------------------- 1 | aca957f94ad5c178d9121f67400d5583889b6cf6 2 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/byokurt/Net-Core-MongoDB-Generic-Repository/3fe5184785d805742c51e5e450d817ec2555257f/MongoDBExample/NUnitTestProjectExample/obj/Debug/netcoreapp3.1/NUnitTestProjectExample.pdb -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/NUnitTestProjectExample.csproj.nuget.dgspec.json: -------------------------------------------------------------------------------- 1 | { 2 | "format": 1, 3 | "restore": { 4 | "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\NUnitTestProjectExample.csproj": {} 5 | }, 6 | "projects": { 7 | "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\MongoDBExample.csproj": { 8 | "version": "1.0.0", 9 | "restore": { 10 | "projectUniqueName": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\MongoDBExample.csproj", 11 | "projectName": "MongoDBExample", 12 | "projectPath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\MongoDBExample.csproj", 13 | "packagesPath": "C:\\Users\\osman\\.nuget\\packages\\", 14 | "outputPath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\obj\\", 15 | "projectStyle": "PackageReference", 16 | "fallbackFolders": [ 17 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 18 | ], 19 | "configFilePaths": [ 20 | "C:\\Users\\osman\\AppData\\Roaming\\NuGet\\NuGet.Config", 21 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 22 | ], 23 | "originalTargetFrameworks": [ 24 | "netcoreapp3.1" 25 | ], 26 | "sources": { 27 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 28 | "https://api.nuget.org/v3/index.json": {} 29 | }, 30 | "frameworks": { 31 | "netcoreapp3.1": { 32 | "projectReferences": {} 33 | } 34 | }, 35 | "warningProperties": { 36 | "warnAsError": [ 37 | "NU1605" 38 | ] 39 | } 40 | }, 41 | "frameworks": { 42 | "netcoreapp3.1": { 43 | "dependencies": { 44 | "Microsoft.Extensions.DependencyInjection": { 45 | "target": "Package", 46 | "version": "[3.1.3, )" 47 | }, 48 | "MongoDB.Driver": { 49 | "target": "Package", 50 | "version": "[2.10.3, )" 51 | } 52 | }, 53 | "imports": [ 54 | "net461", 55 | "net462", 56 | "net47", 57 | "net471", 58 | "net472", 59 | "net48" 60 | ], 61 | "assetTargetFallback": true, 62 | "warn": true, 63 | "frameworkReferences": { 64 | "Microsoft.AspNetCore.App": { 65 | "privateAssets": "none" 66 | }, 67 | "Microsoft.NETCore.App": { 68 | "privateAssets": "all" 69 | } 70 | }, 71 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.201\\RuntimeIdentifierGraph.json" 72 | } 73 | } 74 | }, 75 | "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\NUnitTestProjectExample.csproj": { 76 | "version": "1.0.0", 77 | "restore": { 78 | "projectUniqueName": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\NUnitTestProjectExample.csproj", 79 | "projectName": "NUnitTestProjectExample", 80 | "projectPath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\NUnitTestProjectExample.csproj", 81 | "packagesPath": "C:\\Users\\osman\\.nuget\\packages\\", 82 | "outputPath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\obj\\", 83 | "projectStyle": "PackageReference", 84 | "fallbackFolders": [ 85 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" 86 | ], 87 | "configFilePaths": [ 88 | "C:\\Users\\osman\\AppData\\Roaming\\NuGet\\NuGet.Config", 89 | "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" 90 | ], 91 | "originalTargetFrameworks": [ 92 | "netcoreapp3.1" 93 | ], 94 | "sources": { 95 | "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, 96 | "https://api.nuget.org/v3/index.json": {} 97 | }, 98 | "frameworks": { 99 | "netcoreapp3.1": { 100 | "projectReferences": { 101 | "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\MongoDBExample.csproj": { 102 | "projectPath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\MongoDBExample\\MongoDBExample.csproj" 103 | } 104 | } 105 | } 106 | }, 107 | "warningProperties": { 108 | "warnAsError": [ 109 | "NU1605" 110 | ] 111 | } 112 | }, 113 | "frameworks": { 114 | "netcoreapp3.1": { 115 | "dependencies": { 116 | "Microsoft.Extensions.DependencyInjection.Abstractions": { 117 | "target": "Package", 118 | "version": "[3.1.3, )" 119 | }, 120 | "Microsoft.NET.Test.Sdk": { 121 | "target": "Package", 122 | "version": "[16.4.0, )" 123 | }, 124 | "NBuilder": { 125 | "target": "Package", 126 | "version": "[6.1.0, )" 127 | }, 128 | "NSubstitute": { 129 | "target": "Package", 130 | "version": "[4.2.1, )" 131 | }, 132 | "NUnit3TestAdapter": { 133 | "target": "Package", 134 | "version": "[3.15.1, )" 135 | }, 136 | "nunit": { 137 | "target": "Package", 138 | "version": "[3.12.0, )" 139 | } 140 | }, 141 | "imports": [ 142 | "net461", 143 | "net462", 144 | "net47", 145 | "net471", 146 | "net472", 147 | "net48" 148 | ], 149 | "assetTargetFallback": true, 150 | "warn": true, 151 | "frameworkReferences": { 152 | "Microsoft.AspNetCore.App": { 153 | "privateAssets": "none" 154 | }, 155 | "Microsoft.NETCore.App": { 156 | "privateAssets": "all" 157 | } 158 | }, 159 | "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.201\\RuntimeIdentifierGraph.json" 160 | } 161 | } 162 | } 163 | } 164 | } -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/NUnitTestProjectExample.csproj.nuget.g.props: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | True 5 | NuGet 6 | $(MSBuildThisFileDirectory)project.assets.json 7 | $(UserProfile)\.nuget\packages\ 8 | C:\Users\osman\.nuget\packages\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder 9 | PackageReference 10 | 5.5.0 11 | 12 | 13 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | C:\Program Files\dotnet\sdk\NuGetFallbackFolder\newtonsoft.json\9.0.1 24 | 25 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/NUnitTestProjectExample.csproj.nuget.g.targets: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | $(MSBuildAllProjects);$(MSBuildThisFileFullPath) 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /MongoDBExample/NUnitTestProjectExample/obj/project.nuget.cache: -------------------------------------------------------------------------------- 1 | { 2 | "version": 2, 3 | "dgSpecHash": "643iNVMuD7E9YxbHD0jtOC/ZLipc12BWkFVLfz99ovB7ZyXtwzahDyJNlLLMJX3AL3MRGcPWNQyq83ZkWdOC5Q==", 4 | "success": true, 5 | "projectFilePath": "Y:\\WebProjeleri\\Net-Core-MongoDB-Generic-Repository\\MongoDBExample\\NUnitTestProjectExample\\NUnitTestProjectExample.csproj", 6 | "expectedPackageFiles": [ 7 | "C:\\Users\\osman\\.nuget\\packages\\castle.core\\4.4.0\\castle.core.4.4.0.nupkg.sha512", 8 | "C:\\Users\\osman\\.nuget\\packages\\dnsclient\\1.3.1\\dnsclient.1.3.1.nupkg.sha512", 9 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.codecoverage\\16.4.0\\microsoft.codecoverage.16.4.0.nupkg.sha512", 10 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", 11 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.dotnet.internalabstractions\\1.0.0\\microsoft.dotnet.internalabstractions.1.0.0.nupkg.sha512", 12 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\3.1.3\\microsoft.extensions.dependencyinjection.3.1.3.nupkg.sha512", 13 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\3.1.3\\microsoft.extensions.dependencyinjection.abstractions.3.1.3.nupkg.sha512", 14 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.net.test.sdk\\16.4.0\\microsoft.net.test.sdk.16.4.0.nupkg.sha512", 15 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", 16 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", 17 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.testplatform.objectmodel\\16.4.0\\microsoft.testplatform.objectmodel.16.4.0.nupkg.sha512", 18 | "C:\\Users\\osman\\.nuget\\packages\\microsoft.testplatform.testhost\\16.4.0\\microsoft.testplatform.testhost.16.4.0.nupkg.sha512", 19 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", 20 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.registry\\4.3.0\\microsoft.win32.registry.4.3.0.nupkg.sha512", 21 | "C:\\Users\\osman\\.nuget\\packages\\mongodb.bson\\2.10.3\\mongodb.bson.2.10.3.nupkg.sha512", 22 | "C:\\Users\\osman\\.nuget\\packages\\mongodb.driver\\2.10.3\\mongodb.driver.2.10.3.nupkg.sha512", 23 | "C:\\Users\\osman\\.nuget\\packages\\mongodb.driver.core\\2.10.3\\mongodb.driver.core.2.10.3.nupkg.sha512", 24 | "C:\\Users\\osman\\.nuget\\packages\\mongodb.libmongocrypt\\1.0.0\\mongodb.libmongocrypt.1.0.0.nupkg.sha512", 25 | "C:\\Users\\osman\\.nuget\\packages\\nbuilder\\6.1.0\\nbuilder.6.1.0.nupkg.sha512", 26 | "C:\\Users\\osman\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", 27 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", 28 | "C:\\Users\\osman\\.nuget\\packages\\nsubstitute\\4.2.1\\nsubstitute.4.2.1.nupkg.sha512", 29 | "C:\\Users\\osman\\.nuget\\packages\\nuget.frameworks\\5.0.0\\nuget.frameworks.5.0.0.nupkg.sha512", 30 | "C:\\Users\\osman\\.nuget\\packages\\nunit\\3.12.0\\nunit.3.12.0.nupkg.sha512", 31 | "C:\\Users\\osman\\.nuget\\packages\\nunit3testadapter\\3.15.1\\nunit3testadapter.3.15.1.nupkg.sha512", 32 | "C:\\Users\\osman\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 33 | "C:\\Users\\osman\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 34 | "C:\\Users\\osman\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 35 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", 36 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", 37 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.security\\4.3.0\\runtime.native.system.net.security.4.3.0.nupkg.sha512", 38 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 39 | "C:\\Users\\osman\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 40 | "C:\\Users\\osman\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 41 | "C:\\Users\\osman\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 42 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", 43 | "C:\\Users\\osman\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 44 | "C:\\Users\\osman\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 45 | "C:\\Users\\osman\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 46 | "C:\\Users\\osman\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 47 | "C:\\Users\\osman\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.2\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.2.nupkg.sha512", 48 | "C:\\Users\\osman\\.nuget\\packages\\sharpcompress\\0.23.0\\sharpcompress.0.23.0.nupkg.sha512", 49 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.1.0\\system.appcontext.4.1.0.nupkg.sha512", 50 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", 51 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", 52 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", 53 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", 54 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", 55 | "C:\\Users\\osman\\.nuget\\packages\\system.componentmodel.eventbasedasync\\4.3.0\\system.componentmodel.eventbasedasync.4.3.0.nupkg.sha512", 56 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", 57 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", 58 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", 59 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.process\\4.3.0\\system.diagnostics.process.4.3.0.nupkg.sha512", 60 | "C:\\Users\\osman\\.nuget\\packages\\system.diagnostics.textwritertracelistener\\4.0.0\\system.diagnostics.textwritertracelistener.4.0.0.nupkg.sha512", 61 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", 62 | "C:\\Users\\osman\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", 63 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", 64 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", 65 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", 66 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", 67 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", 68 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", 69 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", 70 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", 71 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", 72 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", 73 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.queryable\\4.0.1\\system.linq.queryable.4.0.1.nupkg.sha512", 74 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.nameresolution\\4.3.0\\system.net.nameresolution.4.3.0.nupkg.sha512", 75 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", 76 | "C:\\Users\\osman\\.nuget\\packages\\system.net.security\\4.3.2\\system.net.security.4.3.2.nupkg.sha512", 77 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", 78 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", 79 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", 80 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", 81 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", 82 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", 83 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", 84 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", 85 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", 86 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", 87 | "C:\\Users\\osman\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.5.2\\system.runtime.compilerservices.unsafe.4.5.2.nupkg.sha512", 88 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", 89 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", 90 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", 91 | "C:\\Users\\osman\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", 92 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", 93 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.formatters\\4.3.0\\system.runtime.serialization.formatters.4.3.0.nupkg.sha512", 94 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.3.0\\system.runtime.serialization.primitives.4.3.0.nupkg.sha512", 95 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.claims\\4.3.0\\system.security.claims.4.3.0.nupkg.sha512", 96 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", 97 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", 98 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", 99 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", 100 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", 101 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", 102 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", 103 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal\\4.3.0\\system.security.principal.4.3.0.nupkg.sha512", 104 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.principal.windows\\4.3.0\\system.security.principal.windows.4.3.0.nupkg.sha512", 105 | "C:\\Users\\osman\\.nuget\\packages\\system.security.securestring\\4.0.0\\system.security.securestring.4.0.0.nupkg.sha512", 106 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", 107 | "C:\\Users\\osman\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", 108 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", 109 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", 110 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", 111 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", 112 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", 113 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512", 114 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.threadpool\\4.3.0\\system.threading.threadpool.4.3.0.nupkg.sha512", 115 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", 116 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512", 117 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", 118 | "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xpath\\4.3.0\\system.xml.xpath.4.3.0.nupkg.sha512", 119 | "C:\\Users\\osman\\.nuget\\packages\\system.xml.xpath.xmldocument\\4.3.0\\system.xml.xpath.xmldocument.4.3.0.nupkg.sha512" 120 | ], 121 | "logs": [] 122 | } -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # .Net Core MongoDB Generic Repository 2 |
3 | Merhabalar .Net Core üzerinde MongoDB ve buna bağlı Generic Repository kullanımına ait bir uygulama gelitirdim. Bilgi paylaştıkça çoğalır diyerek sizinde faydalanmanız için gerekli repoyu github hesabıma ekledim. 4 |

5 | 6 | Kısaca MongoDB Nedir? 7 |

8 | MongoDB 2009 yılında geliştirilmiş açık kaynak kodlu bir NoSQL veritabanıdır. Bugün piyasada Cassandra, BigTable, Dynamo gibi birçok NoSQL veritabanı bulunmaktadır. 9 | MongoDB’de her kayıt bir doküman olarak ifade edilir. Ve bu dökümanlar json formatı şeklinde saklanır. Daha önce ilişkisel veritabanlarıyla ilgilenenlerin bildiği table yapısını burada collection, row yapısını document, column yapısını ise field alır. 10 | Günümüzde aktif olarak kullanılan pek çok programlama dili için driver desteği bulunması bakımından bugün NoSQL sistemler içerisinde en çok tercih edilenlerden biridir. 11 | --------------------------------------------------------------------------------