diff --git a/.cr/personal/FavoritesList/List.xml b/.cr/personal/FavoritesList/List.xml new file mode 100644 index 0000000..a60e5ed --- /dev/null +++ b/.cr/personal/FavoritesList/List.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.deepsource.toml b/.deepsource.toml deleted file mode 100644 index 9b460c4..0000000 --- a/.deepsource.toml +++ /dev/null @@ -1,5 +0,0 @@ -version = 1 - -[[analyzers]] -name = "csharp" -enabled = true \ No newline at end of file diff --git a/.dockerignore b/.dockerignore deleted file mode 100644 index 3729ff0..0000000 --- a/.dockerignore +++ /dev/null @@ -1,25 +0,0 @@ -**/.classpath -**/.dockerignore -**/.env -**/.git -**/.gitignore -**/.project -**/.settings -**/.toolstarget -**/.vs -**/.vscode -**/*.*proj.user -**/*.dbmdl -**/*.jfm -**/azds.yaml -**/bin -**/charts -**/docker-compose* -**/Dockerfile* -**/node_modules -**/npm-debug.log -**/obj -**/secrets.dev.yaml -**/values.dev.yaml -LICENSE -README.md \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..33f87b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/FastMonitor/bin diff --git a/.vs/FastMonitor/DesignTimeBuild/.dtbcache.v2 b/.vs/FastMonitor/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..6803eb0 Binary files /dev/null and b/.vs/FastMonitor/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/FastMonitor/FileContentIndex/27b3e6be-0a31-4099-a02d-950ec7e64680.vsidx b/.vs/FastMonitor/FileContentIndex/27b3e6be-0a31-4099-a02d-950ec7e64680.vsidx new file mode 100644 index 0000000..dea4df9 Binary files /dev/null and b/.vs/FastMonitor/FileContentIndex/27b3e6be-0a31-4099-a02d-950ec7e64680.vsidx differ diff --git a/.vs/FastMonitor/v17/.futdcache.v2 b/.vs/FastMonitor/v17/.futdcache.v2 new file mode 100644 index 0000000..6be8f07 Binary files /dev/null and b/.vs/FastMonitor/v17/.futdcache.v2 differ diff --git a/.vs/FastMonitor/v17/.suo b/.vs/FastMonitor/v17/.suo new file mode 100644 index 0000000..f579fd5 Binary files /dev/null and b/.vs/FastMonitor/v17/.suo differ diff --git a/.vs/FastMonitor/v17/DocumentLayout.json b/.vs/FastMonitor/v17/DocumentLayout.json new file mode 100644 index 0000000..4675a76 --- /dev/null +++ b/.vs/FastMonitor/v17/DocumentLayout.json @@ -0,0 +1,23 @@ +{ + "Version": 1, + "WorkspaceRootPath": "C:\\Frank\\projects\\fastmonitor\\", + "Documents": [], + "DocumentGroupContainers": [ + { + "Orientation": 0, + "VerticalTabListWidth": 256, + "DocumentGroups": [ + { + "DockedWidth": 200, + "SelectedChildIndex": -1, + "Children": [ + { + "$type": "Bookmark", + "Name": "ST:0:0:{aa2115a1-9712-457b-9047-dbb71ca2cdd2}" + } + ] + } + ] + } + ] +} \ No newline at end of file diff --git a/.vs/ProjectEvaluation/fastmonitor.metadata.v7.bin b/.vs/ProjectEvaluation/fastmonitor.metadata.v7.bin new file mode 100644 index 0000000..856be0e Binary files /dev/null and b/.vs/ProjectEvaluation/fastmonitor.metadata.v7.bin differ diff --git a/.vs/ProjectEvaluation/fastmonitor.projects.v7.bin b/.vs/ProjectEvaluation/fastmonitor.projects.v7.bin new file mode 100644 index 0000000..e439ee3 Binary files /dev/null and b/.vs/ProjectEvaluation/fastmonitor.projects.v7.bin differ diff --git a/BusinessLogics/BusinessLogics.csproj b/BusinessLogics/BusinessLogics.csproj deleted file mode 100644 index df13a41..0000000 --- a/BusinessLogics/BusinessLogics.csproj +++ /dev/null @@ -1,17 +0,0 @@ - - - - netcoreapp3.1 - - - - - - - - - - - - - diff --git a/BusinessLogics/CustomerBusiness/CustomerBusiness.cs b/BusinessLogics/CustomerBusiness/CustomerBusiness.cs deleted file mode 100644 index 670a5d5..0000000 --- a/BusinessLogics/CustomerBusiness/CustomerBusiness.cs +++ /dev/null @@ -1,424 +0,0 @@ -using AutoMapper; -using BusinessLogics.DTO; -using BusinessLogics.Extensions; -using BusinessLogics.MallBusiness; -using BusinessLogics.StandBusiness; -using DataAcess.DataModels; -using DataAcess.DataServices; -using DataAcess.Interfaces; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace BusinessLogics.CustomerBusiness -{ - public class CustomerBusiness : ICustomerBusiness - { - private readonly Customer _customer; - private readonly IDataServices _dataServices; - private readonly IMapper _mapper; - private readonly IStandBusiness _standBusiness; - private readonly IMallBusiness _mallBusiness; - - public bool ConfigValue { get; private set; } - - public CustomerBusiness(ICustomer customer, IDataServices dataServices, IMapper mapper, IStandBusiness standBusiness, IMallBusiness mallBusiness) - { - _customer = customer as Customer; - _dataServices = dataServices; - _mapper = mapper; - _standBusiness = standBusiness; - _mallBusiness = mallBusiness; - } - - /// - /// Adds a customer - /// - /// - /// - /// A customer DTO - public async Task AddCustomer(string standID, CustomerDTO customerDTO) - { - try - { - var result = new OperationalResult(); - - if (_mallBusiness.GetMallOpenedStatus().OpenedState == DataAcess.Enums.States.Closed) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "Sorry the Mall is closed, no new customers are accepted. Kindly process only the in-mall users." }); - return result; - } - - // A customer is added to a queue on a stand - var stand = await _standBusiness.GetStand(standID); - if (stand == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The stand specified could not be found" }); - return result; - } - - // A customer is created - var customer = _mapper.Map(customerDTO); - - // Check and add customer to queue - if (!stand.CustomerQueue.Contains(customer.Id.ToString())) - stand.CustomerQueue.Add(customer.Id.ToString()); - - // Update the stand the Customer joined - var updatedStand = _mapper.Map(stand); - await _standBusiness.UpdateStandQueue(updatedStand); - - // Update the customer with his currently joined queue - customer.CurrentStandJoined = stand.Id; - customer.Products.Add(new Product { Id = stand.Product.Id.ToString(), DisplayName = stand.Product.DisplayName, Name = stand.Product.Name }); - customer.DoneShopping = false; - await _dataServices.AddData(customer); - - // A customerDTO is created - var returncustomerDTO = _mapper.Map(customer); - result.Data.Add(returncustomerDTO); - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Gets a customer - /// - /// - /// Returns a customer DTO - public async Task GetCustomer(string customerId) - { - try - { - var result = new OperationalResult(); - - // first get the customer - var customer = await _dataServices.GetDataByID(customerId); - if (customer == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Customer specified could not be found" }); - return result; - } - - // A customerDTO is created - var returncustomerDTO = _mapper.Map(customer); - result.Data.Add(returncustomerDTO); - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Gets a list of customers - /// - /// Returns List CustomersDTO - public async Task GetCustomers() - { - try - { - var result = new OperationalResult(); - var customers = await _dataServices.GetAllData(); - - // A customerDTO is created - var returncustomersDTO = _mapper.Map>(customers); - result.Data.Add(returncustomersDTO); - - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Get customers by list of Ids - /// - /// - /// Returns List of customer DTOs - public async Task GetCustomers(List Ids) - { - try - { - var result = new OperationalResult(); - - List customers = new List(); - foreach (var Id in Ids) - { - var customer = await GetCustomer(Id); - if (customer.Data.Count != 0) - customers.Add(customer.Data.FirstOrDefault() as CustomerDTO); - } - - result.Data.Add(customers); - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// handles the product purchases - /// - /// - /// Returns the customerDTO - public async Task BuyProduct(string customerId) - { - try - { - var result = new OperationalResult(); - - // first get the customer - var customer = await _dataServices.GetDataByID(customerId); - var stands = await _standBusiness.GetStands(); - - if (customer == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Customer specified could not be found" }); - return result; - } - - var customerProductIds = customer.Products.Select(c => c.Id).ToList(); - if (!customerProductIds.Any(c => stands.Select(s => s.Product.Id).Any(s => s == c))) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "The Customer has some products which has their stands removed. The purchase cannot continue now." }); - return result; - } - - if (customer.Products.Count == 0) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "The Customer specified has no products to purchase." }); - return result; - } - - if (customer.DoneShopping) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "Sorry this Customer already left completed purchases and left the Mall." }); - return result; - } - - // update the customers current stand and save the transaction info - customer.CurrentStandJoined = string.Empty; - customer.DoneShopping = true; - - var transactionData = new Transactions { CustomerId = customer.Id, BoughtProducts = customer.Products }; - await _dataServices.UpSertData(customer.Id, customer); - await _dataServices.UpSertData(customer.Id, transactionData); - - // A customerDTO is created - var returncustomerDTO = _mapper.Map(customer); - result.Data.Add(returncustomerDTO); - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Handles the product addition operation - /// - /// We assume that a - /// - /// - /// A valid stand Id must be provided. That is an assumption - /// Returns the customerDTO - public async Task AddProduct(string customerId, string standId) - { - try - { - var result = new OperationalResult(); - - // first get the customer - var customer = await _dataServices.GetDataByID(customerId); - if (customer == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Customer specified could not be found" }); - return result; - } - - // first get the customer - var stand = await _dataServices.GetDataByID(standId); - if (stand == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Stand specified could not be found" }); - return result; - } - else if (stand.OutOfProducts) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "This Stand is out of products. Kindly move to another Stand" }); - return result; - } - - var customerTransaction = await _dataServices.GetDataByID(customerId); - if (customerTransaction != null && customerTransaction.BoughtProducts.Any(p => p.Id == stand.Product.Id)) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "The product has already been bought, You cannot purchase from this stand again." }); - return result; - } - - if (customer.Products.Any(p => p.Id == stand.Product.Id)) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "The product is already in the list of Items to buy." }); - return result; - } - else if (customer.DoneShopping) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 500, ErrorMessage = "Sorry this Customer already left completed purchases and left the Mall" }); - return result; - } - - // update the customers current stand and save the transaction info - customer.CurrentStandJoined = stand.Id; - customer.Products.Add(stand.Product); - await _dataServices.UpSertData(customer.Id, customer); - - // A customerDTO is created - var returncustomerDTO = _mapper.Map(customer); - result.Data.Add(returncustomerDTO); - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Handles the customer update operation - /// - /// - /// - /// - public async Task UpdateCustomer(CustomerDTO customerDTO) - { - try - { - var result = new OperationalResult(); - - // A customer is added to a queue on a stand - var customerResult = await GetCustomer(customerDTO.Id); - var customerResultDTO = customerResult.Data.FirstOrDefault() as CustomerDTO; - if (customerResultDTO == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Customer specified could not be found" }); - return result; - } - - // A customer is created - var customer = _mapper.Map(customerResultDTO); - await _dataServices.UpSertData(customer.Id, customer); - - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Handles the update of a list of Customers - /// - /// - /// - public async Task UpdateCustomers(List customerDTOs) - { - try - { - var result = new OperationalResult(); - foreach (var customerDTO in customerDTOs) - { - // A customer is added to a queue on a stand - var customerResult = await GetCustomer(customerDTO.Id); - var customerResultDTO = customerResult.Data.FirstOrDefault() as CustomerDTO; - if (customerResultDTO == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = $"The Customer {customerDTO.Id} specified could not be found" }); - } - else - { - // A customer is created - var customer = _mapper.Map(customerResultDTO); - await _dataServices.UpSertData(customer.Id, customer); - } - } - - return result; - } - catch (Exception) - { - throw; - } - } - - /// - /// Handles the customer deletion operation - /// - /// - /// - public async Task DeleteCustomer(string Id) - { - try - { - var result = new OperationalResult(); - - // A customer is added to a queue on a stand - var customerResult = await GetCustomer(Id); - var customerResultDTO = customerResult.Data.FirstOrDefault() as CustomerDTO; - if (customerResultDTO == null) - { - result.Status = true; - result.ErrorList.Add(new Error { ErrorCode = 404, ErrorMessage = "The Customer specified could not be found" }); - return result; - } - - await _dataServices.DeleteData(customerResultDTO.Id); ; - - return result; - } - catch (Exception) - { - throw; - } - } - - public async Task DeleteCustomers(List Ids) - { - try - { - await _dataServices.DeleteDataBulk(Ids); - } - catch (Exception) - { - throw; - } - } - } -} \ No newline at end of file diff --git a/BusinessLogics/CustomerBusiness/ICustomerBusiness.cs b/BusinessLogics/CustomerBusiness/ICustomerBusiness.cs deleted file mode 100644 index 20cfc54..0000000 --- a/BusinessLogics/CustomerBusiness/ICustomerBusiness.cs +++ /dev/null @@ -1,23 +0,0 @@ -using BusinessLogics.DTO; -using DataAcess.DataModels; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace BusinessLogics.CustomerBusiness -{ - public interface ICustomerBusiness - { - Task GetCustomer(string Id); - Task GetCustomers(); - Task GetCustomers(List Ids); - Task AddCustomer(string standID, CustomerDTO customerDTO); - Task UpdateCustomer(CustomerDTO customerDTO); - Task UpdateCustomers(List customerDTOs); - Task DeleteCustomer(string Id); - Task DeleteCustomers(List Ids); - Task BuyProduct(string customerId); - Task AddProduct(string customerId, string standId); - } -} diff --git a/BusinessLogics/DTO/Customer.cs b/BusinessLogics/DTO/Customer.cs deleted file mode 100644 index 6fe5c83..0000000 --- a/BusinessLogics/DTO/Customer.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.DTO -{ - public class CustomerDTO - { - public string Id { get; set; } = Guid.NewGuid().ToString(); - public string Name { get; set; } - public string DisplayName { get; set; } - public List Products { get; set; } - public bool DoneShopping { get; set; } = false; - public string CurrentStandJoined { get; set; } - - } -} diff --git a/BusinessLogics/DTO/Mall.cs b/BusinessLogics/DTO/Mall.cs deleted file mode 100644 index 05aa2b2..0000000 --- a/BusinessLogics/DTO/Mall.cs +++ /dev/null @@ -1,17 +0,0 @@ -using DataAcess.Enums; -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.DTO -{ - public class MallDTO - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - public States OpenedState { get; set; } - public Capacity MallCapacity { get; set; } - public int OpenClosedDuration { get; set; } - } -} diff --git a/BusinessLogics/DTO/OperationalResult.cs b/BusinessLogics/DTO/OperationalResult.cs deleted file mode 100644 index 583aa01..0000000 --- a/BusinessLogics/DTO/OperationalResult.cs +++ /dev/null @@ -1,24 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.DTO -{ - public class OperationalResult - { - //True or False status of operation - public bool Status { get; set; } = false; - //Single messsage from operation - public string Message { get; set; } - //Result of successfully operation - public List Data { get; set; } = new List(); - //error list of failed operation - public List ErrorList { get; set; } = new List(); - } - - public class Error - { - public int ErrorCode { get; set; } - public string ErrorMessage { get; set; } - } -} diff --git a/BusinessLogics/DTO/Product.cs b/BusinessLogics/DTO/Product.cs deleted file mode 100644 index 3f3f188..0000000 --- a/BusinessLogics/DTO/Product.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.DTO -{ - public class ProductDTO - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - } -} diff --git a/BusinessLogics/DTO/Stand.cs b/BusinessLogics/DTO/Stand.cs deleted file mode 100644 index f75d668..0000000 --- a/BusinessLogics/DTO/Stand.cs +++ /dev/null @@ -1,17 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.DTO -{ - public class StandDTO - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - public ProductDTO Product { get; set; } - public int Duration { get; set; } - public List CustomerQueue { get; set; } - public bool OutOfProducts { get; set; } = false; - } -} diff --git a/BusinessLogics/Extensions/ConfigValues.cs b/BusinessLogics/Extensions/ConfigValues.cs deleted file mode 100644 index 4104324..0000000 --- a/BusinessLogics/Extensions/ConfigValues.cs +++ /dev/null @@ -1,16 +0,0 @@ -using DataAcess.Enums; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace BusinessLogics.Extensions -{ - public static class ConfigValues - { - public static string MallOpenCloseDuration { get; set; } - public static States MallOpenedStatus { get; set; } - public static bool FirstTime { get; set; } = true; - public static Capacity InMallCustomers { get; set; } - } -} diff --git a/BusinessLogics/MallBusiness/IMallBusiness.cs b/BusinessLogics/MallBusiness/IMallBusiness.cs deleted file mode 100644 index 1df3223..0000000 --- a/BusinessLogics/MallBusiness/IMallBusiness.cs +++ /dev/null @@ -1,20 +0,0 @@ -using BusinessLogics.DTO; -using DataAcess.DataModels; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace BusinessLogics.MallBusiness -{ - public interface IMallBusiness - { - Mall GetMallOpenedStatus(); - Mall GetMallOpenCloseDuration(); - Task GetStand(string Id); - Task> GetStands(); - Task AddStand(StandDTO standDTO); - Task UpdateStand(StandDTO standDTO); - Task DeleteStand(string Id); - } -} diff --git a/BusinessLogics/MallBusiness/MallBusiness.cs b/BusinessLogics/MallBusiness/MallBusiness.cs deleted file mode 100644 index 585b813..0000000 --- a/BusinessLogics/MallBusiness/MallBusiness.cs +++ /dev/null @@ -1,119 +0,0 @@ -using DataAcess.DataModels; -using DataAcess.DataServices; -using DataAcess.Interfaces; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.Extensions.Configuration; -using DataAcess.Enums; -using System.Timers; -using BusinessLogics.Extensions; -using BusinessLogics.DTO; -using BusinessLogics.StandBusiness; - -namespace BusinessLogics.MallBusiness -{ - public class MallBusiness : IMallBusiness - { - private readonly Mall _mall; - private readonly IDataServices _dataServices; - private readonly IConfiguration _configuration; - private readonly IStandBusiness _standBusiness; - - public MallBusiness(IMall mall, IDataServices dataServices, IConfiguration configuration, IStandBusiness standBusiness) - { - _mall = mall as Mall; - _dataServices = dataServices; - _configuration = configuration; - _standBusiness = standBusiness; - - _mall.OpenedState = ConfigValues.MallOpenedStatus; - } - - public Mall GetMallOpenedStatus() - { - return _mall; - } - - public Mall GetMallOpenCloseDuration() - { - try - { - _ = int.TryParse(ConfigValues.MallOpenCloseDuration, out int duration); - _mall.OpenClosedDuration = duration; - return _mall; - } - catch (Exception) - { - throw; - } - - } - - public async Task AddStand(StandDTO standDTO) - { - try - { - return await _standBusiness.AddStand(standDTO); - } - catch (Exception) - { - - throw; - } - } - - public async Task DeleteStand(string Id) - { - try - { - await _standBusiness.DeleteStand(Id); - } - catch (Exception) - { - - throw; - } - } - - public async Task GetStand(string Id) - { - try - { - return await _standBusiness.GetStand(Id); - } - catch (Exception) - { - - throw; - } - } - - public async Task> GetStands() - { - try - { - return await _standBusiness.GetStands(); - } - catch (Exception) - { - - throw; - } - } - - public async Task UpdateStand(StandDTO standDTO) - { - try - { - await _standBusiness.UpdateStand(standDTO); - } - catch (Exception) - { - - throw; - } - } - } -} diff --git a/BusinessLogics/Mapping/MappingProfile.cs b/BusinessLogics/Mapping/MappingProfile.cs deleted file mode 100644 index 8012e8b..0000000 --- a/BusinessLogics/Mapping/MappingProfile.cs +++ /dev/null @@ -1,30 +0,0 @@ -using AutoMapper; -using System; -using System.Collections.Generic; -using System.Text; -using BusinessLogics.DTO; -using DataAcess.DataModels; - -namespace BusinessLogics.Mapping -{ - /// - /// This class handles the mapping between the DTOs and their models - /// - public class MappingProfile : Profile - { - public MappingProfile() - { - CreateMap(); - CreateMap(); - - CreateMap(); - CreateMap(); - - CreateMap(); - CreateMap(); - - CreateMap(); - CreateMap(); - } - } -} diff --git a/BusinessLogics/StandBusiness/IStandBusiness.cs b/BusinessLogics/StandBusiness/IStandBusiness.cs deleted file mode 100644 index 02c4f35..0000000 --- a/BusinessLogics/StandBusiness/IStandBusiness.cs +++ /dev/null @@ -1,27 +0,0 @@ -using BusinessLogics.DTO; -using DataAcess.DataModels; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -namespace BusinessLogics.StandBusiness -{ - public interface IStandBusiness - { - Task GetStand(string Id); - Task> GetStands(); - Task> GetStandsProductId(string Id); - - Task AddStand(StandDTO standDTO); - - Task UpdateStand(StandDTO standDTO); - Task UpdateStandQueue(StandDTO standDTO); - Task UpdateStandBulk(List standDTO); - //Task UpdateStandProductId(List standDTO); - - Task DeleteStand(string Id); - Task DeleteStandBulk(List Ids); - Task DeleteStandProductId(string Id); - } -} diff --git a/BusinessLogics/StandBusiness/StandBusiness.cs b/BusinessLogics/StandBusiness/StandBusiness.cs deleted file mode 100644 index 7b9c9d7..0000000 --- a/BusinessLogics/StandBusiness/StandBusiness.cs +++ /dev/null @@ -1,221 +0,0 @@ -using DataAcess.DataModels; -using DataAcess.DataServices; -using DataAcess.Interfaces; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using BusinessLogics.DTO; -using AutoMapper; - -namespace BusinessLogics.StandBusiness -{ - public class StandBusiness : IStandBusiness - { - private readonly Stand _stand; - private readonly IDataServices _dataServices; - private readonly IMapper _mapper; - public StandBusiness(IStand stand, IDataServices dataServices, IMapper mapper) - { - _stand = stand as Stand; - _dataServices = dataServices; - _mapper = mapper; - } - - public async Task AddStand(StandDTO standDTO) - { - try - { - var stand = _mapper.Map(standDTO); - stand.OutOfProducts = false; - stand.CustomerQueue.Clear(); - - return await _dataServices.AddData(stand); - } - catch (Exception) - { - throw; - } - } - - public async Task DeleteStand(string Id) - { - try - { - // Get the stand - var stand = await GetStand(Id); - var stands = await GetStands(); - // Get the next potential stand - var nextPotentialstand = stands.Where(s => s.Id != Id).FirstOrDefault(); - - if(stand != null && nextPotentialstand != null) - { - nextPotentialstand.CustomerQueue.AddRange(stand.CustomerQueue); - await _dataServices.UpSertData(nextPotentialstand.Id, nextPotentialstand); - await _dataServices.DeleteData(Id); - } - else - { - await _dataServices.DeleteData(Id); - } - } - catch (Exception) - { - - throw; - } - } - - public async Task DeleteStandBulk(List Ids) - { - try - { - - // Get the stand - var stands = await GetStands(); - // Get the next potential stands which can be reasigned the customer queues - var nextPotentialstands = stands.Where(s => !Ids.Any(i => i == s.Id)).ToList(); - - if (nextPotentialstands != null) - { - var potentialStand = nextPotentialstands.FirstOrDefault(); - foreach(var Id in Ids) - { - var stand = await GetStand(Id); - if (stand != null) - { - potentialStand.CustomerQueue.AddRange(stand.CustomerQueue); - await _dataServices.UpSertData(potentialStand.Id, potentialStand); - await _dataServices.DeleteData(Id); - } - } - } - else - { - await _dataServices.DeleteDataBulk(Ids); - } - } - catch (Exception) - { - - throw; - } - } - - public async Task DeleteStandProductId(string Id) - { - try - { - // Get the stands - var stands = await GetStands(); - // Get stands with product listed - var standsWithProductMatch = stands.Where(s => s.Product.Id == Id).ToList(); - // Delete stands with product match - await DeleteStandBulk(standsWithProductMatch.Select(i => i.Id).ToList()); - } - catch (Exception) - { - - throw; - } - } - - public async Task GetStand(string Id) - { - try - { - return await _dataServices.GetDataByID(Id); - } - catch (Exception) - { - - throw; - } - } - - public async Task> GetStands() - { - try - { - return await _dataServices.GetAllData(); - } - catch (Exception) - { - - throw; - } - } - - public async Task> GetStandsProductId(string Id) - { - try - { - var stands = await _dataServices.GetAllData(); - return stands.Where(s => s.Product.Id == Id).ToList(); - } - catch (Exception) - { - - throw; - } - } - - public async Task UpdateStand(StandDTO standDTO) - { - try - { - // A customer is added to a queue on a stand - var stand = await GetStand(standDTO.Id); - if (stand == null) - return; - - // modify the Duration for the stand - stand.Duration = standDTO.Duration; - await _dataServices.UpSertData(stand.Id, stand); - } - catch (Exception) - { - - throw; - } - } - - public async Task UpdateStandQueue(StandDTO standDTO) - { - try - { - // A customer is added to a queue on a stand - var stand = await GetStand(standDTO.Id); - if (stand == null) - return; - - // modify the Duration for the stand - stand.CustomerQueue = standDTO.CustomerQueue; - await _dataServices.UpSertData(stand.Id, stand); - } - catch (Exception) - { - - throw; - } - } - - public async Task UpdateStandBulk(List standDTOs) - { - try - { - // Must be changed to an proper bulk update. - foreach(var standDTO in standDTOs) - { - var stand = _mapper.Map(standDTO); - await _dataServices.UpSertData(stand.Id, stand); - } - } - catch (Exception) - { - - throw; - } - } - } -} diff --git a/BusinessLogics/Validators/CustomerValidator.cs b/BusinessLogics/Validators/CustomerValidator.cs deleted file mode 100644 index 4269dfc..0000000 --- a/BusinessLogics/Validators/CustomerValidator.cs +++ /dev/null @@ -1,46 +0,0 @@ -using BusinessLogics.DTO; -using FluentValidation; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Text; - -namespace BusinessLogics.Validators -{ - public class CustomerValidator : AbstractValidator - { - public CustomerValidator() - { - RuleFor(c => c.Id).NotEmpty().NotEqual("string"); - RuleFor(c => c.DisplayName).NotEqual("string"); - RuleFor(c => c.Name).NotEqual("string"); - RuleFor(c => c.Products).Must(HaveUniqueIds).WithMessage("List of ProductId to buy must be unique."); - RuleFor(c => c.CurrentStandJoined).NotEqual("string"); - RuleFor(c => c.Products).Must(HaveNoStrings).WithMessage("Id, Name, DisplayName must not contain 'string' as input or empty"); - } - - private bool HaveNoStrings(List arg) - { - if (arg.Any(a => - a.Id.Equals("string") && - a.Id.Equals(string.Empty) && - a.Name.Equals("string") && - a.Name.Equals(string.Empty) && - a.DisplayName.Equals(string.Empty) && - a.DisplayName.Equals("string"))) - return false; - - return true; - } - - private bool HaveUniqueIds(List arg) - { - var distinctProducts = arg.Distinct(); - if (distinctProducts.Count() != arg.Count) - return false; - - return true; - - } - } -} diff --git a/BusinessLogics/Validators/MallValidator.cs b/BusinessLogics/Validators/MallValidator.cs deleted file mode 100644 index 8aa6ba0..0000000 --- a/BusinessLogics/Validators/MallValidator.cs +++ /dev/null @@ -1,26 +0,0 @@ -using BusinessLogics.DTO; -using DataAcess.Enums; -using FluentValidation; -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.Validators -{ - public class MallValidator : AbstractValidator - { - public MallValidator() - { - RuleFor(c => c.Id).NotEmpty().NotEqual("string"); - RuleFor(c => c.DisplayName).NotEqual("string"); - RuleFor(c => c.Name).NotEqual("string"); - RuleFor(c => c.OpenClosedDuration).GreaterThan(0); - RuleFor(c => c.OpenedState).Must(BeEitherOpenOrClosed).WithMessage("The mall can only be either Opened or Closed."); - } - - private bool BeEitherOpenOrClosed(States arg) - { - return Enum.IsDefined(typeof(States), arg.ToString()); - } - } -} diff --git a/BusinessLogics/Validators/ProductValidator.cs b/BusinessLogics/Validators/ProductValidator.cs deleted file mode 100644 index 370980c..0000000 --- a/BusinessLogics/Validators/ProductValidator.cs +++ /dev/null @@ -1,18 +0,0 @@ -using BusinessLogics.DTO; -using FluentValidation; -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.Validators -{ - public class ProductValidator : AbstractValidator - { - public ProductValidator() - { - RuleFor(c => c.Id).NotEmpty(); - RuleFor(c => c.DisplayName).NotEqual("string"); - RuleFor(c => c.Name).NotEqual("string"); - } - } -} diff --git a/BusinessLogics/Validators/StandValidator.cs b/BusinessLogics/Validators/StandValidator.cs deleted file mode 100644 index ccb7bbc..0000000 --- a/BusinessLogics/Validators/StandValidator.cs +++ /dev/null @@ -1,20 +0,0 @@ -using BusinessLogics.DTO; -using FluentValidation; -using System; -using System.Collections.Generic; -using System.Text; - -namespace BusinessLogics.Validators -{ - public class StandValidator : AbstractValidator - { - public StandValidator() - { - RuleFor(c => c.Id).NotEmpty().NotEqual("string"); - RuleFor(c => c.DisplayName).NotEqual("string"); - RuleFor(c => c.Name).NotEqual("string"); - RuleFor(c => c.Duration).GreaterThan(0); - RuleFor(c => c.Product.Id).NotEqual("string"); - } - } -} diff --git a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.deps.json b/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.deps.json deleted file mode 100644 index 44c7a37..0000000 --- a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.deps.json +++ /dev/null @@ -1,682 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "BusinessLogics/1.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "DataAcess": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6" - }, - "runtime": { - "BusinessLogics.dll": {} - } - }, - "AutoMapper/11.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.0.0" - } - } - }, - "DnsClient/1.4.0": { - "runtime": { - "lib/netstandard2.1/DnsClient.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.4.0.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.EntityFrameworkCore/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {}, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "MongoDB.Bson/2.14.1": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver/2.14.1": { - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver.Core/2.14.1": { - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux/native/libzstd.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libzstd.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/libzstd.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/snappy32.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - }, - "runtimes/win/native/snappy64.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/mongocrypt.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "RabbitMQ.Client/6.2.3": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.2.3.0" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.Collections.Immutable/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.220.61120" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Threading.Channels/4.7.1": { - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.20.21406" - } - } - }, - "DataAcess/1.0.0": { - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "runtime": { - "DataAcess.dll": {} - } - } - } - }, - "libraries": { - "BusinessLogics/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/11.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "path": "automapper/11.0.1", - "hashPath": "automapper.11.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" - }, - "DnsClient/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "path": "dnsclient/1.4.0", - "hashPath": "dnsclient.1.4.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "path": "fluentvalidation.aspnetcore/10.3.6", - "hashPath": "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "hashPath": "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "path": "microsoft.entityframeworkcore/5.0.7", - "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "path": "microsoft.extensions.caching.memory/5.0.0", - "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "path": "mongodb.bson/2.14.1", - "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "path": "mongodb.driver/2.14.1", - "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "path": "mongodb.driver.core/2.14.1", - "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "path": "mongodb.libmongocrypt/1.3.0", - "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "hashPath": "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512" - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "path": "rabbitmq.client/6.2.3", - "hashPath": "rabbitmq.client.6.2.3.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "path": "system.threading.channels/4.7.1", - "hashPath": "system.threading.channels.4.7.1.nupkg.sha512" - }, - "DataAcess/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.dll b/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.dll deleted file mode 100644 index b48eb69..0000000 Binary files a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.dll and /dev/null differ diff --git a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.pdb b/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.pdb deleted file mode 100644 index cbcc613..0000000 Binary files a/BusinessLogics/bin/Debug/netcoreapp3.1/BusinessLogics.pdb and /dev/null differ diff --git a/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.dll b/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.dll deleted file mode 100644 index 6dfeae7..0000000 Binary files a/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.dll and /dev/null differ diff --git a/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.pdb b/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.pdb deleted file mode 100644 index 6720f18..0000000 Binary files a/BusinessLogics/bin/Debug/netcoreapp3.1/DataAcess.pdb and /dev/null differ diff --git a/BusinessLogics/obj/BusinessLogics.csproj.nuget.cache b/BusinessLogics/obj/BusinessLogics.csproj.nuget.cache deleted file mode 100644 index dac89a8..0000000 --- a/BusinessLogics/obj/BusinessLogics.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "yuMnCXgkvW0dF6MA1xzes73wYNOBoTkBuvNz/NmXWbp5KY5cqOpvk6yoaUzbrDtu2+B3sJBt569k/eqb7DxPpA==", - "success": true -} \ No newline at end of file diff --git a/BusinessLogics/obj/BusinessLogics.csproj.nuget.dgspec.json b/BusinessLogics/obj/BusinessLogics.csproj.nuget.dgspec.json deleted file mode 100644 index d0bafa3..0000000 --- a/BusinessLogics/obj/BusinessLogics.csproj.nuget.dgspec.json +++ /dev/null @@ -1,186 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": {} - }, - "projects": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "projectName": "BusinessLogics", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "projectName": "DataAcess", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "MongoDB.Driver": { - "target": "Package", - "version": "[2.14.1, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[5.0.7, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/BusinessLogics/obj/BusinessLogics.csproj.nuget.g.targets b/BusinessLogics/obj/BusinessLogics.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/BusinessLogics/obj/BusinessLogics.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfo.cs b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfo.cs deleted file mode 100644 index c30fccd..0000000 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("BusinessLogics")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("BusinessLogics")] -[assembly: System.Reflection.AssemblyTitleAttribute("BusinessLogics")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfoInputs.cache b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfoInputs.cache deleted file mode 100644 index a916e2e..0000000 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -892d1278cffe388a4854cd4aa6995751af92ee29 diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.GeneratedMSBuildEditorConfig.editorconfig b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 7b7b189..0000000 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = BusinessLogics -build_property.ProjectDir = C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\ diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.assets.cache b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.assets.cache deleted file mode 100644 index 1014e6c..0000000 Binary files a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.assets.cache and /dev/null differ diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.AssemblyReference.cache b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894a..0000000 Binary files a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.AssemblyReference.cache and /dev/null differ diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.CopyComplete b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.CoreCompileInputs.cache b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.CoreCompileInputs.cache deleted file mode 100644 index 37a0a37..0000000 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -6eb888a288b814532112b141b3e051338f24a40a diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.FileListAbsolute.txt b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.FileListAbsolute.txt deleted file mode 100644 index c92cb8a..0000000 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,13 +0,0 @@ -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\bin\Debug\netcoreapp3.1\BusinessLogics.deps.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\bin\Debug\netcoreapp3.1\BusinessLogics.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\bin\Debug\netcoreapp3.1\BusinessLogics.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.csproj.CopyComplete -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\BusinessLogics\obj\Debug\netcoreapp3.1\BusinessLogics.pdb diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.dll b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.dll deleted file mode 100644 index b48eb69..0000000 Binary files a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.dll and /dev/null differ diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.pdb b/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.pdb deleted file mode 100644 index cbcc613..0000000 Binary files a/BusinessLogics/obj/Debug/netcoreapp3.1/BusinessLogics.pdb and /dev/null differ diff --git a/BusinessLogics/obj/project.assets.json b/BusinessLogics/obj/project.assets.json deleted file mode 100644 index dca3b92..0000000 --- a/BusinessLogics/obj/project.assets.json +++ /dev/null @@ -1,1479 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v3.1": { - "AutoMapper/11.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": {} - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "dependencies": { - "AutoMapper": "11.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "DnsClient/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/DnsClient.dll": {} - }, - "runtime": { - "lib/netstandard2.1/DnsClient.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/netstandard2.1/FluentValidation.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": {} - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "compile": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - } - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - } - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/linux/native/libzstd.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libzstd.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/libzstd.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy32.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy64.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/mongocrypt.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "Npgsql/5.0.7": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Npgsql.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "compile": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "compile": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - } - }, - "DataAcess/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v3.1", - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "compile": { - "bin/placeholder/DataAcess.dll": {} - }, - "runtime": { - "bin/placeholder/DataAcess.dll": {} - } - } - } - }, - "libraries": { - "AutoMapper/11.0.1": { - "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "type": "package", - "path": "automapper/11.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.11.0.1.nupkg.sha512", - "automapper.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.dll", - "lib/netstandard2.1/AutoMapper.xml" - ] - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "type": "package", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "automapper.extensions.microsoft.dependencyinjection.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" - ] - }, - "DnsClient/1.4.0": { - "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "type": "package", - "path": "dnsclient/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.4.0.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "FluentValidation.AspNetCore/10.3.6": { - "sha512": "xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "type": "package", - "path": "fluentvalidation.aspnetcore/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "fluentvalidation.aspnetcore.nuspec", - "lib/net5.0/FluentValidation.AspNetCore.dll", - "lib/net5.0/FluentValidation.AspNetCore.xml", - "lib/net6.0/FluentValidation.AspNetCore.dll", - "lib/net6.0/FluentValidation.AspNetCore.xml", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "sha512": "yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "Microsoft.CSharp/4.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "type": "package", - "path": "microsoft.entityframeworkcore/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "MongoDB.Bson/2.14.1": { - "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "type": "package", - "path": "mongodb.bson/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/netstandard2.0/MongoDB.Bson.dll", - "lib/netstandard2.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.2.14.1.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/2.14.1": { - "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "type": "package", - "path": "mongodb.driver/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/netstandard2.0/MongoDB.Driver.dll", - "lib/netstandard2.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.2.14.1.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver.Core/2.14.1": { - "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "type": "package", - "path": "mongodb.driver.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "THIRD-PARTY-NOTICES", - "build/MongoDB.Driver.Core.targets", - "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "content/Core/Compression/Snappy/lib/win/snappy32.dll", - "content/Core/Compression/Snappy/lib/win/snappy64.dll", - "content/Core/Compression/Zstandard/lib/linux/libzstd.so", - "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "content/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", - "lib/net472/MongoDB.Driver.Core.dll", - "lib/net472/MongoDB.Driver.Core.xml", - "lib/netstandard2.0/MongoDB.Driver.Core.dll", - "lib/netstandard2.0/MongoDB.Driver.Core.xml", - "lib/netstandard2.1/MongoDB.Driver.Core.dll", - "lib/netstandard2.1/MongoDB.Driver.Core.xml", - "mongodb.driver.core.2.14.1.nupkg.sha512", - "mongodb.driver.core.nuspec", - "packageIcon.png", - "runtimes/linux/native/libsnappy64.so", - "runtimes/linux/native/libzstd.so", - "runtimes/osx/native/libsnappy64.dylib", - "runtimes/osx/native/libzstd.dylib", - "runtimes/win/native/libzstd.dll", - "runtimes/win/native/snappy32.dll", - "runtimes/win/native/snappy64.dll" - ] - }, - "MongoDB.Libmongocrypt/1.3.0": { - "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "type": "package", - "path": "mongodb.libmongocrypt/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/MongoDB.Libmongocrypt.targets", - "content/libmongocrypt.dylib", - "content/libmongocrypt.so", - "content/mongocrypt.dll", - "contentFiles/any/net472/libmongocrypt.dylib", - "contentFiles/any/net472/libmongocrypt.so", - "contentFiles/any/net472/mongocrypt.dll", - "contentFiles/any/netstandard2.0/libmongocrypt.dylib", - "contentFiles/any/netstandard2.0/libmongocrypt.so", - "contentFiles/any/netstandard2.0/mongocrypt.dll", - "contentFiles/any/netstandard2.1/libmongocrypt.dylib", - "contentFiles/any/netstandard2.1/libmongocrypt.so", - "contentFiles/any/netstandard2.1/mongocrypt.dll", - "lib/net472/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", - "mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "mongodb.libmongocrypt.nuspec", - "runtimes/linux/native/libmongocrypt.so", - "runtimes/osx/native/libmongocrypt.dylib", - "runtimes/win/native/mongocrypt.dll" - ] - }, - "Npgsql/5.0.7": { - "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "type": "package", - "path": "npgsql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Npgsql.dll", - "lib/net5.0/Npgsql.xml", - "lib/netcoreapp3.1/Npgsql.dll", - "lib/netcoreapp3.1/Npgsql.xml", - "lib/netstandard2.0/Npgsql.dll", - "lib/netstandard2.0/Npgsql.xml", - "lib/netstandard2.1/Npgsql.dll", - "lib/netstandard2.1/Npgsql.xml", - "npgsql.5.0.7.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "sha512": "RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "RabbitMQ.Client/6.2.3": { - "sha512": "qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "type": "package", - "path": "rabbitmq.client/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net461/RabbitMQ.Client.dll", - "lib/net461/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.6.2.3.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "type": "package", - "path": "system.collections.immutable/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Threading.Channels/4.7.1": { - "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "type": "package", - "path": "system.threading.channels/4.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Threading.Channels.dll", - "lib/net461/System.Threading.Channels.xml", - "lib/netcoreapp3.0/System.Threading.Channels.dll", - "lib/netcoreapp3.0/System.Threading.Channels.xml", - "lib/netstandard1.3/System.Threading.Channels.dll", - "lib/netstandard1.3/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "system.threading.channels.4.7.1.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "DataAcess/1.0.0": { - "type": "project", - "path": "../DataAcess/DataAcess.csproj", - "msbuildProject": "../DataAcess/DataAcess.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v3.1": [ - "AutoMapper >= 11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection >= 11.0.0", - "DataAcess >= 1.0.0", - "FluentValidation.AspNetCore >= 10.3.6" - ] - }, - "packageFolders": { - "C:\\Users\\FrankMensah\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "projectName": "BusinessLogics", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/BusinessLogics/obj/project.nuget.cache b/BusinessLogics/obj/project.nuget.cache deleted file mode 100644 index 6638cb3..0000000 --- a/BusinessLogics/obj/project.nuget.cache +++ /dev/null @@ -1,44 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "oA6Tx0H0Y/f0Cb8StgBoZGq3GTXEwDvcVrFIGVFMDBRxQ0b7D0s1OszsAy1xGjQP8SuQMACE/+/H7H85ta5zmA==", - "success": true, - "projectFilePath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\dnsclient\\1.4.0\\dnsclient.1.4.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.aspnetcore\\10.3.6\\fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\10.3.6\\fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.bson\\2.14.1\\mongodb.bson.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver\\2.14.1\\mongodb.driver.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver.core\\2.14.1\\mongodb.driver.core.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.libmongocrypt\\1.3.0\\mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\5.0.7\\npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\rabbitmq.client\\6.2.3\\rabbitmq.client.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.channels\\4.7.1\\system.threading.channels.4.7.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/DataAcess/DataAcess.csproj b/DataAcess/DataAcess.csproj deleted file mode 100644 index ca332df..0000000 --- a/DataAcess/DataAcess.csproj +++ /dev/null @@ -1,13 +0,0 @@ - - - - netcoreapp3.1 - - - - - - - - - diff --git a/DataAcess/DataModels/Customer.cs b/DataAcess/DataModels/Customer.cs deleted file mode 100644 index bf8d927..0000000 --- a/DataAcess/DataModels/Customer.cs +++ /dev/null @@ -1,17 +0,0 @@ -using DataAcess.Interfaces; -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.DataModels -{ - public class Customer : ICustomer - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - public List Products { get; set; } - public bool DoneShopping { get; set; } = false; - public string CurrentStandJoined { get; set; } - } -} diff --git a/DataAcess/DataModels/Mall.cs b/DataAcess/DataModels/Mall.cs deleted file mode 100644 index 27bd863..0000000 --- a/DataAcess/DataModels/Mall.cs +++ /dev/null @@ -1,15 +0,0 @@ -using DataAcess.Interfaces; -using DataAcess.Enums; - -namespace DataAcess.DataModels -{ - public class Mall : IMall - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - public States OpenedState { get; set; } - public Capacity MallCapacity { get; set; } - public int OpenClosedDuration { get; set; } - } -} diff --git a/DataAcess/DataModels/Product.cs b/DataAcess/DataModels/Product.cs deleted file mode 100644 index 08a60bb..0000000 --- a/DataAcess/DataModels/Product.cs +++ /dev/null @@ -1,17 +0,0 @@ -using DataAcess.Interfaces; -using MongoDB.Bson.Serialization.Attributes; -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.DataModels -{ - public class Product : IProduct - { - public string Id { get; set; } - [BsonIgnoreIfNull] - public string Name { get; set; } - [BsonIgnoreIfNull] - public string DisplayName { get; set; } - } -} diff --git a/DataAcess/DataModels/Stand.cs b/DataAcess/DataModels/Stand.cs deleted file mode 100644 index 7c2cd43..0000000 --- a/DataAcess/DataModels/Stand.cs +++ /dev/null @@ -1,18 +0,0 @@ -using DataAcess.Interfaces; -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.DataModels -{ - public class Stand : IStand - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - public Product Product { get; set; } - public int Duration { get; set; } - public List CustomerQueue { get; set; } - public bool OutOfProducts { get; set; } = false; - } -} diff --git a/DataAcess/DataModels/Transactions.cs b/DataAcess/DataModels/Transactions.cs deleted file mode 100644 index b648a88..0000000 --- a/DataAcess/DataModels/Transactions.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.DataModels -{ - public class Transactions - { - public string CustomerId { get; set; } - public List BoughtProducts { get; set; } - } -} diff --git a/DataAcess/DataServices/IDataServices.cs b/DataAcess/DataServices/IDataServices.cs deleted file mode 100644 index 8dae24d..0000000 --- a/DataAcess/DataServices/IDataServices.cs +++ /dev/null @@ -1,66 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; - -namespace DataAcess.DataServices -{ - public interface IDataServices - { - /// - /// Gets all data from DB - /// - /// - /// - Task> GetAllData(); - - /// - /// Gets table data by ID - /// - /// - /// - /// - Task GetDataByID(string Id); - - /// - /// Updates table data - /// - /// - /// - /// - Task UpSertData(string Id, T tdata); - - /// - /// Updates bulk table data - /// - /// - /// - /// - /// - Task UpSertDataBulk(List Ids, T tdata); - - /// - /// Method Adds new data - /// - /// - /// - /// - Task AddData(T tdata); - - /// - /// Deletes table data - /// - /// - /// - /// - Task DeleteData(string Id); - - /// - /// Deletes bulk data from the table - /// - /// - /// - /// - Task DeleteDataBulk(List Ids); - } -} diff --git a/DataAcess/DataServices/IQueueServices.cs b/DataAcess/DataServices/IQueueServices.cs deleted file mode 100644 index 8525726..0000000 --- a/DataAcess/DataServices/IQueueServices.cs +++ /dev/null @@ -1,22 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.DataServices -{ - interface IQueueServices - { - /// - /// This method consumes messages inside a queue. - /// - /// - void Consume(); - - /// - /// This method produces messages to a queue - /// - /// - /// - void Produce(T tObject); - } -} diff --git a/DataAcess/DataServices/MongoDataServices.cs b/DataAcess/DataServices/MongoDataServices.cs deleted file mode 100644 index 4a5b8a0..0000000 --- a/DataAcess/DataServices/MongoDataServices.cs +++ /dev/null @@ -1,85 +0,0 @@ -using MongoDB.Bson; -using MongoDB.Driver; -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; -using Microsoft.Extensions.Configuration; -using System.Linq; - -namespace DataAcess.DataServices -{ - public class MongoDataServices : IDataServices - { - private readonly IMongoDatabase db; - private readonly IConfiguration _configuration; - - public MongoDataServices(IConfiguration configuration) - { - _configuration = configuration; - - var client = new MongoClient(configuration["MongoConnectionString"]); - db = client.GetDatabase(configuration["MallService:Settings:DB"]); - } - public async Task AddData(T tdata) - { - var collection = db.GetCollection(typeof(T).Name); - await collection.InsertOneAsync(tdata); - - return tdata; - } - - public async Task DeleteData(string Id) - { - var collection = db.GetCollection(typeof(T).Name); - var filter = Builders.Filter.Eq("Id", Id); - - await collection.DeleteOneAsync(filter); - } - - public async Task DeleteDataBulk(List Ids) - { - var collection = db.GetCollection(typeof(T).Name); - var filter = Builders.Filter.In("Id", Ids); - - await collection.DeleteManyAsync(filter); - } - - public async Task> GetAllData() - { - var collection = db.GetCollection(typeof(T).Name); - return (await collection.FindAsync(new BsonDocument())).ToList(); - } - - public async Task GetDataByID(string Id) - { - var collection = db.GetCollection(typeof(T).Name); - var filter = Builders.Filter.Eq("Id", Id); - - return (await collection.FindAsync(filter)).FirstOrDefault(); - } - - public async Task UpSertData(string Id, T tdata) - { - var collection = db.GetCollection(typeof(T).Name); - var filter = Builders.Filter.Eq("Id", Id); - await collection.ReplaceOneAsync(filter, tdata, new ReplaceOptions { IsUpsert = true }); - } - - public Task UpSertDataBulk(List Ids, T tdata) - { - throw new NotImplementedException(); - } - - //public async Task UpSertDataBulk(List Ids, List tdata) - //{ - // var collection = db.GetCollection(typeof(T).Name); - // foreach (var id in Ids) - // { - // var filter = Builders.Filter.Eq("Id", id); - // await collection.ReplaceOneAsync(filter, tdata, new ReplaceOptions { IsUpsert = true }); - // } - - //} - } -} diff --git a/DataAcess/DataServices/PostgresDataServices.cs b/DataAcess/DataServices/PostgresDataServices.cs deleted file mode 100644 index 8ba78ac..0000000 --- a/DataAcess/DataServices/PostgresDataServices.cs +++ /dev/null @@ -1,45 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; - -namespace DataAcess.DataServices -{ - public class PostgresDataServices : IDataServices - { - public Task AddData(T tdata) - { - throw new NotImplementedException(); - } - - public Task DeleteData(string Id) - { - throw new NotImplementedException(); - } - - public Task DeleteDataBulk(List Ids) - { - throw new NotImplementedException(); - } - - public Task> GetAllData() - { - throw new NotImplementedException(); - } - - public Task GetDataByID(string Id) - { - throw new NotImplementedException(); - } - - public Task UpSertData(string Id, T tdata) - { - throw new NotImplementedException(); - } - - public Task UpSertDataBulk(List Ids, T tdata) - { - throw new NotImplementedException(); - } - } -} diff --git a/DataAcess/Enums/Capacity.cs b/DataAcess/Enums/Capacity.cs deleted file mode 100644 index c9edd3b..0000000 --- a/DataAcess/Enums/Capacity.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Enums -{ - public enum Capacity - { - Limited, - UnLimited - } -} diff --git a/DataAcess/Enums/States.cs b/DataAcess/Enums/States.cs deleted file mode 100644 index 55b5216..0000000 --- a/DataAcess/Enums/States.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Enums -{ - public enum States - { - Opened, - Closed - } -} diff --git a/DataAcess/Interfaces/ICustomer.cs b/DataAcess/Interfaces/ICustomer.cs deleted file mode 100644 index 96c4677..0000000 --- a/DataAcess/Interfaces/ICustomer.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Interfaces -{ - public interface ICustomer : IEntity - { - } -} diff --git a/DataAcess/Interfaces/IEntity.cs b/DataAcess/Interfaces/IEntity.cs deleted file mode 100644 index a8624a1..0000000 --- a/DataAcess/Interfaces/IEntity.cs +++ /dev/null @@ -1,13 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Interfaces -{ - public interface IEntity - { - public string Id { get; set; } - public string Name { get; set; } - public string DisplayName { get; set; } - } -} diff --git a/DataAcess/Interfaces/IMall.cs b/DataAcess/Interfaces/IMall.cs deleted file mode 100644 index c1fbc37..0000000 --- a/DataAcess/Interfaces/IMall.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Interfaces -{ - public interface IMall : IEntity - { - } -} diff --git a/DataAcess/Interfaces/IProduct.cs b/DataAcess/Interfaces/IProduct.cs deleted file mode 100644 index f617f26..0000000 --- a/DataAcess/Interfaces/IProduct.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Interfaces -{ - public interface IProduct : IEntity - { - } -} diff --git a/DataAcess/Interfaces/IStand.cs b/DataAcess/Interfaces/IStand.cs deleted file mode 100644 index 3278322..0000000 --- a/DataAcess/Interfaces/IStand.cs +++ /dev/null @@ -1,10 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Text; - -namespace DataAcess.Interfaces -{ - public interface IStand : IEntity - { - } -} diff --git a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.deps.json b/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.deps.json deleted file mode 100644 index f579771..0000000 --- a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.deps.json +++ /dev/null @@ -1,565 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "DataAcess/1.0.0": { - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "runtime": { - "DataAcess.dll": {} - } - }, - "DnsClient/1.4.0": { - "runtime": { - "lib/netstandard2.1/DnsClient.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.4.0.0" - } - } - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {}, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "MongoDB.Bson/2.14.1": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver/2.14.1": { - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver.Core/2.14.1": { - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux/native/libzstd.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libzstd.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/libzstd.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/snappy32.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - }, - "runtimes/win/native/snappy64.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/mongocrypt.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "RabbitMQ.Client/6.2.3": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.2.3.0" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "System.Buffers/4.5.1": {}, - "System.Collections.Immutable/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.220.61120" - } - } - }, - "System.Memory/4.5.4": {}, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Threading.Channels/4.7.1": { - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.20.21406" - } - } - } - } - }, - "libraries": { - "DataAcess/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "DnsClient/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "path": "dnsclient/1.4.0", - "hashPath": "dnsclient.1.4.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "path": "microsoft.entityframeworkcore/5.0.7", - "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "path": "microsoft.extensions.caching.memory/5.0.0", - "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "path": "microsoft.extensions.options/5.0.0", - "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "path": "microsoft.extensions.primitives/5.0.0", - "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "path": "mongodb.bson/2.14.1", - "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "path": "mongodb.driver/2.14.1", - "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "path": "mongodb.driver.core/2.14.1", - "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "path": "mongodb.libmongocrypt/1.3.0", - "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "hashPath": "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512" - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "path": "rabbitmq.client/6.2.3", - "hashPath": "rabbitmq.client.6.2.3.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512" - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "path": "system.threading.channels/4.7.1", - "hashPath": "system.threading.channels.4.7.1.nupkg.sha512" - } - } -} \ No newline at end of file diff --git a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.dll b/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.dll deleted file mode 100644 index 6dfeae7..0000000 Binary files a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.dll and /dev/null differ diff --git a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.pdb b/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.pdb deleted file mode 100644 index 6720f18..0000000 Binary files a/DataAcess/bin/Debug/netcoreapp3.1/DataAcess.pdb and /dev/null differ diff --git a/DataAcess/obj/DataAcess.csproj.nuget.cache b/DataAcess/obj/DataAcess.csproj.nuget.cache deleted file mode 100644 index b93f2e6..0000000 --- a/DataAcess/obj/DataAcess.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "Cnts7zvR9AWASpDIq3RNJ7dKDKKzi3mM1O2qHpI/Zp9kX9T8jJVnHC2HZmsglVEKolBuzDpcofRG9MQqajuPVw==", - "success": true -} \ No newline at end of file diff --git a/DataAcess/obj/DataAcess.csproj.nuget.dgspec.json b/DataAcess/obj/DataAcess.csproj.nuget.dgspec.json deleted file mode 100644 index c4ac911..0000000 --- a/DataAcess/obj/DataAcess.csproj.nuget.dgspec.json +++ /dev/null @@ -1,95 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": {} - }, - "projects": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "projectName": "DataAcess", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "MongoDB.Driver": { - "target": "Package", - "version": "[2.14.1, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[5.0.7, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/DataAcess/obj/DataAcess.csproj.nuget.g.props b/DataAcess/obj/DataAcess.csproj.nuget.g.props deleted file mode 100644 index 853404d..0000000 --- a/DataAcess/obj/DataAcess.csproj.nuget.g.props +++ /dev/null @@ -1,21 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FrankMensah\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\DevExpress 21.2\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.11.1 - - - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/DataAcess/obj/DataAcess.csproj.nuget.g.targets b/DataAcess/obj/DataAcess.csproj.nuget.g.targets deleted file mode 100644 index 53cfaa1..0000000 --- a/DataAcess/obj/DataAcess.csproj.nuget.g.targets +++ /dev/null @@ -1,6 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - \ No newline at end of file diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfoInputs.cache b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfoInputs.cache deleted file mode 100644 index 28a2628..0000000 --- a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -46f10a2e9fa969a7ced9351dc4e96b51551d6907 diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.GeneratedMSBuildEditorConfig.editorconfig b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 1d3c011..0000000 --- a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = DataAcess -build_property.ProjectDir = C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\ diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.assets.cache b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.assets.cache deleted file mode 100644 index bafb87e..0000000 Binary files a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.assets.cache and /dev/null differ diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.AssemblyReference.cache b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.AssemblyReference.cache deleted file mode 100644 index 8b34f6a..0000000 Binary files a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.AssemblyReference.cache and /dev/null differ diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.CoreCompileInputs.cache b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.CoreCompileInputs.cache deleted file mode 100644 index a1b8844..0000000 --- a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -565aa04eb035ccb620b245865ee8b30dad0d43e8 diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.FileListAbsolute.txt b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.FileListAbsolute.txt deleted file mode 100644 index a8c0ef9..0000000 --- a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,20 +0,0 @@ -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.deps.json -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallService\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.deps.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\DataAcess\obj\Debug\netcoreapp3.1\DataAcess.pdb diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.dll b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.dll deleted file mode 100644 index 6dfeae7..0000000 Binary files a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.dll and /dev/null differ diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.pdb b/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.pdb deleted file mode 100644 index 6720f18..0000000 Binary files a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.pdb and /dev/null differ diff --git a/DataAcess/obj/project.assets.json b/DataAcess/obj/project.assets.json deleted file mode 100644 index 55f72da..0000000 --- a/DataAcess/obj/project.assets.json +++ /dev/null @@ -1,1215 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v3.1": { - "DnsClient/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/DnsClient.dll": {} - }, - "runtime": { - "lib/netstandard2.1/DnsClient.dll": {} - } - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {} - } - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - } - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - } - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/linux/native/libzstd.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libzstd.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/libzstd.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy32.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy64.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/mongocrypt.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "Npgsql/5.0.7": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Npgsql.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "compile": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "compile": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll": {} - } - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - } - } - } - }, - "libraries": { - "DnsClient/1.4.0": { - "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "type": "package", - "path": "dnsclient/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.4.0.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "type": "package", - "path": "microsoft.entityframeworkcore/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { - "sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options/5.0.0": { - "sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", - "type": "package", - "path": "microsoft.extensions.options/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/net5.0/Microsoft.Extensions.Options.dll", - "lib/net5.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.5.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Primitives/5.0.0": { - "sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", - "type": "package", - "path": "microsoft.extensions.primitives/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "MongoDB.Bson/2.14.1": { - "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "type": "package", - "path": "mongodb.bson/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/netstandard2.0/MongoDB.Bson.dll", - "lib/netstandard2.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.2.14.1.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/2.14.1": { - "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "type": "package", - "path": "mongodb.driver/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/netstandard2.0/MongoDB.Driver.dll", - "lib/netstandard2.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.2.14.1.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver.Core/2.14.1": { - "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "type": "package", - "path": "mongodb.driver.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "THIRD-PARTY-NOTICES", - "build/MongoDB.Driver.Core.targets", - "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "content/Core/Compression/Snappy/lib/win/snappy32.dll", - "content/Core/Compression/Snappy/lib/win/snappy64.dll", - "content/Core/Compression/Zstandard/lib/linux/libzstd.so", - "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "content/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", - "lib/net472/MongoDB.Driver.Core.dll", - "lib/net472/MongoDB.Driver.Core.xml", - "lib/netstandard2.0/MongoDB.Driver.Core.dll", - "lib/netstandard2.0/MongoDB.Driver.Core.xml", - "lib/netstandard2.1/MongoDB.Driver.Core.dll", - "lib/netstandard2.1/MongoDB.Driver.Core.xml", - "mongodb.driver.core.2.14.1.nupkg.sha512", - "mongodb.driver.core.nuspec", - "packageIcon.png", - "runtimes/linux/native/libsnappy64.so", - "runtimes/linux/native/libzstd.so", - "runtimes/osx/native/libsnappy64.dylib", - "runtimes/osx/native/libzstd.dylib", - "runtimes/win/native/libzstd.dll", - "runtimes/win/native/snappy32.dll", - "runtimes/win/native/snappy64.dll" - ] - }, - "MongoDB.Libmongocrypt/1.3.0": { - "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "type": "package", - "path": "mongodb.libmongocrypt/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/MongoDB.Libmongocrypt.targets", - "content/libmongocrypt.dylib", - "content/libmongocrypt.so", - "content/mongocrypt.dll", - "contentFiles/any/net472/libmongocrypt.dylib", - "contentFiles/any/net472/libmongocrypt.so", - "contentFiles/any/net472/mongocrypt.dll", - "contentFiles/any/netstandard2.0/libmongocrypt.dylib", - "contentFiles/any/netstandard2.0/libmongocrypt.so", - "contentFiles/any/netstandard2.0/mongocrypt.dll", - "contentFiles/any/netstandard2.1/libmongocrypt.dylib", - "contentFiles/any/netstandard2.1/libmongocrypt.so", - "contentFiles/any/netstandard2.1/mongocrypt.dll", - "lib/net472/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", - "mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "mongodb.libmongocrypt.nuspec", - "runtimes/linux/native/libmongocrypt.so", - "runtimes/osx/native/libmongocrypt.dylib", - "runtimes/win/native/mongocrypt.dll" - ] - }, - "Npgsql/5.0.7": { - "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "type": "package", - "path": "npgsql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Npgsql.dll", - "lib/net5.0/Npgsql.xml", - "lib/netcoreapp3.1/Npgsql.dll", - "lib/netcoreapp3.1/Npgsql.xml", - "lib/netstandard2.0/Npgsql.dll", - "lib/netstandard2.0/Npgsql.xml", - "lib/netstandard2.1/Npgsql.dll", - "lib/netstandard2.1/Npgsql.xml", - "npgsql.5.0.7.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "sha512": "RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "RabbitMQ.Client/6.2.3": { - "sha512": "qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "type": "package", - "path": "rabbitmq.client/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net461/RabbitMQ.Client.dll", - "lib/net461/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.6.2.3.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "type": "package", - "path": "system.collections.immutable/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/5.0.0": { - "sha512": "ZD9TMpsmYJLrxbbmdvhwt9YEgG5WntEnZ/d1eH8JBX9LBp+Ju8BSBhUGbZMNVHHomWo2KVImJhTDl2hIgw/6MA==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net45/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/net461/System.Runtime.CompilerServices.Unsafe.dll", - "ref/net461/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard1.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.dll", - "ref/netstandard2.1/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Channels/4.7.1": { - "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "type": "package", - "path": "system.threading.channels/4.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Threading.Channels.dll", - "lib/net461/System.Threading.Channels.xml", - "lib/netcoreapp3.0/System.Threading.Channels.dll", - "lib/netcoreapp3.0/System.Threading.Channels.xml", - "lib/netstandard1.3/System.Threading.Channels.dll", - "lib/netstandard1.3/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "system.threading.channels.4.7.1.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v3.1": [ - "MongoDB.Driver >= 2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL >= 5.0.7", - "RabbitMQ.Client >= 6.2.3" - ] - }, - "packageFolders": { - "C:\\Users\\FrankMensah\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "projectName": "DataAcess", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "MongoDB.Driver": { - "target": "Package", - "version": "[2.14.1, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[5.0.7, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/DataAcess/obj/project.nuget.cache b/DataAcess/obj/project.nuget.cache deleted file mode 100644 index 93c8079..0000000 --- a/DataAcess/obj/project.nuget.cache +++ /dev/null @@ -1,38 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "V99Jx2+jLw9ozrbNYCWg+2jBXkVgG+kN4H8DX2Sm3lqxfUQilI7n2HAFS1GVswAe8ddBiNBfzAa5V50AQIxgVQ==", - "success": true, - "projectFilePath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FrankMensah\\.nuget\\packages\\dnsclient\\1.4.0\\dnsclient.1.4.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.bson\\2.14.1\\mongodb.bson.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver\\2.14.1\\mongodb.driver.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver.core\\2.14.1\\mongodb.driver.core.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.libmongocrypt\\1.3.0\\mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\5.0.7\\npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\rabbitmq.client\\6.2.3\\rabbitmq.client.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\5.0.0\\system.runtime.compilerservices.unsafe.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.channels\\4.7.1\\system.threading.channels.4.7.1.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/Dockerfile b/Dockerfile deleted file mode 100644 index 85849b8..0000000 --- a/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. - -FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base -WORKDIR /app -EXPOSE 80 -EXPOSE 443 - -FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build -WORKDIR /src -COPY ["MallService/MallService.csproj", "MallService/"] -RUN dotnet restore "MallService/MallService.csproj" -COPY . . -WORKDIR "/src/MallService" -RUN dotnet build "MallService.csproj" -c Release -o /app/build - -FROM build AS publish -RUN dotnet publish "MallService.csproj" -c Release -o /app/publish - -FROM base AS final -WORKDIR /app -COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "MallService.dll"] \ No newline at end of file diff --git a/FastMonitor.sln b/FastMonitor.sln new file mode 100644 index 0000000..59af03a --- /dev/null +++ b/FastMonitor.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34330.188 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FastMonitor", "FastMonitor\FastMonitor.csproj", "{F43E3858-38C3-476F-B0E2-569E077041FB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F43E3858-38C3-476F-B0E2-569E077041FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F43E3858-38C3-476F-B0E2-569E077041FB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F43E3858-38C3-476F-B0E2-569E077041FB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F43E3858-38C3-476F-B0E2-569E077041FB}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3DF368C9-C60A-40AF-8816-1937DDA8C4B3} + EndGlobalSection +EndGlobal diff --git a/FastMonitor/Configurations/FastMonitorExtensions.cs b/FastMonitor/Configurations/FastMonitorExtensions.cs new file mode 100644 index 0000000..b2f3edd --- /dev/null +++ b/FastMonitor/Configurations/FastMonitorExtensions.cs @@ -0,0 +1,22 @@ +using FastMonitor.Logic; +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FastMonitor.Configurations +{ + public static class FastMonitorExtensions + { + public static IServiceCollection AddFastMonitor(this IServiceCollection services, Action configureOptions) + { + var options = new FastMonitorOptions(); + configureOptions(options); + services.AddSingleton(options); + services.AddScoped(); + return services; + } + } +} diff --git a/FastMonitor/Configurations/FastMonitorOptions.cs b/FastMonitor/Configurations/FastMonitorOptions.cs new file mode 100644 index 0000000..aa9c0a9 --- /dev/null +++ b/FastMonitor/Configurations/FastMonitorOptions.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FastMonitor.Configurations +{ + public class FastMonitorOptions + { + public bool RequireRoleBasedAccess { get; set; } = true; + public bool LogAllAccessAttempts { get; set; } = true; + } +} diff --git a/FastMonitor/FastMonitor.csproj b/FastMonitor/FastMonitor.csproj new file mode 100644 index 0000000..cdee829 --- /dev/null +++ b/FastMonitor/FastMonitor.csproj @@ -0,0 +1,16 @@ + + + netstandard2.1 + menfra.FastMonitor + 2.1.3 + Frank Mensah + README.md + FastMonitor is a .NET data access package enforcing zero trust security, role-based access control, and comprehensive logging. + security, zero-trust, logging, authorization + https://github.com/YourGitHub/FastMonitor + MIT + + + + + \ No newline at end of file diff --git a/FastMonitor/Logic/FastMonitor.cs b/FastMonitor/Logic/FastMonitor.cs new file mode 100644 index 0000000..8329cf5 --- /dev/null +++ b/FastMonitor/Logic/FastMonitor.cs @@ -0,0 +1,21 @@ +using FastMonitor.Model; +using System; + +namespace FastMonitor.Logic +{ + public class FastMonitorService : IFastMonitor + { + public bool CheckAccess(User user, int dataId) + { + // Add logic to verify if user has permissions for dataId + // Replace this with actual authorization logic + return user.HasPermission(dataId); + } + + public void LogAccessAttempt(User user, int dataId) + { + // Log access attempt for auditing + Console.WriteLine($"User {user.Id} accessed data {dataId} at {DateTime.UtcNow}"); + } + } +} \ No newline at end of file diff --git a/FastMonitor/Logic/IFastMonitor.cs b/FastMonitor/Logic/IFastMonitor.cs new file mode 100644 index 0000000..a4c54b6 --- /dev/null +++ b/FastMonitor/Logic/IFastMonitor.cs @@ -0,0 +1,16 @@ +using FastMonitor.Model; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FastMonitor.Logic +{ + internal interface IFastMonitor + { + bool CheckAccess(User user, int dataId); + void LogAccessAttempt(User user, int dataId); + + } +} diff --git a/FastMonitor/Model/User.cs b/FastMonitor/Model/User.cs new file mode 100644 index 0000000..f1322b3 --- /dev/null +++ b/FastMonitor/Model/User.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace FastMonitor.Model +{ + public class User + { + public int Id { get; set; } + + // Example method that would check the user's permissions + public bool HasPermission(int dataId) + { + // Placeholder logic for checking permission + return true; + } + } +} diff --git a/BusinessLogics/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/FastMonitor/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs similarity index 63% rename from BusinessLogics/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to FastMonitor/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs index ad8dfe1..2217181 100644 --- a/BusinessLogics/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ b/FastMonitor/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -1,4 +1,4 @@ // using System; using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfo.cs b/FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfo.cs similarity index 79% rename from DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfo.cs rename to FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfo.cs index 5081636..1a7670a 100644 --- a/DataAcess/obj/Debug/netcoreapp3.1/DataAcess.AssemblyInfo.cs +++ b/FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfo.cs @@ -11,12 +11,12 @@ using System; using System.Reflection; -[assembly: System.Reflection.AssemblyCompanyAttribute("DataAcess")] +[assembly: System.Reflection.AssemblyCompanyAttribute("FastMonitor")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("DataAcess")] -[assembly: System.Reflection.AssemblyTitleAttribute("DataAcess")] +[assembly: System.Reflection.AssemblyProductAttribute("FastMonitor")] +[assembly: System.Reflection.AssemblyTitleAttribute("FastMonitor")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] // Generated by the MSBuild WriteCodeFragment class. diff --git a/FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfoInputs.cache b/FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfoInputs.cache new file mode 100644 index 0000000..af7bba9 --- /dev/null +++ b/FastMonitor/obj/Debug/net8.0/FastMonitor.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7a74bdb9600eeda2d7be79867abb44cf9810f7f07960fcf976c8beab4ecedbae diff --git a/FastMonitor/obj/Debug/net8.0/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig b/FastMonitor/obj/Debug/net8.0/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..524d79d --- /dev/null +++ b/FastMonitor/obj/Debug/net8.0/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = FastMonitor +build_property.ProjectDir = C:\Frank\projects\FastMonitor\FastMonitor\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/FastMonitor/obj/Debug/net8.0/FastMonitor.GlobalUsings.g.cs b/FastMonitor/obj/Debug/net8.0/FastMonitor.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/FastMonitor/obj/Debug/net8.0/FastMonitor.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/FastMonitor/obj/Debug/net8.0/FastMonitor.assets.cache b/FastMonitor/obj/Debug/net8.0/FastMonitor.assets.cache new file mode 100644 index 0000000..a4a45ea Binary files /dev/null and b/FastMonitor/obj/Debug/net8.0/FastMonitor.assets.cache differ diff --git a/FastMonitor/obj/Debug/net8.0/FastMonitor.csproj.AssemblyReference.cache b/FastMonitor/obj/Debug/net8.0/FastMonitor.csproj.AssemblyReference.cache new file mode 100644 index 0000000..950eb7b Binary files /dev/null and b/FastMonitor/obj/Debug/net8.0/FastMonitor.csproj.AssemblyReference.cache differ diff --git a/DataAcess/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/FastMonitor/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs similarity index 60% rename from DataAcess/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to FastMonitor/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs index ad8dfe1..348b87f 100644 --- a/DataAcess/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ b/FastMonitor/obj/Debug/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -1,4 +1,4 @@ // using System; using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfo.cs b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfo.cs new file mode 100644 index 0000000..c9b1b55 --- /dev/null +++ b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfo.cs @@ -0,0 +1,26 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Frank Mensah")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyDescriptionAttribute("FastMonitor is a .NET data access package enforcing zero trust security, role-bas" + + "ed access control, and comprehensive logging.")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.3.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.1.3")] +[assembly: System.Reflection.AssemblyProductAttribute("FastMonitor")] +[assembly: System.Reflection.AssemblyTitleAttribute("FastMonitor")] +[assembly: System.Reflection.AssemblyVersionAttribute("2.1.3.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/YourGitHub/FastMonitor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache new file mode 100644 index 0000000..34017ff --- /dev/null +++ b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0def6021beb33cef01edba2462f1cd68e6cb6313ad2f8f34c2ae23633122217e diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2d23acb --- /dev/null +++ b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,5 @@ +is_global = true +build_property.RootNamespace = FastMonitor +build_property.ProjectDir = C:\Frank\projects\fastmonitor\FastMonitor\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.assets.cache b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.assets.cache new file mode 100644 index 0000000..d3fe910 Binary files /dev/null and b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.assets.cache differ diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache new file mode 100644 index 0000000..116bad6 Binary files /dev/null and b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache differ diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..b20a3ab --- /dev/null +++ b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +2cc5639b5c080243c37aac65cf958ca868590fd9881f69e58dfdf80989edf3a2 diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..599e007 --- /dev/null +++ b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Frank\projects\FastMonitor\FastMonitor\bin\Debug\netstandard2.1\FastMonitor.deps.json +C:\Frank\projects\FastMonitor\FastMonitor\bin\Debug\netstandard2.1\FastMonitor.dll +C:\Frank\projects\FastMonitor\FastMonitor\bin\Debug\netstandard2.1\FastMonitor.pdb +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.csproj.AssemblyReference.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.GeneratedMSBuildEditorConfig.editorconfig +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.AssemblyInfoInputs.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.AssemblyInfo.cs +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.csproj.CoreCompileInputs.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.dll +C:\Frank\projects\FastMonitor\FastMonitor\obj\Debug\netstandard2.1\FastMonitor.pdb diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.dll b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.dll new file mode 100644 index 0000000..3ad738a Binary files /dev/null and b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.dll differ diff --git a/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.pdb b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.pdb new file mode 100644 index 0000000..9f2e6d0 Binary files /dev/null and b/FastMonitor/obj/Debug/netstandard2.1/FastMonitor.pdb differ diff --git a/FastMonitor/obj/FastMonitor.csproj.nuget.dgspec.json b/FastMonitor/obj/FastMonitor.csproj.nuget.dgspec.json new file mode 100644 index 0000000..9d1e5fb --- /dev/null +++ b/FastMonitor/obj/FastMonitor.csproj.nuget.dgspec.json @@ -0,0 +1,79 @@ +{ + "format": 1, + "restore": { + "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj": {} + }, + "projects": { + "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj": { + "version": "2.1.3", + "restore": { + "projectUniqueName": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj", + "projectName": "menfra.FastMonitor", + "projectPath": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj", + "packagesPath": "C:\\Users\\menfr\\.nuget\\packages\\", + "outputPath": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\menfr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": { + "target": "Package", + "version": "[8.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/BusinessLogics/obj/BusinessLogics.csproj.nuget.g.props b/FastMonitor/obj/FastMonitor.csproj.nuget.g.props similarity index 56% rename from BusinessLogics/obj/BusinessLogics.csproj.nuget.g.props rename to FastMonitor/obj/FastMonitor.csproj.nuget.g.props index 853404d..1dcd9bd 100644 --- a/BusinessLogics/obj/BusinessLogics.csproj.nuget.g.props +++ b/FastMonitor/obj/FastMonitor.csproj.nuget.g.props @@ -5,17 +5,12 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\FrankMensah\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\DevExpress 21.2\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + C:\Users\menfr\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 5.11.1 + 6.9.0 - - - - + + - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - \ No newline at end of file diff --git a/FastMonitor/obj/FastMonitor.csproj.nuget.g.targets b/FastMonitor/obj/FastMonitor.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/FastMonitor/obj/FastMonitor.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/FastMonitor/obj/Release/FastMonitor.1.0.0.nuspec b/FastMonitor/obj/Release/FastMonitor.1.0.0.nuspec new file mode 100644 index 0000000..3aa6154 --- /dev/null +++ b/FastMonitor/obj/Release/FastMonitor.1.0.0.nuspec @@ -0,0 +1,21 @@ + + + + FastMonitor + 1.0.0 + Frank Mensah + MIT + https://licenses.nuget.org/MIT + FastMonitor is a .NET data access package enforcing zero trust security, role-based access control, and comprehensive logging. + security, zero-trust, logging, authorization + + + + + + + + + + + \ No newline at end of file diff --git a/FastMonitor/obj/Release/FastMonitor.2.1.3.nuspec b/FastMonitor/obj/Release/FastMonitor.2.1.3.nuspec new file mode 100644 index 0000000..bc0bf5e --- /dev/null +++ b/FastMonitor/obj/Release/FastMonitor.2.1.3.nuspec @@ -0,0 +1,21 @@ + + + + FastMonitor + 2.1.3 + Frank Mensah + MIT + https://licenses.nuget.org/MIT + FastMonitor is a .NET data access package enforcing zero trust security, role-based access control, and comprehensive logging. + security, zero-trust, logging, authorization + + + + + + + + + + + \ No newline at end of file diff --git a/FastMonitor/obj/Release/menfra.FastMonitor.2.1.3.nuspec b/FastMonitor/obj/Release/menfra.FastMonitor.2.1.3.nuspec new file mode 100644 index 0000000..33d33e3 --- /dev/null +++ b/FastMonitor/obj/Release/menfra.FastMonitor.2.1.3.nuspec @@ -0,0 +1,21 @@ + + + + menfra.FastMonitor + 2.1.3 + Frank Mensah + MIT + https://licenses.nuget.org/MIT + FastMonitor is a .NET data access package enforcing zero trust security, role-based access control, and comprehensive logging. + security, zero-trust, logging, authorization + + + + + + + + + + + \ No newline at end of file diff --git a/MallService/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/FastMonitor/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs similarity index 60% rename from MallService/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs rename to FastMonitor/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs index ad8dfe1..348b87f 100644 --- a/MallService/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ b/FastMonitor/obj/Release/netstandard2.1/.NETStandard,Version=v2.1.AssemblyAttributes.cs @@ -1,4 +1,4 @@ // using System; using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfo.cs b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfo.cs new file mode 100644 index 0000000..f5dc2ea --- /dev/null +++ b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfo.cs @@ -0,0 +1,25 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Frank Mensah")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyDescriptionAttribute("FastMonitor is a .NET data access package enforcing zero trust security, role-bas" + + "ed access control, and comprehensive logging.")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("2.1.3.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("2.1.3")] +[assembly: System.Reflection.AssemblyProductAttribute("FastMonitor")] +[assembly: System.Reflection.AssemblyTitleAttribute("FastMonitor")] +[assembly: System.Reflection.AssemblyVersionAttribute("2.1.3.0")] +[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://github.com/YourGitHub/FastMonitor")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache new file mode 100644 index 0000000..3398841 --- /dev/null +++ b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5563251b2eebe956ced7c41f056b126d4b6510a27a95748123b96cc0f3362172 diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bbfc18b --- /dev/null +++ b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,5 @@ +is_global = true +build_property.RootNamespace = FastMonitor +build_property.ProjectDir = C:\Frank\projects\FastMonitor\FastMonitor\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.assets.cache b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.assets.cache new file mode 100644 index 0000000..b894c3b Binary files /dev/null and b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.assets.cache differ diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache new file mode 100644 index 0000000..53bdce5 Binary files /dev/null and b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.AssemblyReference.cache differ diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..c934360 --- /dev/null +++ b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5b159578ff74448fe6ccca8b0bb17e12b670f3fa75b6d647140375967d2b9cb6 diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..0b6b969 --- /dev/null +++ b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.csproj.FileListAbsolute.txt @@ -0,0 +1,10 @@ +C:\Frank\projects\FastMonitor\FastMonitor\bin\Release\netstandard2.1\FastMonitor.deps.json +C:\Frank\projects\FastMonitor\FastMonitor\bin\Release\netstandard2.1\FastMonitor.dll +C:\Frank\projects\FastMonitor\FastMonitor\bin\Release\netstandard2.1\FastMonitor.pdb +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.csproj.AssemblyReference.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.GeneratedMSBuildEditorConfig.editorconfig +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.AssemblyInfoInputs.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.AssemblyInfo.cs +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.csproj.CoreCompileInputs.cache +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.dll +C:\Frank\projects\FastMonitor\FastMonitor\obj\Release\netstandard2.1\FastMonitor.pdb diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.dll b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.dll new file mode 100644 index 0000000..c37e18c Binary files /dev/null and b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.dll differ diff --git a/FastMonitor/obj/Release/netstandard2.1/FastMonitor.pdb b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.pdb new file mode 100644 index 0000000..580e7b8 Binary files /dev/null and b/FastMonitor/obj/Release/netstandard2.1/FastMonitor.pdb differ diff --git a/FastMonitor/obj/project.assets.json b/FastMonitor/obj/project.assets.json new file mode 100644 index 0000000..e13cad5 --- /dev/null +++ b/FastMonitor/obj/project.assets.json @@ -0,0 +1,182 @@ +{ + "version": 3, + "targets": { + ".NETStandard,Version=v2.1": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + ".NETStandard,Version=v2.1": [ + "Microsoft.Extensions.DependencyInjection >= 8.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\menfr\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "2.1.3", + "restore": { + "projectUniqueName": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj", + "projectName": "menfra.FastMonitor", + "projectPath": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj", + "packagesPath": "C:\\Users\\menfr\\.nuget\\packages\\", + "outputPath": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\menfr\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "netstandard2.1" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "netstandard2.1": { + "targetAlias": "netstandard2.1", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": { + "target": "Package", + "version": "[8.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "NETStandard.Library": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/FastMonitor/obj/project.nuget.cache b/FastMonitor/obj/project.nuget.cache new file mode 100644 index 0000000..2fb6d75 --- /dev/null +++ b/FastMonitor/obj/project.nuget.cache @@ -0,0 +1,11 @@ +{ + "version": 2, + "dgSpecHash": "KcCwJst0cnx7SYg/9Db9EPDUxDDRaCkaTtg4McMz37n7UnJnsLBZLzAWa7N98Ncr4CFzUCbtij1gxYMEF0+POQ==", + "success": true, + "projectFilePath": "C:\\Frank\\projects\\fastmonitor\\FastMonitor\\FastMonitor.csproj", + "expectedPackageFiles": [ + "C:\\Users\\menfr\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "C:\\Users\\menfr\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/MallService.sln b/MallService.sln deleted file mode 100644 index 8a1a350..0000000 --- a/MallService.sln +++ /dev/null @@ -1,43 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 16 -VisualStudioVersion = 16.0.31729.503 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MallService", "MallService\MallService.csproj", "{99EBCB5A-BC0B-4A56-9CCE-2EBE8222CE4E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DataAcess", "DataAcess\DataAcess.csproj", "{D801ADE4-8F90-44F6-8719-4015A28DB597}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "BusinessLogics", "BusinessLogics\BusinessLogics.csproj", "{56B36835-5E05-47DA-92C3-302901B98756}" -EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MallServiceTest", "MallServiceTest\MallServiceTest.csproj", "{7D6BF540-4E2A-4B2F-A4FB-54307780DFA9}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {99EBCB5A-BC0B-4A56-9CCE-2EBE8222CE4E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {99EBCB5A-BC0B-4A56-9CCE-2EBE8222CE4E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {99EBCB5A-BC0B-4A56-9CCE-2EBE8222CE4E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {99EBCB5A-BC0B-4A56-9CCE-2EBE8222CE4E}.Release|Any CPU.Build.0 = Release|Any CPU - {D801ADE4-8F90-44F6-8719-4015A28DB597}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D801ADE4-8F90-44F6-8719-4015A28DB597}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D801ADE4-8F90-44F6-8719-4015A28DB597}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D801ADE4-8F90-44F6-8719-4015A28DB597}.Release|Any CPU.Build.0 = Release|Any CPU - {56B36835-5E05-47DA-92C3-302901B98756}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {56B36835-5E05-47DA-92C3-302901B98756}.Debug|Any CPU.Build.0 = Debug|Any CPU - {56B36835-5E05-47DA-92C3-302901B98756}.Release|Any CPU.ActiveCfg = Release|Any CPU - {56B36835-5E05-47DA-92C3-302901B98756}.Release|Any CPU.Build.0 = Release|Any CPU - {7D6BF540-4E2A-4B2F-A4FB-54307780DFA9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {7D6BF540-4E2A-4B2F-A4FB-54307780DFA9}.Debug|Any CPU.Build.0 = Debug|Any CPU - {7D6BF540-4E2A-4B2F-A4FB-54307780DFA9}.Release|Any CPU.ActiveCfg = Release|Any CPU - {7D6BF540-4E2A-4B2F-A4FB-54307780DFA9}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {2678DF92-D82F-4083-9E4B-76F08BB379D4} - EndGlobalSection -EndGlobal diff --git a/MallService/Controllers/CustomerController.cs b/MallService/Controllers/CustomerController.cs deleted file mode 100644 index 197a72d..0000000 --- a/MallService/Controllers/CustomerController.cs +++ /dev/null @@ -1,262 +0,0 @@ -using BusinessLogics.CustomerBusiness; -using BusinessLogics.DTO; -using DataAcess.Interfaces; -using Microsoft.AspNetCore.Mvc; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 - -namespace CustomerService.Controllers -{ - [Route("api/[controller]")] - [ApiController] - public class CustomerController : ControllerBase - { - private readonly ICustomerBusiness _customerBusiness; - public CustomerController(ICustomerBusiness customerBusiness) - { - _customerBusiness = customerBusiness; - } - - // POST api/ - [HttpPost("addCustomer/{standId}")] - public async Task AddCustomer(string standId, [FromBody] CustomerDTO customerDTO) - { - try - { - var result = await _customerBusiness.AddCustomer(standId, customerDTO); - if (result.Status == false) - { - var customer = result.Data.FirstOrDefault() as CustomerDTO; - return Created($"Customer with Id: {customer.Id} has been added.", customer); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Get api/ - [HttpGet("getCustomer/{customerId}")] - public async Task GetCustomer(string customerId) - { - try - { - var result = await _customerBusiness.GetCustomer(customerId); - if (result.Status == false) - { - var customer = result.Data.FirstOrDefault() as CustomerDTO; - return Ok($"Retrieved Customer with Id: {customer.Id}"); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Get api/ - [HttpGet("getAllCustomers")] - public async Task GetCustomers() - { - try - { - var result = await _customerBusiness.GetCustomers(); - if (result.Status == false) - { - var customers = result.Data.FirstOrDefault() as List; - return Ok($"Retrieved Customers with Ids: {string.Join(",", customers.Select(i=>i.Id))}"); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Get api/ - [HttpPost("getCustomersByIds")] - public async Task GetCustomers([FromBody] List Ids) - { - try - { - var result = await _customerBusiness.GetCustomers(Ids); - if (result.Status == false) - { - var customers = result.Data.FirstOrDefault() as List; - return Ok($"Retrieved Customers with Ids: {string.Join(",", customers.Select(i => i.Id))}"); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Put api/ - [HttpPut("updateCustomer")] - public async Task UpdateCustomer([FromBody] CustomerDTO customerDTO) - { - try - { - var result = await _customerBusiness.UpdateCustomer(customerDTO); - if (result.Status == false) - { - var customers = result.Data.FirstOrDefault() as List; - return Ok($"Customers with Id: {customerDTO.Id} updated."); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Put api/ - [HttpPut("updateCustomers")] - public async Task UpdateCustomers([FromBody] List customerDTOs) - { - try - { - var result = await _customerBusiness.UpdateCustomers(customerDTOs); - if (result.Status == false) - { - return Ok($"Customers have been updated."); - } - else - { - var errors = string.Join(" and also ", result.ErrorList.Select(e=>e.ErrorMessage)); - return Problem(errors, null, 500); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpDelete("deleteCustomer/{customerId}")] - public async Task DeleteCustomer(string customerId) - { - try - { - var result = await _customerBusiness.DeleteCustomer(customerId); - if (result.Status == false) - { - return Ok($"Customer with Id: {customerId} has been deleted."); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpPost("deleteCustomersByIds")] - public async Task DeleteStandBulk([FromBody] List Ids) - { - try - { - await _customerBusiness.DeleteCustomers(Ids); - return Ok($"Customers with Ids: {string.Join(",", Ids)} have been deleted."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Post api/ - [HttpPost("buyProductBy/{customerId}")] - public async Task BuyProduct(string customerId) - { - try - { - var result = await _customerBusiness.BuyProduct(customerId); - if (result.Status == false) - { - return Ok($"Customers {customerId} has completed shopping."); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Post api/ - [HttpPost("addProduct/{customerId}/{standId}")] - public async Task AddProduct(string customerId, string standId) - { - try - { - var result = await _customerBusiness.AddProduct(customerId, standId); - if (result.Status == false) - { - var customer = result.Data.FirstOrDefault() as CustomerDTO; - return Ok($"Customer {customer.Id} has these products list ${string.Join("\n,", customer.Products.Select(p=>p.Id))}"); - } - else - { - var error = result.ErrorList.FirstOrDefault(); - return Problem(error.ErrorMessage, null, error.ErrorCode); - } - - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - } -} diff --git a/MallService/Controllers/MallController.cs b/MallService/Controllers/MallController.cs deleted file mode 100644 index 31bdc37..0000000 --- a/MallService/Controllers/MallController.cs +++ /dev/null @@ -1,143 +0,0 @@ -using Microsoft.AspNetCore.Mvc; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using BusinessLogics.MallBusiness; -using BusinessLogics.StandBusiness; -using BusinessLogics.DTO; - -// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 - -namespace MallService.Controllers -{ - [Route("api/[controller]")] - [ApiController] - public class MallController : ControllerBase - { - private readonly IMallBusiness _mallBusiness; - public MallController(IMallBusiness mallBusiness) - { - _mallBusiness = mallBusiness; - } - - // GET: api/ - [HttpGet("mallOpenedStatus")] - public IActionResult GetMallOpenedStatus() - { - try - { - var mall = _mallBusiness.GetMallOpenedStatus(); - return Ok(mall.OpenedState.ToString()); - } - catch (Exception) - { - - return NotFound("The requested service could not be found"); - } - - } - - // GET: api/ - [HttpGet("mallOpenCloseDuration")] - public IActionResult GetMallOpenCloseDuration() - { - try - { - var mall = _mallBusiness.GetMallOpenCloseDuration(); - if (mall.OpenClosedDuration > 0) - return Ok(mall.OpenClosedDuration.ToString()); - else - return Problem("There Seem to be an invalid input for the mall open and close duration."); - } - catch (Exception) - { - - return NotFound("There Seem to be an invalid input for the mall open and close duration."); - } - - } - - - // POST api/ - [HttpPost("addStand")] - public async Task AddStand([FromBody] StandDTO standDTO) - { - try - { - DataAcess.DataModels.Stand stand = await _mallBusiness.AddStand(standDTO); - if (stand != null) - return Created($"Stand with Id: {stand.Id} has been added.", stand); - else - return Problem($"Stand with Id: {stand.Id} has been added.", null, 500); - } - catch (Exception) - { - throw; - } - } - - - // Get api/ - [HttpGet("getStand/{standId}")] - public async Task GetStand(string standId) - { - try - { - DataAcess.DataModels.Stand stand = await _mallBusiness.GetStand(standId); - if (stand != null) - return Ok(stand); - else - return Problem($"Could not find stand with Id {standId}", null, 404); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - [HttpGet("getAllStands")] - public async Task GetStands() - { - try - { - var stands = await _mallBusiness.GetStands(); - return Ok(stands); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Put api/ - [HttpPut("updateStand")] - public async Task UpdateStand([FromBody] StandDTO standDTO) - { - try - { - await _mallBusiness.UpdateStand(standDTO); - return Ok($"Stand with Id: {standDTO.Id} has been updated."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpDelete("deleteStand/{standId}")] - public async Task DeleteStand(string standId) - { - try - { - await _mallBusiness.DeleteStand(standId); - return Ok($"Stand with Id: {standId} has been deleted."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - } -} diff --git a/MallService/Controllers/StandController.cs b/MallService/Controllers/StandController.cs deleted file mode 100644 index f40790e..0000000 --- a/MallService/Controllers/StandController.cs +++ /dev/null @@ -1,164 +0,0 @@ -using BusinessLogics.DTO; -using BusinessLogics.StandBusiness; -using Microsoft.AspNetCore.Mvc; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; - -// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 - -namespace StandService.Controllers -{ - [Route("api/[controller]")] - [ApiController] - public class StandController : ControllerBase - { - private readonly IStandBusiness _standBusiness; - public StandController(IStandBusiness standBusiness) - { - _standBusiness = standBusiness; - } - - // POST api/ - [HttpPost("addStand")] - public async Task AddStand([FromBody] StandDTO standDTO) - { - try - { - DataAcess.DataModels.Stand stand = await _standBusiness.AddStand(standDTO); - if (stand != null) - return Created($"Stand with Id: {stand.Id} has been added.", stand.Id); - else - return Problem($"Stand with Id: {stand.Id} could not be added.", null, 500); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpDelete("deleteStand/{standId}")] - public async Task DeleteStand(string standId) - { - try - { - await _standBusiness.DeleteStand(standId); - return Ok($"Stand with Id: {standId} has been deleted."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpPost("deleteStands")] - public async Task DeleteStandBulk([FromBody] List Ids) - { - try - { - await _standBusiness.DeleteStandBulk(Ids); - return Ok($"Stand with Ids: {string.Join(",", Ids)} have been deleted."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Delete api/ - [HttpDelete("deleteStandByproduct/{productId}")] - public async Task DeleteStandProductId(string productId) - { - try - { - await _standBusiness.DeleteStandProductId(productId); - return Ok($"Stand with Id: {productId} has been deleted."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Get api/ - [HttpGet("getStand/{standId}")] - public async Task GetStand(string standId) - { - try - { - DataAcess.DataModels.Stand stand = await _standBusiness.GetStand(standId); - if (stand != null) - return Ok(stand); - else - return Problem($"Could not find stand with Id {standId}", null, 404); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - [HttpGet("getAllStands")] - public async Task GetStands() - { - try - { - var stands = await _standBusiness.GetStands(); - return Ok(stands); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Get api/ - [HttpGet("getStandByProduct/{productId}")] - public async Task GetStandByProductId(string productId) - { - try - { - var stands = await _standBusiness.GetStandsProductId(productId); - return Ok(stands); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Put api/ - [HttpPut("updateStand")] - public async Task UpdateStand([FromBody] StandDTO standDTO) - { - try - { - await _standBusiness.UpdateStand(standDTO); - return Ok($"Stand with Id: {standDTO.Id} has been updated."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - // Put api/ - [HttpPut("updateStandBulk")] - public async Task UpdateStandBulk([FromBody] List standDTOs) - { - try - { - await _standBusiness.UpdateStandBulk(standDTOs); - return Ok($"Stand with Id: { string.Join(',', standDTOs.Select(i=>i.Id)) } has been updated."); - } - catch (Exception ex) - { - return Problem(ex.Message, null, 500); - } - } - - } -} diff --git a/MallService/Dockerfile b/MallService/Dockerfile deleted file mode 100644 index 85849b8..0000000 --- a/MallService/Dockerfile +++ /dev/null @@ -1,22 +0,0 @@ -#See https://aka.ms/containerfastmode to understand how Visual Studio uses this Dockerfile to build your images for faster debugging. - -FROM mcr.microsoft.com/dotnet/aspnet:3.1 AS base -WORKDIR /app -EXPOSE 80 -EXPOSE 443 - -FROM mcr.microsoft.com/dotnet/sdk:3.1 AS build -WORKDIR /src -COPY ["MallService/MallService.csproj", "MallService/"] -RUN dotnet restore "MallService/MallService.csproj" -COPY . . -WORKDIR "/src/MallService" -RUN dotnet build "MallService.csproj" -c Release -o /app/build - -FROM build AS publish -RUN dotnet publish "MallService.csproj" -c Release -o /app/publish - -FROM base AS final -WORKDIR /app -COPY --from=publish /app/publish . -ENTRYPOINT ["dotnet", "MallService.dll"] \ No newline at end of file diff --git a/MallService/MallService.csproj b/MallService/MallService.csproj deleted file mode 100644 index ddbf345..0000000 --- a/MallService/MallService.csproj +++ /dev/null @@ -1,25 +0,0 @@ - - - - netcoreapp3.1 - 7ee30d98-2c7e-45bf-baef-91a25b172ad9 - Linux - - - - - - - - - - - - - - - - - - - diff --git a/MallService/MallService.csproj.user b/MallService/MallService.csproj.user deleted file mode 100644 index faaed18..0000000 --- a/MallService/MallService.csproj.user +++ /dev/null @@ -1,11 +0,0 @@ - - - - MallService - MvcControllerWithActionsScaffolder - root/Common/MVC/Controller - - - ProjectDebugger - - \ No newline at end of file diff --git a/MallService/Program.cs b/MallService/Program.cs deleted file mode 100644 index ce2261a..0000000 --- a/MallService/Program.cs +++ /dev/null @@ -1,30 +0,0 @@ -using Microsoft.AspNetCore.Hosting; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using Microsoft.Extensions.Configuration.AzureAppConfiguration; - -namespace MallService -{ - public class Program - { - public static void Main(string[] args) - { - CreateHostBuilder(args).Build().Run(); - } - - public static IHostBuilder CreateHostBuilder(string[] args) => - Host.CreateDefaultBuilder(args) - .ConfigureWebHostDefaults(webBuilder => - webBuilder.ConfigureAppConfiguration((hostingContext, config) => - { - var connectionString = config.Build().GetConnectionString("AppConfig"); - config.AddAzureAppConfiguration(connectionString); - }) - .UseStartup()); - } -} diff --git a/MallService/Properties/launchSettings.json b/MallService/Properties/launchSettings.json deleted file mode 100644 index fdf1785..0000000 --- a/MallService/Properties/launchSettings.json +++ /dev/null @@ -1,37 +0,0 @@ -{ - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:48224", - "sslPort": 44372 - } - }, - "$schema": "http://json.schemastore.org/launchsettings.json", - "profiles": { - "IIS Express": { - "commandName": "IISExpress", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - } - }, - "MallService": { - "commandName": "Project", - "launchBrowser": true, - "launchUrl": "swagger", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development" - }, - "applicationUrl": "https://localhost:5001;http://localhost:5000" - }, - "Docker": { - "commandName": "Docker", - "launchBrowser": true, - "launchUrl": "{Scheme}://{ServiceHost}:{ServicePort}/swagger", - "publishAllPorts": true, - "useSSL": true - } - } -} \ No newline at end of file diff --git a/MallService/Startup.cs b/MallService/Startup.cs deleted file mode 100644 index cc54ebc..0000000 --- a/MallService/Startup.cs +++ /dev/null @@ -1,141 +0,0 @@ -using Microsoft.AspNetCore.Builder; -using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; -using Microsoft.AspNetCore.Mvc; -using Microsoft.Extensions.Configuration; -using Microsoft.Extensions.DependencyInjection; -using Microsoft.Extensions.Hosting; -using Microsoft.Extensions.Logging; -using Microsoft.OpenApi.Models; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -using DataAcess.DataModels; -using DataAcess.Interfaces; -using DataAcess.DataServices; -using BusinessLogics.StandBusiness; -using BusinessLogics.MallBusiness; -using BusinessLogics.CustomerBusiness; -using BusinessLogics.Extensions; -using DataAcess.Enums; -using System.Timers; -using AutoMapper; -using BusinessLogics.Mapping; -using FluentValidation.AspNetCore; -using System.Reflection; -using BusinessLogics.Validators; - -namespace MallService -{ - public class Startup - { - private readonly Timer timer; - public Startup(IConfiguration configuration) - { - Configuration = configuration; - ConfigValues.MallOpenCloseDuration = Configuration["MallService:Settings:OpenCloseDuration"]; - ConfigValues.MallOpenedStatus = Configuration["MallService:Settings:OpenedStatus"].Equals("Opened") ? States.Opened : States.Closed; - ConfigValues.InMallCustomers = Configuration["MallService:Settings:Capacity"].Equals("UnLimited") ? Capacity.UnLimited : Capacity.Limited; - - int.TryParse(ConfigValues.MallOpenCloseDuration, out int duration); - timer = new Timer(duration); - timer.Elapsed += OnTimedEvent; - timer.Start(); - } - - private void OnTimedEvent(object sender, ElapsedEventArgs e) - { - if (ConfigValues.FirstTime) - { - ConfigValues.FirstTime = false; - return; - } - - if (ConfigValues.MallOpenedStatus == States.Opened) - ConfigValues.MallOpenedStatus = States.Closed; - else - ConfigValues.MallOpenedStatus = States.Opened; - } - - public IConfiguration Configuration { get; } - - // This method gets called by the runtime. Use this method to add services to the container. - public void ConfigureServices(IServiceCollection services) - { - // Auto Mapper Configurations - var mapperConfig = new MapperConfiguration(mc => - { - mc.AddProfile(new MappingProfile()); - }); - - IMapper mapper = mapperConfig.CreateMapper(); - services.AddSingleton(mapper); - - services.AddControllers().AddFluentValidation(s => - { - s.RegisterValidatorsFromAssemblyContaining(); - s.RunDefaultMvcValidationAfterFluentValidationExecutes = false; - }); - services.AddTransient(); - services.AddTransient(); - services.AddTransient(); - services.AddTransient(); - services.AddScoped(); - services.AddTransient(); - services.AddTransient(); - services.AddTransient(); - - // Register the Swagger Generator service. This service is responsible for genrating Swagger Documents. - // Note: Add this service at the end after AddMvc() or AddMvcCore(). - services.AddSwaggerGen(c => - { - c.SwaggerDoc("v1", new OpenApiInfo - { - Title = "Jedox Mall API (Mall Service)", - Version = "v1", - Description = "An API to Simulate a virtual Mall", - Contact = new OpenApiContact - { - Name = "Jedox Mall API Test", - Email = "info@jedox.com", - Url = new Uri("https://jedox.com"), - }, - }); - }); - } - - // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. - public void Configure(IApplicationBuilder app, IWebHostEnvironment env) - { - if (env.IsDevelopment()) - { - app.UseDeveloperExceptionPage(); - } - - // Enable middleware to serve generated Swagger as a JSON endpoint. - app.UseSwagger(); - - // Enable middleware to serve swagger-ui (HTML, JS, CSS, etc.), - // specifying the Swagger JSON endpoint. - app.UseSwaggerUI(c => - { - c.SwaggerEndpoint("/swagger/v1/swagger.json", "Mall Service of the Mall API API V1"); - - //// To serve SwaggerUI at application's root page, set the RoutePrefix property to an empty string. - //c.RoutePrefix = string.Empty; - }); - - app.UseHttpsRedirection(); - - app.UseRouting(); - - app.UseAuthorization(); - - app.UseEndpoints(endpoints => - { - endpoints.MapControllers(); - }); - } - } -} diff --git a/MallService/appsettings.Development.json b/MallService/appsettings.Development.json deleted file mode 100644 index 8983e0f..0000000 --- a/MallService/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/MallService/appsettings.json b/MallService/appsettings.json deleted file mode 100644 index 65356a4..0000000 --- a/MallService/appsettings.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "AppConfig": "Endpoint=https://mall-simulation.azconfig.io;Id=NpSP-l4-s0:qDjBZzDKAD7PROLLmMFF;Secret=RgExJw3QGaZSDgceJ14PlvqVSFiQvEAfgQazmuu12W0=" - } -} diff --git a/MallService/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/MallService/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index d8c1c58..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/AutoMapper.dll b/MallService/bin/Debug/netcoreapp3.1/AutoMapper.dll deleted file mode 100644 index 7699210..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/AutoMapper.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Azure.Core.dll b/MallService/bin/Debug/netcoreapp3.1/Azure.Core.dll deleted file mode 100644 index c1a05f4..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Azure.Core.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Azure.Data.AppConfiguration.dll b/MallService/bin/Debug/netcoreapp3.1/Azure.Data.AppConfiguration.dll deleted file mode 100644 index 1319df9..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Azure.Data.AppConfiguration.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Azure.Messaging.EventGrid.dll b/MallService/bin/Debug/netcoreapp3.1/Azure.Messaging.EventGrid.dll deleted file mode 100644 index d7b7587..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Azure.Messaging.EventGrid.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Azure.Security.KeyVault.Secrets.dll b/MallService/bin/Debug/netcoreapp3.1/Azure.Security.KeyVault.Secrets.dll deleted file mode 100644 index ef42375..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Azure.Security.KeyVault.Secrets.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.dll b/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.dll deleted file mode 100644 index b48eb69..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.pdb b/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.pdb deleted file mode 100644 index cbcc613..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/BusinessLogics.pdb and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/DataAcess.dll b/MallService/bin/Debug/netcoreapp3.1/DataAcess.dll deleted file mode 100644 index 6dfeae7..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/DataAcess.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/DataAcess.pdb b/MallService/bin/Debug/netcoreapp3.1/DataAcess.pdb deleted file mode 100644 index 6720f18..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/DataAcess.pdb and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/DnsClient.dll b/MallService/bin/Debug/netcoreapp3.1/DnsClient.dll deleted file mode 100644 index 24e476d..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/DnsClient.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll b/MallService/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll deleted file mode 100644 index 279f77d..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll b/MallService/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll deleted file mode 100644 index ebfbe53..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.dll b/MallService/bin/Debug/netcoreapp3.1/FluentValidation.dll deleted file mode 100644 index 1fae964..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/FluentValidation.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.deps.json b/MallService/bin/Debug/netcoreapp3.1/MallService.deps.json deleted file mode 100644 index 2a8b8a9..0000000 --- a/MallService/bin/Debug/netcoreapp3.1/MallService.deps.json +++ /dev/null @@ -1,4333 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": { - "defines": [ - "TRACE", - "DEBUG", - "NETCOREAPP", - "NETCOREAPP3_1", - "NETCOREAPP1_0_OR_GREATER", - "NETCOREAPP1_1_OR_GREATER", - "NETCOREAPP2_0_OR_GREATER", - "NETCOREAPP2_1_OR_GREATER", - "NETCOREAPP2_2_OR_GREATER", - "NETCOREAPP3_0_OR_GREATER", - "NETCOREAPP3_1_OR_GREATER" - ], - "languageVersion": "8.0", - "platform": "", - "allowUnsafe": false, - "warningsAsErrors": false, - "optimize": false, - "keyFile": "", - "emitEntryPoint": true, - "xmlDoc": false, - "debugType": "portable" - }, - "targets": { - ".NETCoreApp,Version=v3.1": { - "MallService/1.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "BusinessLogics": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6", - "Microsoft.Extensions.Configuration.AzureAppConfiguration": "5.0.0", - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.11.1", - "Swashbuckle.AspNetCore.Swagger": "6.2.3", - "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", - "Swashbuckle.AspNetCore.SwaggerUI": "6.2.3", - "Microsoft.AspNetCore.Antiforgery": "3.1.0.0", - "Microsoft.AspNetCore.Authentication.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Authentication.Cookies": "3.1.0.0", - "Microsoft.AspNetCore.Authentication.Core": "3.1.0.0", - "Microsoft.AspNetCore.Authentication": "3.1.0.0", - "Microsoft.AspNetCore.Authentication.OAuth": "3.1.0.0", - "Microsoft.AspNetCore.Authorization": "3.1.0.0", - "Microsoft.AspNetCore.Authorization.Policy": "3.1.0.0", - "Microsoft.AspNetCore.Components.Authorization": "3.1.0.0", - "Microsoft.AspNetCore.Components": "3.1.0.0", - "Microsoft.AspNetCore.Components.Forms": "3.1.0.0", - "Microsoft.AspNetCore.Components.Server": "3.1.0.0", - "Microsoft.AspNetCore.Components.Web": "3.1.0.0", - "Microsoft.AspNetCore.Connections.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.CookiePolicy": "3.1.0.0", - "Microsoft.AspNetCore.Cors": "3.1.0.0", - "Microsoft.AspNetCore.Cryptography.Internal": "3.1.0.0", - "Microsoft.AspNetCore.Cryptography.KeyDerivation": "3.1.0.0", - "Microsoft.AspNetCore.DataProtection.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.DataProtection": "3.1.0.0", - "Microsoft.AspNetCore.DataProtection.Extensions": "3.1.0.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Diagnostics": "3.1.0.0", - "Microsoft.AspNetCore.Diagnostics.HealthChecks": "3.1.0.0", - "Microsoft.AspNetCore": "3.1.0.0", - "Microsoft.AspNetCore.HostFiltering": "3.1.0.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Hosting": "3.1.0.0", - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Html.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Http.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Http.Connections.Common": "3.1.0.0", - "Microsoft.AspNetCore.Http.Connections": "3.1.0.0", - "Microsoft.AspNetCore.Http": "3.1.0.0", - "Microsoft.AspNetCore.Http.Extensions": "3.1.0.0", - "Microsoft.AspNetCore.Http.Features": "3.1.0.0", - "Microsoft.AspNetCore.HttpOverrides": "3.1.0.0", - "Microsoft.AspNetCore.HttpsPolicy": "3.1.0.0", - "Microsoft.AspNetCore.Identity": "3.1.0.0", - "Microsoft.AspNetCore.Localization": "3.1.0.0", - "Microsoft.AspNetCore.Localization.Routing": "3.1.0.0", - "Microsoft.AspNetCore.Metadata": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Core": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Cors": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "3.1.0.0", - "Microsoft.AspNetCore.Mvc": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Formatters.Xml": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Localization": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.Razor": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.RazorPages": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.TagHelpers": "3.1.0.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "3.1.0.0", - "Microsoft.AspNetCore.Razor": "3.1.0.0", - "Microsoft.AspNetCore.Razor.Runtime": "3.1.0.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.ResponseCaching": "3.1.0.0", - "Microsoft.AspNetCore.ResponseCompression": "3.1.0.0", - "Microsoft.AspNetCore.Rewrite": "3.1.0.0", - "Microsoft.AspNetCore.Routing.Abstractions": "3.1.0.0", - "Microsoft.AspNetCore.Routing": "3.1.0.0", - "Microsoft.AspNetCore.Server.HttpSys": "3.1.0.0", - "Microsoft.AspNetCore.Server.IIS": "3.1.0.0", - "Microsoft.AspNetCore.Server.IISIntegration": "3.1.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Core": "3.1.0.0", - "Microsoft.AspNetCore.Server.Kestrel": "3.1.0.0", - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "3.1.0.0", - "Microsoft.AspNetCore.Session": "3.1.0.0", - "Microsoft.AspNetCore.SignalR.Common": "3.1.0.0", - "Microsoft.AspNetCore.SignalR.Core": "3.1.0.0", - "Microsoft.AspNetCore.SignalR": "3.1.0.0", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "3.1.0.0", - "Microsoft.AspNetCore.StaticFiles": "3.1.0.0", - "Microsoft.AspNetCore.WebSockets": "3.1.0.0", - "Microsoft.AspNetCore.WebUtilities": "3.1.0.0", - "Microsoft.CSharp.Reference": "4.0.0.0", - "Microsoft.Extensions.Configuration.Binder": "3.1.0.0", - "Microsoft.Extensions.Configuration.CommandLine": "3.1.0.0", - "Microsoft.Extensions.Configuration.EnvironmentVariables": "3.1.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "3.1.0.0", - "Microsoft.Extensions.Configuration.Ini": "3.1.0.0", - "Microsoft.Extensions.Configuration.Json": "3.1.0.0", - "Microsoft.Extensions.Configuration.KeyPerFile": "3.1.0.0", - "Microsoft.Extensions.Configuration.UserSecrets": "3.1.0.0", - "Microsoft.Extensions.Configuration.Xml": "3.1.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "3.1.0.0", - "Microsoft.Extensions.Diagnostics.HealthChecks": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Composite": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "3.1.0.0", - "Microsoft.Extensions.FileProviders.Physical": "3.1.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "3.1.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "3.1.0.0", - "Microsoft.Extensions.Hosting": "3.1.0.0", - "Microsoft.Extensions.Http": "3.1.0.0", - "Microsoft.Extensions.Identity.Core": "3.1.0.0", - "Microsoft.Extensions.Identity.Stores": "3.1.0.0", - "Microsoft.Extensions.Localization.Abstractions": "3.1.0.0", - "Microsoft.Extensions.Localization": "3.1.0.0", - "Microsoft.Extensions.Logging.Configuration": "3.1.0.0", - "Microsoft.Extensions.Logging.Console": "3.1.0.0", - "Microsoft.Extensions.Logging.Debug": "3.1.0.0", - "Microsoft.Extensions.Logging.EventLog": "3.1.0.0", - "Microsoft.Extensions.Logging.EventSource": "3.1.0.0", - "Microsoft.Extensions.Logging.TraceSource": "3.1.0.0", - "Microsoft.Extensions.ObjectPool": "3.1.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "3.1.0.0", - "Microsoft.Extensions.Options.DataAnnotations": "3.1.0.0", - "Microsoft.Extensions.WebEncoders": "3.1.0.0", - "Microsoft.JSInterop": "3.1.0.0", - "Microsoft.Net.Http.Headers": "3.1.0.0", - "Microsoft.VisualBasic.Core": "10.0.5.0", - "Microsoft.VisualBasic": "10.0.0.0", - "Microsoft.Win32.Primitives": "4.1.2.0", - "Microsoft.Win32.Registry": "4.1.3.0", - "mscorlib": "4.0.0.0", - "netstandard": "2.1.0.0", - "System.AppContext": "4.2.2.0", - "System.Buffers.Reference": "4.0.2.0", - "System.Collections.Concurrent": "4.0.15.0", - "System.Collections": "4.1.2.0", - "System.Collections.NonGeneric": "4.1.2.0", - "System.Collections.Specialized": "4.1.2.0", - "System.ComponentModel.DataAnnotations": "4.0.0.0", - "System.ComponentModel": "4.0.4.0", - "System.ComponentModel.EventBasedAsync": "4.1.2.0", - "System.ComponentModel.Primitives": "4.2.2.0", - "System.ComponentModel.TypeConverter": "4.2.2.0", - "System.Configuration": "4.0.0.0", - "System.Console": "4.1.2.0", - "System.Core": "4.0.0.0", - "System.Data.Common": "4.2.2.0", - "System.Data.DataSetExtensions": "4.0.1.0", - "System.Data": "4.0.0.0", - "System.Diagnostics.Contracts": "4.0.4.0", - "System.Diagnostics.Debug": "4.1.2.0", - "System.Diagnostics.EventLog": "4.0.2.0", - "System.Diagnostics.FileVersionInfo": "4.0.4.0", - "System.Diagnostics.Process": "4.2.2.0", - "System.Diagnostics.StackTrace": "4.1.2.0", - "System.Diagnostics.TextWriterTraceListener": "4.1.2.0", - "System.Diagnostics.Tools": "4.1.2.0", - "System.Diagnostics.TraceSource": "4.1.2.0", - "System.Diagnostics.Tracing": "4.2.2.0", - "System": "4.0.0.0", - "System.Drawing": "4.0.0.0", - "System.Drawing.Primitives": "4.2.1.0", - "System.Dynamic.Runtime": "4.1.2.0", - "System.Globalization.Calendars": "4.1.2.0", - "System.Globalization": "4.1.2.0", - "System.Globalization.Extensions": "4.1.2.0", - "System.IO.Compression.Brotli": "4.2.2.0", - "System.IO.Compression": "4.2.2.0", - "System.IO.Compression.FileSystem": "4.0.0.0", - "System.IO.Compression.ZipFile": "4.0.5.0", - "System.IO": "4.2.2.0", - "System.IO.FileSystem": "4.1.2.0", - "System.IO.FileSystem.DriveInfo": "4.1.2.0", - "System.IO.FileSystem.Primitives": "4.1.2.0", - "System.IO.FileSystem.Watcher": "4.1.2.0", - "System.IO.IsolatedStorage": "4.1.2.0", - "System.IO.MemoryMappedFiles": "4.1.2.0", - "System.IO.Pipelines": "4.0.2.0", - "System.IO.Pipes": "4.1.2.0", - "System.IO.UnmanagedMemoryStream": "4.1.2.0", - "System.Linq": "4.2.2.0", - "System.Linq.Expressions": "4.2.2.0", - "System.Linq.Parallel": "4.0.4.0", - "System.Linq.Queryable": "4.0.4.0", - "System.Memory.Reference": "4.2.1.0", - "System.Net": "4.0.0.0", - "System.Net.Http": "4.2.2.0", - "System.Net.HttpListener": "4.0.2.0", - "System.Net.Mail": "4.0.2.0", - "System.Net.NameResolution": "4.1.2.0", - "System.Net.NetworkInformation": "4.2.2.0", - "System.Net.Ping": "4.1.2.0", - "System.Net.Primitives": "4.1.2.0", - "System.Net.Requests": "4.1.2.0", - "System.Net.Security": "4.1.2.0", - "System.Net.ServicePoint": "4.0.2.0", - "System.Net.Sockets": "4.2.2.0", - "System.Net.WebClient": "4.0.2.0", - "System.Net.WebHeaderCollection": "4.1.2.0", - "System.Net.WebProxy": "4.0.2.0", - "System.Net.WebSockets.Client": "4.1.2.0", - "System.Net.WebSockets": "4.1.2.0", - "System.Numerics": "4.0.0.0", - "System.Numerics.Vectors.Reference": "4.1.6.0", - "System.ObjectModel": "4.1.2.0", - "System.Reflection.DispatchProxy": "4.0.6.0", - "System.Reflection": "4.2.2.0", - "System.Reflection.Emit": "4.1.2.0", - "System.Reflection.Emit.ILGeneration": "4.1.1.0", - "System.Reflection.Emit.Lightweight": "4.1.1.0", - "System.Reflection.Extensions": "4.1.2.0", - "System.Reflection.Metadata": "1.4.5.0", - "System.Reflection.Primitives": "4.1.2.0", - "System.Reflection.TypeExtensions": "4.1.2.0", - "System.Resources.Reader": "4.1.2.0", - "System.Resources.ResourceManager": "4.1.2.0", - "System.Resources.Writer": "4.1.2.0", - "System.Runtime.CompilerServices.VisualC": "4.1.2.0", - "System.Runtime": "4.2.2.0", - "System.Runtime.Extensions": "4.2.2.0", - "System.Runtime.Handles": "4.1.2.0", - "System.Runtime.InteropServices": "4.2.2.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.0.4.0", - "System.Runtime.InteropServices.WindowsRuntime": "4.0.4.0", - "System.Runtime.Intrinsics": "4.0.1.0", - "System.Runtime.Loader": "4.1.1.0", - "System.Runtime.Numerics": "4.1.2.0", - "System.Runtime.Serialization": "4.0.0.0", - "System.Runtime.Serialization.Formatters": "4.0.4.0", - "System.Runtime.Serialization.Json": "4.0.5.0", - "System.Runtime.Serialization.Primitives": "4.2.2.0", - "System.Runtime.Serialization.Xml": "4.1.5.0", - "System.Security.AccessControl": "4.1.1.0", - "System.Security.Claims": "4.1.2.0", - "System.Security.Cryptography.Algorithms": "4.3.2.0", - "System.Security.Cryptography.Cng": "4.3.3.0", - "System.Security.Cryptography.Csp": "4.1.2.0", - "System.Security.Cryptography.Encoding": "4.1.2.0", - "System.Security.Cryptography.Primitives": "4.1.2.0", - "System.Security.Cryptography.X509Certificates": "4.2.2.0", - "System.Security.Cryptography.Xml": "4.0.3.0", - "System.Security": "4.0.0.0", - "System.Security.Permissions": "4.0.3.0", - "System.Security.Principal": "4.1.2.0", - "System.Security.Principal.Windows": "4.1.1.0", - "System.Security.SecureString": "4.1.2.0", - "System.ServiceModel.Web": "4.0.0.0", - "System.ServiceProcess": "4.0.0.0", - "System.Text.Encoding.CodePages": "4.1.3.0", - "System.Text.Encoding": "4.1.2.0", - "System.Text.Encoding.Extensions": "4.1.2.0", - "System.Text.Json.Reference": "4.0.1.0", - "System.Text.RegularExpressions": "4.2.2.0", - "System.Threading": "4.1.2.0", - "System.Threading.Overlapped": "4.1.2.0", - "System.Threading.Tasks.Dataflow": "4.6.5.0", - "System.Threading.Tasks": "4.1.2.0", - "System.Threading.Tasks.Extensions.Reference": "4.3.1.0", - "System.Threading.Tasks.Parallel": "4.0.4.0", - "System.Threading.Thread": "4.1.2.0", - "System.Threading.ThreadPool": "4.1.2.0", - "System.Threading.Timer": "4.1.2.0", - "System.Transactions": "4.0.0.0", - "System.Transactions.Local": "4.0.2.0", - "System.ValueTuple": "4.0.3.0", - "System.Web": "4.0.0.0", - "System.Web.HttpUtility": "4.0.2.0", - "System.Windows": "4.0.0.0", - "System.Windows.Extensions": "4.0.1.0", - "System.Xml": "4.0.0.0", - "System.Xml.Linq": "4.0.0.0", - "System.Xml.ReaderWriter": "4.2.2.0", - "System.Xml.Serialization": "4.0.0.0", - "System.Xml.XDocument": "4.1.2.0", - "System.Xml.XmlDocument": "4.1.2.0", - "System.Xml.XmlSerializer": "4.1.2.0", - "System.Xml.XPath": "4.1.2.0", - "System.Xml.XPath.XDocument": "4.1.2.0", - "WindowsBase": "4.0.0.0" - }, - "runtime": { - "MallService.dll": {} - }, - "compile": { - "MallService.dll": {} - } - }, - "AutoMapper/11.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.1.0" - } - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": {} - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.0.0" - } - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "Azure.Core/1.20.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netcoreapp2.1/Azure.Core.dll": { - "assemblyVersion": "1.20.0.0", - "fileVersion": "1.2000.21.50405" - } - }, - "compile": { - "lib/netcoreapp2.1/Azure.Core.dll": {} - } - }, - "Azure.Data.AppConfiguration/1.2.0": { - "dependencies": { - "Azure.Core": "1.20.0", - "Microsoft.Bcl.AsyncInterfaces": "1.0.0", - "System.Text.Json": "4.6.0" - }, - "runtime": { - "lib/netstandard2.0/Azure.Data.AppConfiguration.dll": { - "assemblyVersion": "1.2.0.0", - "fileVersion": "1.200.21.50403" - } - }, - "compile": { - "lib/netstandard2.0/Azure.Data.AppConfiguration.dll": {} - } - }, - "Azure.Messaging.EventGrid/4.7.0": { - "dependencies": { - "Azure.Core": "1.20.0", - "System.Memory.Data": "1.0.2", - "System.Text.Json": "4.6.0" - }, - "runtime": { - "lib/netstandard2.0/Azure.Messaging.EventGrid.dll": { - "assemblyVersion": "4.7.0.0", - "fileVersion": "4.700.21.50703" - } - }, - "compile": { - "lib/netstandard2.0/Azure.Messaging.EventGrid.dll": {} - } - }, - "Azure.Security.KeyVault.Secrets/4.0.1": { - "dependencies": { - "Azure.Core": "1.20.0", - "System.Memory": "4.5.4", - "System.Text.Json": "4.6.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll": { - "assemblyVersion": "4.0.1.0", - "fileVersion": "4.0.120.5803" - } - }, - "compile": { - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll": {} - } - }, - "DnsClient/1.4.0": { - "runtime": { - "lib/netstandard2.1/DnsClient.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.4.0.0" - } - }, - "compile": { - "lib/netstandard2.1/DnsClient.dll": {} - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - }, - "compile": { - "lib/netstandard2.1/FluentValidation.dll": {} - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - }, - "compile": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - } - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - }, - "compile": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/1.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "4.700.19.46214" - } - }, - "compile": { - "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.EntityFrameworkCore/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {}, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration/3.1.18": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": { - "assemblyVersion": "3.1.18.0", - "fileVersion": "3.100.1821.36403" - } - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration/5.0.0": { - "dependencies": { - "Azure.Data.AppConfiguration": "1.2.0", - "Azure.Messaging.EventGrid": "4.7.0", - "Azure.Security.KeyVault.Secrets": "4.0.1", - "Microsoft.Extensions.Configuration": "3.1.18", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Text.Json": "4.6.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - } - }, - "Microsoft.OpenApi/1.2.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.2.3.0", - "fileVersion": "1.2.3.0" - } - }, - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": {} - } - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": {}, - "MongoDB.Bson/2.14.1": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "compile": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - } - }, - "MongoDB.Driver/2.14.1": { - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - } - }, - "MongoDB.Driver.Core/2.14.1": { - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux/native/libzstd.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libzstd.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/libzstd.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/snappy32.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - }, - "runtimes/win/native/snappy64.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - } - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/mongocrypt.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - }, - "compile": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - }, - "compile": { - "lib/netcoreapp3.1/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - }, - "compile": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "RabbitMQ.Client/6.2.3": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.2.3.0" - } - }, - "compile": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - }, - "compile": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.2.3.0", - "fileVersion": "6.2.3.0" - } - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.2.3" - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.2.3.0", - "fileVersion": "6.2.3.0" - } - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.2.3.0", - "fileVersion": "6.2.3.0" - } - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} - } - }, - "System.Buffers/4.5.1": {}, - "System.Collections.Immutable/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.220.61120" - } - }, - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Memory/4.5.4": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - }, - "compile": { - "lib/netstandard2.0/System.Memory.Data.dll": {} - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - }, - "compile": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - } - }, - "System.Text.Encodings.Web/4.7.2": { - "runtime": { - "lib/netstandard2.1/System.Text.Encodings.Web.dll": { - "assemblyVersion": "4.0.5.1", - "fileVersion": "4.700.21.11602" - } - }, - "compile": { - "lib/netstandard2.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.Json/4.6.0": {}, - "System.Threading.Channels/4.7.1": { - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.20.21406" - } - }, - "compile": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "BusinessLogics/1.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "DataAcess": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6" - }, - "runtime": { - "BusinessLogics.dll": {} - }, - "compile": { - "BusinessLogics.dll": {} - } - }, - "DataAcess/1.0.0": { - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "runtime": { - "DataAcess.dll": {} - }, - "compile": { - "DataAcess.dll": {} - } - }, - "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Antiforgery.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authentication.Cookies.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authentication.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authentication/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authentication.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authentication.OAuth.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authorization/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authorization.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Authorization.Policy.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Components.Authorization.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Components/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Components.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Components.Forms.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Components.Server/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Components.Server.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Components.Web/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Components.Web.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Connections.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.CookiePolicy.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Cors/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Cors.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Cryptography.Internal.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.DataProtection/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.DataProtection.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Diagnostics.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.HostFiltering.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Hosting/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Hosting.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Html.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.Connections.Common.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.Connections.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.Extensions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Http.Features/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Http.Features.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.HttpOverrides.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.HttpsPolicy.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Identity/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Identity.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Localization/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Localization.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Localization.Routing.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Metadata/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Metadata.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Cors.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Localization.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.Razor.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Razor/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Razor.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Razor.Runtime.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.ResponseCaching.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.ResponseCompression.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Rewrite/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Rewrite.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Routing.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Routing/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Routing.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.HttpSys.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.IIS.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.IISIntegration.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.Kestrel.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.Session/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.Session.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.SignalR.Common.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.SignalR.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.SignalR/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.SignalR.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.StaticFiles.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.WebSockets/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.WebSockets.dll": {} - }, - "compileOnly": true - }, - "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { - "compile": { - "Microsoft.AspNetCore.WebUtilities.dll": {} - }, - "compileOnly": true - }, - "Microsoft.CSharp.Reference/4.0.0.0": { - "compile": { - "Microsoft.CSharp.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Binder.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.CommandLine.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.FileExtensions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Ini.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.Json/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Json.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.UserSecrets.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Configuration.Xml.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Composite.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Embedded.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileProviders.Physical.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { - "compile": { - "Microsoft.Extensions.FileSystemGlobbing.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Hosting.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Hosting/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Hosting.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Http/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Http.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Identity.Core/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Identity.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Identity.Stores/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Identity.Stores.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Localization.Abstractions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Localization/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Localization.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.Configuration.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.Console/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.Console.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.Debug/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.Debug.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.EventLog.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.EventSource.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Logging.TraceSource.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.ObjectPool/3.1.0.0": { - "compile": { - "Microsoft.Extensions.ObjectPool.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { - "compile": { - "Microsoft.Extensions.Options.DataAnnotations.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Extensions.WebEncoders/3.1.0.0": { - "compile": { - "Microsoft.Extensions.WebEncoders.dll": {} - }, - "compileOnly": true - }, - "Microsoft.JSInterop/3.1.0.0": { - "compile": { - "Microsoft.JSInterop.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Net.Http.Headers/3.1.0.0": { - "compile": { - "Microsoft.Net.Http.Headers.dll": {} - }, - "compileOnly": true - }, - "Microsoft.VisualBasic.Core/10.0.5.0": { - "compile": { - "Microsoft.VisualBasic.Core.dll": {} - }, - "compileOnly": true - }, - "Microsoft.VisualBasic/10.0.0.0": { - "compile": { - "Microsoft.VisualBasic.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Win32.Primitives/4.1.2.0": { - "compile": { - "Microsoft.Win32.Primitives.dll": {} - }, - "compileOnly": true - }, - "Microsoft.Win32.Registry/4.1.3.0": { - "compile": { - "Microsoft.Win32.Registry.dll": {} - }, - "compileOnly": true - }, - "mscorlib/4.0.0.0": { - "compile": { - "mscorlib.dll": {} - }, - "compileOnly": true - }, - "netstandard/2.1.0.0": { - "compile": { - "netstandard.dll": {} - }, - "compileOnly": true - }, - "System.AppContext/4.2.2.0": { - "compile": { - "System.AppContext.dll": {} - }, - "compileOnly": true - }, - "System.Buffers.Reference/4.0.2.0": { - "compile": { - "System.Buffers.dll": {} - }, - "compileOnly": true - }, - "System.Collections.Concurrent/4.0.15.0": { - "compile": { - "System.Collections.Concurrent.dll": {} - }, - "compileOnly": true - }, - "System.Collections/4.1.2.0": { - "compile": { - "System.Collections.dll": {} - }, - "compileOnly": true - }, - "System.Collections.NonGeneric/4.1.2.0": { - "compile": { - "System.Collections.NonGeneric.dll": {} - }, - "compileOnly": true - }, - "System.Collections.Specialized/4.1.2.0": { - "compile": { - "System.Collections.Specialized.dll": {} - }, - "compileOnly": true - }, - "System.ComponentModel.DataAnnotations/4.0.0.0": { - "compile": { - "System.ComponentModel.DataAnnotations.dll": {} - }, - "compileOnly": true - }, - "System.ComponentModel/4.0.4.0": { - "compile": { - "System.ComponentModel.dll": {} - }, - "compileOnly": true - }, - "System.ComponentModel.EventBasedAsync/4.1.2.0": { - "compile": { - "System.ComponentModel.EventBasedAsync.dll": {} - }, - "compileOnly": true - }, - "System.ComponentModel.Primitives/4.2.2.0": { - "compile": { - "System.ComponentModel.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.ComponentModel.TypeConverter/4.2.2.0": { - "compile": { - "System.ComponentModel.TypeConverter.dll": {} - }, - "compileOnly": true - }, - "System.Configuration/4.0.0.0": { - "compile": { - "System.Configuration.dll": {} - }, - "compileOnly": true - }, - "System.Console/4.1.2.0": { - "compile": { - "System.Console.dll": {} - }, - "compileOnly": true - }, - "System.Core/4.0.0.0": { - "compile": { - "System.Core.dll": {} - }, - "compileOnly": true - }, - "System.Data.Common/4.2.2.0": { - "compile": { - "System.Data.Common.dll": {} - }, - "compileOnly": true - }, - "System.Data.DataSetExtensions/4.0.1.0": { - "compile": { - "System.Data.DataSetExtensions.dll": {} - }, - "compileOnly": true - }, - "System.Data/4.0.0.0": { - "compile": { - "System.Data.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.Contracts/4.0.4.0": { - "compile": { - "System.Diagnostics.Contracts.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.Debug/4.1.2.0": { - "compile": { - "System.Diagnostics.Debug.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.EventLog/4.0.2.0": { - "compile": { - "System.Diagnostics.EventLog.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.FileVersionInfo/4.0.4.0": { - "compile": { - "System.Diagnostics.FileVersionInfo.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.Process/4.2.2.0": { - "compile": { - "System.Diagnostics.Process.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.StackTrace/4.1.2.0": { - "compile": { - "System.Diagnostics.StackTrace.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { - "compile": { - "System.Diagnostics.TextWriterTraceListener.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.Tools/4.1.2.0": { - "compile": { - "System.Diagnostics.Tools.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.TraceSource/4.1.2.0": { - "compile": { - "System.Diagnostics.TraceSource.dll": {} - }, - "compileOnly": true - }, - "System.Diagnostics.Tracing/4.2.2.0": { - "compile": { - "System.Diagnostics.Tracing.dll": {} - }, - "compileOnly": true - }, - "System/4.0.0.0": { - "compile": { - "System.dll": {} - }, - "compileOnly": true - }, - "System.Drawing/4.0.0.0": { - "compile": { - "System.Drawing.dll": {} - }, - "compileOnly": true - }, - "System.Drawing.Primitives/4.2.1.0": { - "compile": { - "System.Drawing.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.Dynamic.Runtime/4.1.2.0": { - "compile": { - "System.Dynamic.Runtime.dll": {} - }, - "compileOnly": true - }, - "System.Globalization.Calendars/4.1.2.0": { - "compile": { - "System.Globalization.Calendars.dll": {} - }, - "compileOnly": true - }, - "System.Globalization/4.1.2.0": { - "compile": { - "System.Globalization.dll": {} - }, - "compileOnly": true - }, - "System.Globalization.Extensions/4.1.2.0": { - "compile": { - "System.Globalization.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.IO.Compression.Brotli/4.2.2.0": { - "compile": { - "System.IO.Compression.Brotli.dll": {} - }, - "compileOnly": true - }, - "System.IO.Compression/4.2.2.0": { - "compile": { - "System.IO.Compression.dll": {} - }, - "compileOnly": true - }, - "System.IO.Compression.FileSystem/4.0.0.0": { - "compile": { - "System.IO.Compression.FileSystem.dll": {} - }, - "compileOnly": true - }, - "System.IO.Compression.ZipFile/4.0.5.0": { - "compile": { - "System.IO.Compression.ZipFile.dll": {} - }, - "compileOnly": true - }, - "System.IO/4.2.2.0": { - "compile": { - "System.IO.dll": {} - }, - "compileOnly": true - }, - "System.IO.FileSystem/4.1.2.0": { - "compile": { - "System.IO.FileSystem.dll": {} - }, - "compileOnly": true - }, - "System.IO.FileSystem.DriveInfo/4.1.2.0": { - "compile": { - "System.IO.FileSystem.DriveInfo.dll": {} - }, - "compileOnly": true - }, - "System.IO.FileSystem.Primitives/4.1.2.0": { - "compile": { - "System.IO.FileSystem.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.IO.FileSystem.Watcher/4.1.2.0": { - "compile": { - "System.IO.FileSystem.Watcher.dll": {} - }, - "compileOnly": true - }, - "System.IO.IsolatedStorage/4.1.2.0": { - "compile": { - "System.IO.IsolatedStorage.dll": {} - }, - "compileOnly": true - }, - "System.IO.MemoryMappedFiles/4.1.2.0": { - "compile": { - "System.IO.MemoryMappedFiles.dll": {} - }, - "compileOnly": true - }, - "System.IO.Pipelines/4.0.2.0": { - "compile": { - "System.IO.Pipelines.dll": {} - }, - "compileOnly": true - }, - "System.IO.Pipes/4.1.2.0": { - "compile": { - "System.IO.Pipes.dll": {} - }, - "compileOnly": true - }, - "System.IO.UnmanagedMemoryStream/4.1.2.0": { - "compile": { - "System.IO.UnmanagedMemoryStream.dll": {} - }, - "compileOnly": true - }, - "System.Linq/4.2.2.0": { - "compile": { - "System.Linq.dll": {} - }, - "compileOnly": true - }, - "System.Linq.Expressions/4.2.2.0": { - "compile": { - "System.Linq.Expressions.dll": {} - }, - "compileOnly": true - }, - "System.Linq.Parallel/4.0.4.0": { - "compile": { - "System.Linq.Parallel.dll": {} - }, - "compileOnly": true - }, - "System.Linq.Queryable/4.0.4.0": { - "compile": { - "System.Linq.Queryable.dll": {} - }, - "compileOnly": true - }, - "System.Memory.Reference/4.2.1.0": { - "compile": { - "System.Memory.dll": {} - }, - "compileOnly": true - }, - "System.Net/4.0.0.0": { - "compile": { - "System.Net.dll": {} - }, - "compileOnly": true - }, - "System.Net.Http/4.2.2.0": { - "compile": { - "System.Net.Http.dll": {} - }, - "compileOnly": true - }, - "System.Net.HttpListener/4.0.2.0": { - "compile": { - "System.Net.HttpListener.dll": {} - }, - "compileOnly": true - }, - "System.Net.Mail/4.0.2.0": { - "compile": { - "System.Net.Mail.dll": {} - }, - "compileOnly": true - }, - "System.Net.NameResolution/4.1.2.0": { - "compile": { - "System.Net.NameResolution.dll": {} - }, - "compileOnly": true - }, - "System.Net.NetworkInformation/4.2.2.0": { - "compile": { - "System.Net.NetworkInformation.dll": {} - }, - "compileOnly": true - }, - "System.Net.Ping/4.1.2.0": { - "compile": { - "System.Net.Ping.dll": {} - }, - "compileOnly": true - }, - "System.Net.Primitives/4.1.2.0": { - "compile": { - "System.Net.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.Net.Requests/4.1.2.0": { - "compile": { - "System.Net.Requests.dll": {} - }, - "compileOnly": true - }, - "System.Net.Security/4.1.2.0": { - "compile": { - "System.Net.Security.dll": {} - }, - "compileOnly": true - }, - "System.Net.ServicePoint/4.0.2.0": { - "compile": { - "System.Net.ServicePoint.dll": {} - }, - "compileOnly": true - }, - "System.Net.Sockets/4.2.2.0": { - "compile": { - "System.Net.Sockets.dll": {} - }, - "compileOnly": true - }, - "System.Net.WebClient/4.0.2.0": { - "compile": { - "System.Net.WebClient.dll": {} - }, - "compileOnly": true - }, - "System.Net.WebHeaderCollection/4.1.2.0": { - "compile": { - "System.Net.WebHeaderCollection.dll": {} - }, - "compileOnly": true - }, - "System.Net.WebProxy/4.0.2.0": { - "compile": { - "System.Net.WebProxy.dll": {} - }, - "compileOnly": true - }, - "System.Net.WebSockets.Client/4.1.2.0": { - "compile": { - "System.Net.WebSockets.Client.dll": {} - }, - "compileOnly": true - }, - "System.Net.WebSockets/4.1.2.0": { - "compile": { - "System.Net.WebSockets.dll": {} - }, - "compileOnly": true - }, - "System.Numerics/4.0.0.0": { - "compile": { - "System.Numerics.dll": {} - }, - "compileOnly": true - }, - "System.Numerics.Vectors.Reference/4.1.6.0": { - "compile": { - "System.Numerics.Vectors.dll": {} - }, - "compileOnly": true - }, - "System.ObjectModel/4.1.2.0": { - "compile": { - "System.ObjectModel.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.DispatchProxy/4.0.6.0": { - "compile": { - "System.Reflection.DispatchProxy.dll": {} - }, - "compileOnly": true - }, - "System.Reflection/4.2.2.0": { - "compile": { - "System.Reflection.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Emit/4.1.2.0": { - "compile": { - "System.Reflection.Emit.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Emit.ILGeneration/4.1.1.0": { - "compile": { - "System.Reflection.Emit.ILGeneration.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Emit.Lightweight/4.1.1.0": { - "compile": { - "System.Reflection.Emit.Lightweight.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Extensions/4.1.2.0": { - "compile": { - "System.Reflection.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Metadata/1.4.5.0": { - "compile": { - "System.Reflection.Metadata.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.Primitives/4.1.2.0": { - "compile": { - "System.Reflection.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.Reflection.TypeExtensions/4.1.2.0": { - "compile": { - "System.Reflection.TypeExtensions.dll": {} - }, - "compileOnly": true - }, - "System.Resources.Reader/4.1.2.0": { - "compile": { - "System.Resources.Reader.dll": {} - }, - "compileOnly": true - }, - "System.Resources.ResourceManager/4.1.2.0": { - "compile": { - "System.Resources.ResourceManager.dll": {} - }, - "compileOnly": true - }, - "System.Resources.Writer/4.1.2.0": { - "compile": { - "System.Resources.Writer.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.CompilerServices.VisualC/4.1.2.0": { - "compile": { - "System.Runtime.CompilerServices.VisualC.dll": {} - }, - "compileOnly": true - }, - "System.Runtime/4.2.2.0": { - "compile": { - "System.Runtime.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Extensions/4.2.2.0": { - "compile": { - "System.Runtime.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Handles/4.1.2.0": { - "compile": { - "System.Runtime.Handles.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.InteropServices/4.2.2.0": { - "compile": { - "System.Runtime.InteropServices.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { - "compile": { - "System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { - "compile": { - "System.Runtime.InteropServices.WindowsRuntime.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Intrinsics/4.0.1.0": { - "compile": { - "System.Runtime.Intrinsics.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Loader/4.1.1.0": { - "compile": { - "System.Runtime.Loader.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Numerics/4.1.2.0": { - "compile": { - "System.Runtime.Numerics.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Serialization/4.0.0.0": { - "compile": { - "System.Runtime.Serialization.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Serialization.Formatters/4.0.4.0": { - "compile": { - "System.Runtime.Serialization.Formatters.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Serialization.Json/4.0.5.0": { - "compile": { - "System.Runtime.Serialization.Json.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Serialization.Primitives/4.2.2.0": { - "compile": { - "System.Runtime.Serialization.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.Runtime.Serialization.Xml/4.1.5.0": { - "compile": { - "System.Runtime.Serialization.Xml.dll": {} - }, - "compileOnly": true - }, - "System.Security.AccessControl/4.1.1.0": { - "compile": { - "System.Security.AccessControl.dll": {} - }, - "compileOnly": true - }, - "System.Security.Claims/4.1.2.0": { - "compile": { - "System.Security.Claims.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Algorithms/4.3.2.0": { - "compile": { - "System.Security.Cryptography.Algorithms.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Cng/4.3.3.0": { - "compile": { - "System.Security.Cryptography.Cng.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Csp/4.1.2.0": { - "compile": { - "System.Security.Cryptography.Csp.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Encoding/4.1.2.0": { - "compile": { - "System.Security.Cryptography.Encoding.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Primitives/4.1.2.0": { - "compile": { - "System.Security.Cryptography.Primitives.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.X509Certificates/4.2.2.0": { - "compile": { - "System.Security.Cryptography.X509Certificates.dll": {} - }, - "compileOnly": true - }, - "System.Security.Cryptography.Xml/4.0.3.0": { - "compile": { - "System.Security.Cryptography.Xml.dll": {} - }, - "compileOnly": true - }, - "System.Security/4.0.0.0": { - "compile": { - "System.Security.dll": {} - }, - "compileOnly": true - }, - "System.Security.Permissions/4.0.3.0": { - "compile": { - "System.Security.Permissions.dll": {} - }, - "compileOnly": true - }, - "System.Security.Principal/4.1.2.0": { - "compile": { - "System.Security.Principal.dll": {} - }, - "compileOnly": true - }, - "System.Security.Principal.Windows/4.1.1.0": { - "compile": { - "System.Security.Principal.Windows.dll": {} - }, - "compileOnly": true - }, - "System.Security.SecureString/4.1.2.0": { - "compile": { - "System.Security.SecureString.dll": {} - }, - "compileOnly": true - }, - "System.ServiceModel.Web/4.0.0.0": { - "compile": { - "System.ServiceModel.Web.dll": {} - }, - "compileOnly": true - }, - "System.ServiceProcess/4.0.0.0": { - "compile": { - "System.ServiceProcess.dll": {} - }, - "compileOnly": true - }, - "System.Text.Encoding.CodePages/4.1.3.0": { - "compile": { - "System.Text.Encoding.CodePages.dll": {} - }, - "compileOnly": true - }, - "System.Text.Encoding/4.1.2.0": { - "compile": { - "System.Text.Encoding.dll": {} - }, - "compileOnly": true - }, - "System.Text.Encoding.Extensions/4.1.2.0": { - "compile": { - "System.Text.Encoding.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.Text.Json.Reference/4.0.1.0": { - "compile": { - "System.Text.Json.dll": {} - }, - "compileOnly": true - }, - "System.Text.RegularExpressions/4.2.2.0": { - "compile": { - "System.Text.RegularExpressions.dll": {} - }, - "compileOnly": true - }, - "System.Threading/4.1.2.0": { - "compile": { - "System.Threading.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Overlapped/4.1.2.0": { - "compile": { - "System.Threading.Overlapped.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Tasks.Dataflow/4.6.5.0": { - "compile": { - "System.Threading.Tasks.Dataflow.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Tasks/4.1.2.0": { - "compile": { - "System.Threading.Tasks.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { - "compile": { - "System.Threading.Tasks.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Tasks.Parallel/4.0.4.0": { - "compile": { - "System.Threading.Tasks.Parallel.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Thread/4.1.2.0": { - "compile": { - "System.Threading.Thread.dll": {} - }, - "compileOnly": true - }, - "System.Threading.ThreadPool/4.1.2.0": { - "compile": { - "System.Threading.ThreadPool.dll": {} - }, - "compileOnly": true - }, - "System.Threading.Timer/4.1.2.0": { - "compile": { - "System.Threading.Timer.dll": {} - }, - "compileOnly": true - }, - "System.Transactions/4.0.0.0": { - "compile": { - "System.Transactions.dll": {} - }, - "compileOnly": true - }, - "System.Transactions.Local/4.0.2.0": { - "compile": { - "System.Transactions.Local.dll": {} - }, - "compileOnly": true - }, - "System.ValueTuple/4.0.3.0": { - "compile": { - "System.ValueTuple.dll": {} - }, - "compileOnly": true - }, - "System.Web/4.0.0.0": { - "compile": { - "System.Web.dll": {} - }, - "compileOnly": true - }, - "System.Web.HttpUtility/4.0.2.0": { - "compile": { - "System.Web.HttpUtility.dll": {} - }, - "compileOnly": true - }, - "System.Windows/4.0.0.0": { - "compile": { - "System.Windows.dll": {} - }, - "compileOnly": true - }, - "System.Windows.Extensions/4.0.1.0": { - "compile": { - "System.Windows.Extensions.dll": {} - }, - "compileOnly": true - }, - "System.Xml/4.0.0.0": { - "compile": { - "System.Xml.dll": {} - }, - "compileOnly": true - }, - "System.Xml.Linq/4.0.0.0": { - "compile": { - "System.Xml.Linq.dll": {} - }, - "compileOnly": true - }, - "System.Xml.ReaderWriter/4.2.2.0": { - "compile": { - "System.Xml.ReaderWriter.dll": {} - }, - "compileOnly": true - }, - "System.Xml.Serialization/4.0.0.0": { - "compile": { - "System.Xml.Serialization.dll": {} - }, - "compileOnly": true - }, - "System.Xml.XDocument/4.1.2.0": { - "compile": { - "System.Xml.XDocument.dll": {} - }, - "compileOnly": true - }, - "System.Xml.XmlDocument/4.1.2.0": { - "compile": { - "System.Xml.XmlDocument.dll": {} - }, - "compileOnly": true - }, - "System.Xml.XmlSerializer/4.1.2.0": { - "compile": { - "System.Xml.XmlSerializer.dll": {} - }, - "compileOnly": true - }, - "System.Xml.XPath/4.1.2.0": { - "compile": { - "System.Xml.XPath.dll": {} - }, - "compileOnly": true - }, - "System.Xml.XPath.XDocument/4.1.2.0": { - "compile": { - "System.Xml.XPath.XDocument.dll": {} - }, - "compileOnly": true - }, - "WindowsBase/4.0.0.0": { - "compile": { - "WindowsBase.dll": {} - }, - "compileOnly": true - } - } - }, - "libraries": { - "MallService/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AutoMapper/11.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "path": "automapper/11.0.1", - "hashPath": "automapper.11.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" - }, - "Azure.Core/1.20.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-q7xigZIBjLjSKJA/Y+VygmJ2iZGiEyNuicN5iRX9oJL7451SulZm/CQ7qd8YCeL5TgNCNYCIrTIqRaams95zHA==", - "path": "azure.core/1.20.0", - "hashPath": "azure.core.1.20.0.nupkg.sha512" - }, - "Azure.Data.AppConfiguration/1.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KA1dAM9TuDsq0CRFd+3cJTYUAzA2z9N8t9/xKdDbP9URuReq/NDFcKYr7GW2W9xzVGDtCHlD5j5am/+zLLBdSg==", - "path": "azure.data.appconfiguration/1.2.0", - "hashPath": "azure.data.appconfiguration.1.2.0.nupkg.sha512" - }, - "Azure.Messaging.EventGrid/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wm5+RY6hNoIPVLPwmr3T1ijVm5GdLVZBij93c4Brwe9iB3X8nlUYNjlnQVVJqK4QLs85nGwqBGUpB4BfYdGXVQ==", - "path": "azure.messaging.eventgrid/4.7.0", - "hashPath": "azure.messaging.eventgrid.4.7.0.nupkg.sha512" - }, - "Azure.Security.KeyVault.Secrets/4.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/6tKn6aMYGsaiFgdGmWX14V8yupFGqMxIGK1nD3D83cZY032VunmaP8wkDDNy3YUWM9UAqpejwQsgFdR/ftjbQ==", - "path": "azure.security.keyvault.secrets/4.0.1", - "hashPath": "azure.security.keyvault.secrets.4.0.1.nupkg.sha512" - }, - "DnsClient/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "path": "dnsclient/1.4.0", - "hashPath": "dnsclient.1.4.0.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "path": "fluentvalidation.aspnetcore/10.3.6", - "hashPath": "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "hashPath": "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", - "path": "microsoft.bcl.asyncinterfaces/1.0.0", - "hashPath": "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "path": "microsoft.entityframeworkcore/5.0.7", - "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "path": "microsoft.extensions.caching.memory/5.0.0", - "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/3.1.18": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G2w2QolMv76ZswL6XKjy8PbAu12uYbtIkGwkkZEhy7irWfqQWFT8PKQ68cEpotg6e2rc15E5/LQDgvCpXeWFtA==", - "path": "microsoft.extensions.configuration/3.1.18", - "hashPath": "microsoft.extensions.configuration.3.1.18.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1yDu6r/mPowAxZ9ntEZqCpoNiVwKFIiZxkBsDDq3ahpb18xt6BgDnmmPKCzw/jKGw8aJzQ5g8Kl5+0uUN7hGrg==", - "path": "microsoft.extensions.configuration.azureappconfiguration/5.0.0", - "hashPath": "microsoft.extensions.configuration.azureappconfiguration.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "path": "microsoft.openapi/1.2.3", - "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1jHxWlSi6/ryWODk6SUjsZPHk/BdsucxqhIi1szEzwc84e8nvZWF45qRXcT2gWPISJ3Ybbyg2LsNG6yX8r7VuA==", - "path": "microsoft.visualstudio.azure.containers.tools.targets/1.11.1", - "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.11.1.nupkg.sha512" - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "path": "mongodb.bson/2.14.1", - "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "path": "mongodb.driver/2.14.1", - "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "path": "mongodb.driver.core/2.14.1", - "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "path": "mongodb.libmongocrypt/1.3.0", - "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "hashPath": "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512" - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "path": "rabbitmq.client/6.2.3", - "hashPath": "rabbitmq.client.6.2.3.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", - "path": "swashbuckle.aspnetcore.swagger/6.2.3", - "hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", - "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", - "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/4.7.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==", - "path": "system.text.encodings.web/4.7.2", - "hashPath": "system.text.encodings.web.4.7.2.nupkg.sha512" - }, - "System.Text.Json/4.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==", - "path": "system.text.json/4.6.0", - "hashPath": "system.text.json.4.6.0.nupkg.sha512" - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "path": "system.threading.channels/4.7.1", - "hashPath": "system.threading.channels.4.7.1.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "BusinessLogics/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "DataAcess/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Antiforgery/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication.Cookies/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication.Core/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authentication.OAuth/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authorization/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Authorization.Policy/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Components.Authorization/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Components/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Components.Forms/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Components.Server/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Components.Web/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Connections.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.CookiePolicy/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Cors/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Cryptography.Internal/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Cryptography.KeyDerivation/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.DataProtection/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.DataProtection.Extensions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Diagnostics/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Diagnostics.HealthChecks/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.HostFiltering/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Hosting.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Hosting/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Html.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http.Connections.Common/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http.Connections/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http.Extensions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Http.Features/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.HttpOverrides/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.HttpsPolicy/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Identity/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Localization/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Localization.Routing/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Metadata/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Core/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Cors/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Formatters.Xml/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Localization/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.Razor/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.RazorPages/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Razor/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Razor.Runtime/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.ResponseCaching/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.ResponseCompression/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Rewrite/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Routing.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Routing/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.HttpSys/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.IIS/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.IISIntegration/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.Kestrel.Core/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.Kestrel/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.Session/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.SignalR.Common/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.SignalR.Core/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.SignalR/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.StaticFiles/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.WebSockets/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.AspNetCore.WebUtilities/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.CSharp.Reference/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.Binder/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.CommandLine/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.EnvironmentVariables/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.FileExtensions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.Ini/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.Json/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.KeyPerFile/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.UserSecrets/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Configuration.Xml/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Diagnostics.HealthChecks/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileProviders.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileProviders.Composite/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileProviders.Embedded/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileProviders.Physical/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.FileSystemGlobbing/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Hosting.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Hosting/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Http/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Identity.Core/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Identity.Stores/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Localization.Abstractions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Localization/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.Configuration/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.Console/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.Debug/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.EventLog/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.EventSource/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Logging.TraceSource/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.ObjectPool/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.Options.DataAnnotations/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.WebEncoders/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.JSInterop/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Net.Http.Headers/3.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.VisualBasic.Core/10.0.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.VisualBasic/10.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Win32.Primitives/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Win32.Registry/4.1.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "mscorlib/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "netstandard/2.1.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.AppContext/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Buffers.Reference/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Collections.Concurrent/4.0.15.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Collections/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Collections.NonGeneric/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Collections.Specialized/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ComponentModel.DataAnnotations/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ComponentModel/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ComponentModel.EventBasedAsync/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ComponentModel.Primitives/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ComponentModel.TypeConverter/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Configuration/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Console/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Core/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Data.Common/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Data.DataSetExtensions/4.0.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Data/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.Contracts/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.Debug/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.EventLog/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.FileVersionInfo/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.Process/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.StackTrace/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.TextWriterTraceListener/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.Tools/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.TraceSource/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Diagnostics.Tracing/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Drawing/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Drawing.Primitives/4.2.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Dynamic.Runtime/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Globalization.Calendars/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Globalization/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Globalization.Extensions/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Compression.Brotli/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Compression/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Compression.FileSystem/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Compression.ZipFile/4.0.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.FileSystem/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.FileSystem.DriveInfo/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.FileSystem.Primitives/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.FileSystem.Watcher/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.IsolatedStorage/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.MemoryMappedFiles/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Pipelines/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.Pipes/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.IO.UnmanagedMemoryStream/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Linq/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Linq.Expressions/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Linq.Parallel/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Linq.Queryable/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Memory.Reference/4.2.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Http/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.HttpListener/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Mail/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.NameResolution/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.NetworkInformation/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Ping/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Primitives/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Requests/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Security/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.ServicePoint/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.Sockets/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.WebClient/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.WebHeaderCollection/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.WebProxy/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.WebSockets.Client/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Net.WebSockets/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Numerics/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Numerics.Vectors.Reference/4.1.6.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ObjectModel/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.DispatchProxy/4.0.6.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Emit/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Emit.ILGeneration/4.1.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Emit.Lightweight/4.1.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Extensions/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Metadata/1.4.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.Primitives/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Reflection.TypeExtensions/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Resources.Reader/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Resources.ResourceManager/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Resources.Writer/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.CompilerServices.VisualC/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Extensions/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Handles/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.InteropServices/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.InteropServices.WindowsRuntime/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Intrinsics/4.0.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Loader/4.1.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Numerics/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Serialization/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Serialization.Formatters/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Serialization.Json/4.0.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Serialization.Primitives/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Runtime.Serialization.Xml/4.1.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.AccessControl/4.1.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Claims/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Algorithms/4.3.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Cng/4.3.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Csp/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Encoding/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Primitives/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.X509Certificates/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Cryptography.Xml/4.0.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Permissions/4.0.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Principal/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.Principal.Windows/4.1.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Security.SecureString/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ServiceModel.Web/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ServiceProcess/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.Encoding.CodePages/4.1.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.Encoding/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.Encoding.Extensions/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.Json.Reference/4.0.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Text.RegularExpressions/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Overlapped/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Tasks.Dataflow/4.6.5.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Tasks/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Tasks.Extensions.Reference/4.3.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Tasks.Parallel/4.0.4.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Thread/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.ThreadPool/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Threading.Timer/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Transactions/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Transactions.Local/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.ValueTuple/4.0.3.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Web/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Web.HttpUtility/4.0.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Windows/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Windows.Extensions/4.0.1.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.Linq/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.ReaderWriter/4.2.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.Serialization/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.XDocument/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.XmlDocument/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.XmlSerializer/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.XPath/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "System.Xml.XPath.XDocument/4.1.2.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "WindowsBase/4.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.dll b/MallService/bin/Debug/netcoreapp3.1/MallService.dll deleted file mode 100644 index 80d5a8e..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MallService.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.exe b/MallService/bin/Debug/netcoreapp3.1/MallService.exe deleted file mode 100644 index 2b3274b..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MallService.exe and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.pdb b/MallService/bin/Debug/netcoreapp3.1/MallService.pdb deleted file mode 100644 index b4b59bb..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MallService.pdb and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.dev.json b/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.dev.json deleted file mode 100644 index 2712cb9..0000000 --- a/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.dev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\FrankMensah\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\FrankMensah\\.nuget\\packages", - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ] - } -} \ No newline at end of file diff --git a/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.json b/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.json deleted file mode 100644 index d5480f1..0000000 --- a/MallService/bin/Debug/netcoreapp3.1/MallService.runtimeconfig.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp3.1", - "framework": { - "name": "Microsoft.AspNetCore.App", - "version": "3.1.0" - }, - "configProperties": { - "System.GC.Server": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } -} \ No newline at end of file diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll deleted file mode 100644 index 30cb199..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Bcl.AsyncInterfaces.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index d7876ef..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 1aded3e..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 3803be1..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100644 index 0191af9..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index 74be381..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index dd5ebe2..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll deleted file mode 100644 index 5e53b59..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll deleted file mode 100644 index 665ce79..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 895cd5d..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 266d7d7..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 2c87f79..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 6df35e1..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll deleted file mode 100644 index 604b602..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 0bb6ce0..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll b/MallService/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll deleted file mode 100644 index 14f3ded..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Microsoft.OpenApi.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll b/MallService/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll deleted file mode 100644 index 39ec849..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll b/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll deleted file mode 100644 index cc5af45..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll b/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll deleted file mode 100644 index 1d75d27..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll b/MallService/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll deleted file mode 100644 index 444ab65..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/MallService/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index 8a0cae0..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Npgsql.dll b/MallService/bin/Debug/netcoreapp3.1/Npgsql.dll deleted file mode 100644 index 55b125b..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Npgsql.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll b/MallService/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll deleted file mode 100644 index 166abb6..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/SharpCompress.dll b/MallService/bin/Debug/netcoreapp3.1/SharpCompress.dll deleted file mode 100644 index 5198ba5..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/SharpCompress.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll b/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll deleted file mode 100644 index e1f5fc5..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.Swagger.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll b/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll deleted file mode 100644 index 7969f7b..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll b/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll deleted file mode 100644 index 71b7dc6..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/MallService/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll deleted file mode 100644 index f737e42..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll b/MallService/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll deleted file mode 100644 index a5adedd..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/MallService/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 4319171..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Memory.Data.dll b/MallService/bin/Debug/netcoreapp3.1/System.Memory.Data.dll deleted file mode 100644 index 6f2a3e0..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Memory.Data.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll b/MallService/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 103462b..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll b/MallService/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll deleted file mode 100644 index 41e59b2..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Text.Encodings.Web.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll b/MallService/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll deleted file mode 100644 index ff05e67..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/appsettings.Development.json b/MallService/bin/Debug/netcoreapp3.1/appsettings.Development.json deleted file mode 100644 index 8983e0f..0000000 --- a/MallService/bin/Debug/netcoreapp3.1/appsettings.Development.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - } -} diff --git a/MallService/bin/Debug/netcoreapp3.1/appsettings.json b/MallService/bin/Debug/netcoreapp3.1/appsettings.json deleted file mode 100644 index 65356a4..0000000 --- a/MallService/bin/Debug/netcoreapp3.1/appsettings.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Logging": { - "LogLevel": { - "Default": "Information", - "Microsoft": "Warning", - "Microsoft.Hosting.Lifetime": "Information" - } - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "AppConfig": "Endpoint=https://mall-simulation.azconfig.io;Id=NpSP-l4-s0:qDjBZzDKAD7PROLLmMFF;Secret=RgExJw3QGaZSDgceJ14PlvqVSFiQvEAfgQazmuu12W0=" - } -} diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so b/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so deleted file mode 100644 index 6cc0ed1..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so b/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so deleted file mode 100644 index 584bedf..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so b/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so deleted file mode 100644 index 8309c49..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib b/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib deleted file mode 100644 index 3f4518a..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib b/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib deleted file mode 100644 index bbce3c2..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib b/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib deleted file mode 100644 index 5400d76..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll b/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll deleted file mode 100644 index e669123..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll b/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll deleted file mode 100644 index 00ab602..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll b/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll deleted file mode 100644 index afc82ca..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll and /dev/null differ diff --git a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll b/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll deleted file mode 100644 index 36cd5fe..0000000 Binary files a/MallService/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfo.cs b/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfo.cs deleted file mode 100644 index 9518080..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("7ee30d98-2c7e-45bf-baef-91a25b172ad9")] -[assembly: System.Reflection.AssemblyCompanyAttribute("MallService")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("MallService")] -[assembly: System.Reflection.AssemblyTitleAttribute("MallService")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfoInputs.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfoInputs.cache deleted file mode 100644 index a188e8f..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -b5c791e444134abdca40b5a8f1d3c179534774ed diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.GeneratedMSBuildEditorConfig.editorconfig b/MallService/obj/Debug/netcoreapp3.1/MallService.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index c89c636..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = MallService -build_property.ProjectDir = C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\ diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.MvcApplicationPartsAssemblyInfo.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.MvcApplicationPartsAssemblyInfo.cache deleted file mode 100644 index e69de29..0000000 diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.MvcApplicationPartsAssemblyInfo.cs b/MallService/obj/Debug/netcoreapp3.1/MallService.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index d4473a4..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("FluentValidation.AspNetCore")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.RazorTargetAssemblyInfo.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.RazorTargetAssemblyInfo.cache deleted file mode 100644 index e750b76..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.RazorTargetAssemblyInfo.cache +++ /dev/null @@ -1 +0,0 @@ -5a81a95be3239dc2e1cd64aa6566799d52a9755b diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.assets.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.assets.cache deleted file mode 100644 index b069a2a..0000000 Binary files a/MallService/obj/Debug/netcoreapp3.1/MallService.assets.cache and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.AssemblyReference.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.AssemblyReference.cache deleted file mode 100644 index f5e894a..0000000 Binary files a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.AssemblyReference.cache and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.CopyComplete b/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.CoreCompileInputs.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.CoreCompileInputs.cache deleted file mode 100644 index 55bf77f..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -46e1052d694cc91d58ba1ffb444b82d15999da41 diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.FileListAbsolute.txt b/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.FileListAbsolute.txt deleted file mode 100644 index f0e9a37..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,146 +0,0 @@ -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\appsettings.Development.json -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\appsettings.json -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.exe -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.deps.json -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.runtimeconfig.json -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.runtimeconfig.dev.json -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MallService.pdb -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\DnsClient.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MongoDB.Bson.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MongoDB.Driver.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MongoDB.Driver.Core.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\MongoDB.Libmongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Npgsql.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Npgsql.EntityFrameworkCore.PostgreSQL.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\RabbitMQ.Client.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\SharpCompress.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\System.Threading.Channels.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libsnappy64.so -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libzstd.so -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libsnappy64.dylib -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libzstd.dylib -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\libzstd.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy32.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy64.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libmongocrypt.so -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libmongocrypt.dylib -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\mongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.MvcApplicationPartsAssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.MvcApplicationPartsAssemblyInfo.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\staticwebassets\MallService.StaticWebAssets.Manifest.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\staticwebassets\MallService.StaticWebAssets.xml -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\scopedcss\bundle\MallService.styles.css -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.RazorTargetAssemblyInfo.cache -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.CopyComplete -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.dll -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.pdb -C:\Users\FrankMensah\Desktop\PP\MallService\MallService\obj\Debug\netcoreapp3.1\MallService.genruntimeconfig.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\appsettings.Development.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\appsettings.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.exe -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.deps.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.runtimeconfig.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.runtimeconfig.dev.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MallService.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\AutoMapper.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Azure.Core.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Azure.Data.AppConfiguration.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Azure.Messaging.EventGrid.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Azure.Security.KeyVault.Secrets.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\DnsClient.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\FluentValidation.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\FluentValidation.AspNetCore.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\FluentValidation.DependencyInjectionExtensions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Bcl.AsyncInterfaces.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.AzureAppConfiguration.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Microsoft.OpenApi.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MongoDB.Bson.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MongoDB.Driver.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MongoDB.Driver.Core.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\MongoDB.Libmongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Npgsql.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Npgsql.EntityFrameworkCore.PostgreSQL.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\RabbitMQ.Client.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\SharpCompress.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.Swagger.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerGen.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\Swashbuckle.AspNetCore.SwaggerUI.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Memory.Data.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Text.Encodings.Web.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\System.Threading.Channels.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libsnappy64.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libzstd.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libsnappy64.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libzstd.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\libzstd.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy32.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy64.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\linux\native\libmongocrypt.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\osx\native\libmongocrypt.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\runtimes\win\native\mongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\BusinessLogics.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\BusinessLogics.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.MvcApplicationPartsAssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.MvcApplicationPartsAssemblyInfo.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\staticwebassets\MallService.StaticWebAssets.Manifest.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\staticwebassets\MallService.StaticWebAssets.xml -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\scopedcss\bundle\MallService.styles.css -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.RazorTargetAssemblyInfo.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.csproj.CopyComplete -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallService\obj\Debug\netcoreapp3.1\MallService.genruntimeconfig.cache diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.dll b/MallService/obj/Debug/netcoreapp3.1/MallService.dll deleted file mode 100644 index 80d5a8e..0000000 Binary files a/MallService/obj/Debug/netcoreapp3.1/MallService.dll and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.genruntimeconfig.cache b/MallService/obj/Debug/netcoreapp3.1/MallService.genruntimeconfig.cache deleted file mode 100644 index c2a843f..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/MallService.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -53291c9507445bfaf87e0d4237b035d15a182fbc diff --git a/MallService/obj/Debug/netcoreapp3.1/MallService.pdb b/MallService/obj/Debug/netcoreapp3.1/MallService.pdb deleted file mode 100644 index b4b59bb..0000000 Binary files a/MallService/obj/Debug/netcoreapp3.1/MallService.pdb and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/apphost.exe b/MallService/obj/Debug/netcoreapp3.1/apphost.exe deleted file mode 100644 index 2b3274b..0000000 Binary files a/MallService/obj/Debug/netcoreapp3.1/apphost.exe and /dev/null differ diff --git a/MallService/obj/Debug/netcoreapp3.1/staticwebassets/MallService.StaticWebAssets.Manifest.cache b/MallService/obj/Debug/netcoreapp3.1/staticwebassets/MallService.StaticWebAssets.Manifest.cache deleted file mode 100644 index e69de29..0000000 diff --git a/MallService/obj/Debug/netcoreapp3.1/staticwebassets/MallService.StaticWebAssets.xml b/MallService/obj/Debug/netcoreapp3.1/staticwebassets/MallService.StaticWebAssets.xml deleted file mode 100644 index 7b21d22..0000000 --- a/MallService/obj/Debug/netcoreapp3.1/staticwebassets/MallService.StaticWebAssets.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/MallService/obj/MallService.csproj.nuget.cache b/MallService/obj/MallService.csproj.nuget.cache deleted file mode 100644 index 728f21c..0000000 --- a/MallService/obj/MallService.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "of27KwkNLyllOHueBJsSjeBFel8WQuiwspMzXtascNh7vpNxNxmsS+oSRCflRCwx8rPotyd4HtBE4ktk8KjIZA==", - "success": true -} \ No newline at end of file diff --git a/MallService/obj/MallService.csproj.nuget.dgspec.json b/MallService/obj/MallService.csproj.nuget.dgspec.json deleted file mode 100644 index 3f9e8b5..0000000 --- a/MallService/obj/MallService.csproj.nuget.dgspec.json +++ /dev/null @@ -1,300 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj": {} - }, - "projects": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "projectName": "BusinessLogics", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "projectName": "DataAcess", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "MongoDB.Driver": { - "target": "Package", - "version": "[2.14.1, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[5.0.7, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj", - "projectName": "MallService", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration": { - "target": "Package", - "version": "[5.0.0, )" - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { - "target": "Package", - "version": "[1.11.1, )" - }, - "Swashbuckle.AspNetCore.Swagger": { - "target": "Package", - "version": "[6.2.3, )" - }, - "Swashbuckle.AspNetCore.SwaggerGen": { - "target": "Package", - "version": "[6.2.3, )" - }, - "Swashbuckle.AspNetCore.SwaggerUI": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/MallService/obj/MallService.csproj.nuget.g.props b/MallService/obj/MallService.csproj.nuget.g.props deleted file mode 100644 index d136c6d..0000000 --- a/MallService/obj/MallService.csproj.nuget.g.props +++ /dev/null @@ -1,27 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FrankMensah\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\DevExpress 21.2\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.11.1 - - - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - C:\Users\FrankMensah\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.11.1 - - \ No newline at end of file diff --git a/MallService/obj/MallService.csproj.nuget.g.targets b/MallService/obj/MallService.csproj.nuget.g.targets deleted file mode 100644 index 4a5cbcc..0000000 --- a/MallService/obj/MallService.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - \ No newline at end of file diff --git a/MallService/obj/project.assets.json b/MallService/obj/project.assets.json deleted file mode 100644 index 5afc36c..0000000 --- a/MallService/obj/project.assets.json +++ /dev/null @@ -1,2167 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v3.1": { - "AutoMapper/11.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": {} - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "dependencies": { - "AutoMapper": "11.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "Azure.Core/1.20.0": { - "type": "package", - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.0.0", - "System.Diagnostics.DiagnosticSource": "4.6.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netcoreapp2.1/Azure.Core.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Azure.Core.dll": {} - } - }, - "Azure.Data.AppConfiguration/1.2.0": { - "type": "package", - "dependencies": { - "Azure.Core": "1.20.0", - "Microsoft.Bcl.AsyncInterfaces": "1.0.0", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Azure.Data.AppConfiguration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Azure.Data.AppConfiguration.dll": {} - } - }, - "Azure.Messaging.EventGrid/4.7.0": { - "type": "package", - "dependencies": { - "Azure.Core": "1.20.0", - "System.Memory.Data": "1.0.2", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Azure.Messaging.EventGrid.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Azure.Messaging.EventGrid.dll": {} - } - }, - "Azure.Security.KeyVault.Secrets/4.0.1": { - "type": "package", - "dependencies": { - "Azure.Core": "1.0.1", - "System.Memory": "4.5.3", - "System.Text.Json": "4.6.0", - "System.Threading.Tasks.Extensions": "4.5.2" - }, - "compile": { - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll": {} - } - }, - "DnsClient/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/DnsClient.dll": {} - }, - "runtime": { - "lib/netstandard2.1/DnsClient.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/netstandard2.1/FluentValidation.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": {} - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "compile": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - } - }, - "Microsoft.Bcl.AsyncInterfaces/1.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration/3.1.18": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "3.1.18" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration/5.0.0": { - "type": "package", - "dependencies": { - "Azure.Data.AppConfiguration": "1.2.0", - "Azure.Messaging.EventGrid": "4.7.0", - "Azure.Security.KeyVault.Secrets": "4.0.1", - "Microsoft.Extensions.Configuration": "3.1.18", - "Microsoft.Extensions.DependencyInjection.Abstractions": "3.1.18", - "Microsoft.Extensions.Logging": "3.1.18", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.OpenApi/1.2.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": {} - } - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": { - "type": "package", - "build": { - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props": {}, - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} - } - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - } - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - } - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/linux/native/libzstd.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libzstd.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/libzstd.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy32.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy64.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/mongocrypt.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "Npgsql/5.0.7": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Npgsql.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "compile": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "compile": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - } - }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { - "type": "package", - "dependencies": { - "Microsoft.OpenApi": "1.2.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { - "type": "package", - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.2.3" - }, - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "dependencies": { - "System.Text.Encodings.Web": "4.7.2", - "System.Text.Json": "4.6.0" - }, - "compile": { - "lib/netstandard2.0/System.Memory.Data.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": {} - } - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Text.Encodings.Web/4.7.2": { - "type": "package", - "compile": { - "lib/netstandard2.1/System.Text.Encodings.Web.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.Text.Encodings.Web.dll": {} - } - }, - "System.Text.Json/4.6.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Text.Json.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Text.Json.dll": {} - } - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "BusinessLogics/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v3.1", - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "DataAcess": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6" - }, - "compile": { - "bin/placeholder/BusinessLogics.dll": {} - }, - "runtime": { - "bin/placeholder/BusinessLogics.dll": {} - } - }, - "DataAcess/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v3.1", - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "compile": { - "bin/placeholder/DataAcess.dll": {} - }, - "runtime": { - "bin/placeholder/DataAcess.dll": {} - } - } - } - }, - "libraries": { - "AutoMapper/11.0.1": { - "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "type": "package", - "path": "automapper/11.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.11.0.1.nupkg.sha512", - "automapper.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.dll", - "lib/netstandard2.1/AutoMapper.xml" - ] - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "type": "package", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "automapper.extensions.microsoft.dependencyinjection.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" - ] - }, - "Azure.Core/1.20.0": { - "sha512": "q7xigZIBjLjSKJA/Y+VygmJ2iZGiEyNuicN5iRX9oJL7451SulZm/CQ7qd8YCeL5TgNCNYCIrTIqRaams95zHA==", - "type": "package", - "path": "azure.core/1.20.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.core.1.20.0.nupkg.sha512", - "azure.core.nuspec", - "lib/net461/Azure.Core.dll", - "lib/net461/Azure.Core.xml", - "lib/net5.0/Azure.Core.dll", - "lib/net5.0/Azure.Core.xml", - "lib/netcoreapp2.1/Azure.Core.dll", - "lib/netcoreapp2.1/Azure.Core.xml", - "lib/netstandard2.0/Azure.Core.dll", - "lib/netstandard2.0/Azure.Core.xml", - "pkgicon.png" - ] - }, - "Azure.Data.AppConfiguration/1.2.0": { - "sha512": "KA1dAM9TuDsq0CRFd+3cJTYUAzA2z9N8t9/xKdDbP9URuReq/NDFcKYr7GW2W9xzVGDtCHlD5j5am/+zLLBdSg==", - "type": "package", - "path": "azure.data.appconfiguration/1.2.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.data.appconfiguration.1.2.0.nupkg.sha512", - "azure.data.appconfiguration.nuspec", - "lib/netstandard2.0/Azure.Data.AppConfiguration.dll", - "lib/netstandard2.0/Azure.Data.AppConfiguration.xml", - "pkgicon.png" - ] - }, - "Azure.Messaging.EventGrid/4.7.0": { - "sha512": "Wm5+RY6hNoIPVLPwmr3T1ijVm5GdLVZBij93c4Brwe9iB3X8nlUYNjlnQVVJqK4QLs85nGwqBGUpB4BfYdGXVQ==", - "type": "package", - "path": "azure.messaging.eventgrid/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.messaging.eventgrid.4.7.0.nupkg.sha512", - "azure.messaging.eventgrid.nuspec", - "lib/netstandard2.0/Azure.Messaging.EventGrid.dll", - "lib/netstandard2.0/Azure.Messaging.EventGrid.xml", - "pkgicon.png" - ] - }, - "Azure.Security.KeyVault.Secrets/4.0.1": { - "sha512": "/6tKn6aMYGsaiFgdGmWX14V8yupFGqMxIGK1nD3D83cZY032VunmaP8wkDDNy3YUWM9UAqpejwQsgFdR/ftjbQ==", - "type": "package", - "path": "azure.security.keyvault.secrets/4.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "README.md", - "azure.security.keyvault.secrets.4.0.1.nupkg.sha512", - "azure.security.keyvault.secrets.nuspec", - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.dll", - "lib/netstandard2.0/Azure.Security.KeyVault.Secrets.xml", - "pkgicon.png" - ] - }, - "DnsClient/1.4.0": { - "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "type": "package", - "path": "dnsclient/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.4.0.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "FluentValidation.AspNetCore/10.3.6": { - "sha512": "xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "type": "package", - "path": "fluentvalidation.aspnetcore/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "fluentvalidation.aspnetcore.nuspec", - "lib/net5.0/FluentValidation.AspNetCore.dll", - "lib/net5.0/FluentValidation.AspNetCore.xml", - "lib/net6.0/FluentValidation.AspNetCore.dll", - "lib/net6.0/FluentValidation.AspNetCore.xml", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "sha512": "yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "Microsoft.Bcl.AsyncInterfaces/1.0.0": { - "sha512": "K63Y4hORbBcKLWH5wnKgzyn7TOfYzevIEwIedQHBIkmkEBA9SCqgvom+XTuE+fAFGvINGkhFItaZ2dvMGdT5iw==", - "type": "package", - "path": "microsoft.bcl.asyncinterfaces/1.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/net461/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", - "microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", - "microsoft.bcl.asyncinterfaces.nuspec", - "ref/net461/Microsoft.Bcl.AsyncInterfaces.dll", - "ref/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", - "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.CSharp/4.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "type": "package", - "path": "microsoft.entityframeworkcore/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration/3.1.18": { - "sha512": "G2w2QolMv76ZswL6XKjy8PbAu12uYbtIkGwkkZEhy7irWfqQWFT8PKQ68cEpotg6e2rc15E5/LQDgvCpXeWFtA==", - "type": "package", - "path": "microsoft.extensions.configuration/3.1.18", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Configuration.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", - "microsoft.extensions.configuration.3.1.18.nupkg.sha512", - "microsoft.extensions.configuration.nuspec" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration/5.0.0": { - "sha512": "1yDu6r/mPowAxZ9ntEZqCpoNiVwKFIiZxkBsDDq3ahpb18xt6BgDnmmPKCzw/jKGw8aJzQ5g8Kl5+0uUN7hGrg==", - "type": "package", - "path": "microsoft.extensions.configuration.azureappconfiguration/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.AzureAppConfiguration.xml", - "microsoft.extensions.configuration.azureappconfiguration.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.azureappconfiguration.nuspec" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.OpenApi/1.2.3": { - "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", - "type": "package", - "path": "microsoft.openapi/1.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net46/Microsoft.OpenApi.dll", - "lib/net46/Microsoft.OpenApi.pdb", - "lib/net46/Microsoft.OpenApi.xml", - "lib/netstandard2.0/Microsoft.OpenApi.dll", - "lib/netstandard2.0/Microsoft.OpenApi.pdb", - "lib/netstandard2.0/Microsoft.OpenApi.xml", - "microsoft.openapi.1.2.3.nupkg.sha512", - "microsoft.openapi.nuspec" - ] - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.11.1": { - "sha512": "1jHxWlSi6/ryWODk6SUjsZPHk/BdsucxqhIi1szEzwc84e8nvZWF45qRXcT2gWPISJ3Ybbyg2LsNG6yX8r7VuA==", - "type": "package", - "path": "microsoft.visualstudio.azure.containers.tools.targets/1.11.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "EULA.md", - "ThirdPartyNotices.txt", - "build/Container.props", - "build/Container.targets", - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props", - "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets", - "build/Rules/GeneralBrowseObject.xaml", - "build/Rules/cs-CZ/GeneralBrowseObject.xaml", - "build/Rules/de-DE/GeneralBrowseObject.xaml", - "build/Rules/es-ES/GeneralBrowseObject.xaml", - "build/Rules/fr-FR/GeneralBrowseObject.xaml", - "build/Rules/it-IT/GeneralBrowseObject.xaml", - "build/Rules/ja-JP/GeneralBrowseObject.xaml", - "build/Rules/ko-KR/GeneralBrowseObject.xaml", - "build/Rules/pl-PL/GeneralBrowseObject.xaml", - "build/Rules/pt-BR/GeneralBrowseObject.xaml", - "build/Rules/ru-RU/GeneralBrowseObject.xaml", - "build/Rules/tr-TR/GeneralBrowseObject.xaml", - "build/Rules/zh-CN/GeneralBrowseObject.xaml", - "build/Rules/zh-TW/GeneralBrowseObject.xaml", - "build/ToolsTarget.props", - "build/ToolsTarget.targets", - "icon.png", - "microsoft.visualstudio.azure.containers.tools.targets.1.11.1.nupkg.sha512", - "microsoft.visualstudio.azure.containers.tools.targets.nuspec", - "tools/Microsoft.VisualStudio.Containers.Tools.Common.dll", - "tools/Microsoft.VisualStudio.Containers.Tools.Shared.dll", - "tools/Microsoft.VisualStudio.Containers.Tools.Tasks.dll", - "tools/Newtonsoft.Json.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/cs/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/de/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/es/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/fr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/it/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ja/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ko/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/pl/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/pt-BR/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/ru/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/tr/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/utils/KillProcess.exe", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/zh-Hans/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Common.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Shared.resources.dll", - "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" - ] - }, - "MongoDB.Bson/2.14.1": { - "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "type": "package", - "path": "mongodb.bson/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/netstandard2.0/MongoDB.Bson.dll", - "lib/netstandard2.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.2.14.1.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/2.14.1": { - "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "type": "package", - "path": "mongodb.driver/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/netstandard2.0/MongoDB.Driver.dll", - "lib/netstandard2.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.2.14.1.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver.Core/2.14.1": { - "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "type": "package", - "path": "mongodb.driver.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "THIRD-PARTY-NOTICES", - "build/MongoDB.Driver.Core.targets", - "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "content/Core/Compression/Snappy/lib/win/snappy32.dll", - "content/Core/Compression/Snappy/lib/win/snappy64.dll", - "content/Core/Compression/Zstandard/lib/linux/libzstd.so", - "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "content/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", - "lib/net472/MongoDB.Driver.Core.dll", - "lib/net472/MongoDB.Driver.Core.xml", - "lib/netstandard2.0/MongoDB.Driver.Core.dll", - "lib/netstandard2.0/MongoDB.Driver.Core.xml", - "lib/netstandard2.1/MongoDB.Driver.Core.dll", - "lib/netstandard2.1/MongoDB.Driver.Core.xml", - "mongodb.driver.core.2.14.1.nupkg.sha512", - "mongodb.driver.core.nuspec", - "packageIcon.png", - "runtimes/linux/native/libsnappy64.so", - "runtimes/linux/native/libzstd.so", - "runtimes/osx/native/libsnappy64.dylib", - "runtimes/osx/native/libzstd.dylib", - "runtimes/win/native/libzstd.dll", - "runtimes/win/native/snappy32.dll", - "runtimes/win/native/snappy64.dll" - ] - }, - "MongoDB.Libmongocrypt/1.3.0": { - "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "type": "package", - "path": "mongodb.libmongocrypt/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/MongoDB.Libmongocrypt.targets", - "content/libmongocrypt.dylib", - "content/libmongocrypt.so", - "content/mongocrypt.dll", - "contentFiles/any/net472/libmongocrypt.dylib", - "contentFiles/any/net472/libmongocrypt.so", - "contentFiles/any/net472/mongocrypt.dll", - "contentFiles/any/netstandard2.0/libmongocrypt.dylib", - "contentFiles/any/netstandard2.0/libmongocrypt.so", - "contentFiles/any/netstandard2.0/mongocrypt.dll", - "contentFiles/any/netstandard2.1/libmongocrypt.dylib", - "contentFiles/any/netstandard2.1/libmongocrypt.so", - "contentFiles/any/netstandard2.1/mongocrypt.dll", - "lib/net472/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", - "mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "mongodb.libmongocrypt.nuspec", - "runtimes/linux/native/libmongocrypt.so", - "runtimes/osx/native/libmongocrypt.dylib", - "runtimes/win/native/mongocrypt.dll" - ] - }, - "Npgsql/5.0.7": { - "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "type": "package", - "path": "npgsql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Npgsql.dll", - "lib/net5.0/Npgsql.xml", - "lib/netcoreapp3.1/Npgsql.dll", - "lib/netcoreapp3.1/Npgsql.xml", - "lib/netstandard2.0/Npgsql.dll", - "lib/netstandard2.0/Npgsql.xml", - "lib/netstandard2.1/Npgsql.dll", - "lib/netstandard2.1/Npgsql.xml", - "npgsql.5.0.7.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "sha512": "RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "RabbitMQ.Client/6.2.3": { - "sha512": "qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "type": "package", - "path": "rabbitmq.client/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net461/RabbitMQ.Client.dll", - "lib/net461/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.6.2.3.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "Swashbuckle.AspNetCore.Swagger/6.2.3": { - "sha512": "qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", - "type": "package", - "path": "swashbuckle.aspnetcore.swagger/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", - "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swagger.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { - "sha512": "+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggergen/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", - "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggergen.nuspec" - ] - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { - "sha512": "bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", - "type": "package", - "path": "swashbuckle.aspnetcore.swaggerui/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", - "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", - "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", - "swashbuckle.aspnetcore.swaggerui.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "type": "package", - "path": "system.collections.immutable/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Memory.Data/1.0.2": { - "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "type": "package", - "path": "system.memory.data/1.0.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "CHANGELOG.md", - "DotNetPackageIcon.png", - "README.md", - "lib/net461/System.Memory.Data.dll", - "lib/net461/System.Memory.Data.xml", - "lib/netstandard2.0/System.Memory.Data.dll", - "lib/netstandard2.0/System.Memory.Data.xml", - "system.memory.data.1.0.2.nupkg.sha512", - "system.memory.data.nuspec" - ] - }, - "System.Numerics.Vectors/4.5.0": { - "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "type": "package", - "path": "system.numerics.vectors/4.5.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Numerics.Vectors.dll", - "lib/net46/System.Numerics.Vectors.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.0/System.Numerics.Vectors.dll", - "lib/netstandard1.0/System.Numerics.Vectors.xml", - "lib/netstandard2.0/System.Numerics.Vectors.dll", - "lib/netstandard2.0/System.Numerics.Vectors.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", - "lib/uap10.0.16299/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.Numerics.Vectors.dll", - "ref/net45/System.Numerics.Vectors.xml", - "ref/net46/System.Numerics.Vectors.dll", - "ref/net46/System.Numerics.Vectors.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/System.Numerics.Vectors.dll", - "ref/netstandard1.0/System.Numerics.Vectors.xml", - "ref/netstandard2.0/System.Numerics.Vectors.dll", - "ref/netstandard2.0/System.Numerics.Vectors.xml", - "ref/uap10.0.16299/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.numerics.vectors.4.5.0.nupkg.sha512", - "system.numerics.vectors.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Text.Encodings.Web/4.7.2": { - "sha512": "iTUgB/WtrZ1sWZs84F2hwyQhiRH6QNjQv2DkwrH+WP6RoFga2Q1m3f9/Q7FG8cck8AdHitQkmkXSY8qylcDmuA==", - "type": "package", - "path": "system.text.encodings.web/4.7.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Encodings.Web.dll", - "lib/net461/System.Text.Encodings.Web.xml", - "lib/netstandard1.0/System.Text.Encodings.Web.dll", - "lib/netstandard1.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.0/System.Text.Encodings.Web.dll", - "lib/netstandard2.0/System.Text.Encodings.Web.xml", - "lib/netstandard2.1/System.Text.Encodings.Web.dll", - "lib/netstandard2.1/System.Text.Encodings.Web.xml", - "system.text.encodings.web.4.7.2.nupkg.sha512", - "system.text.encodings.web.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Text.Json/4.6.0": { - "sha512": "4F8Xe+JIkVoDJ8hDAZ7HqLkjctN/6WItJIzQaifBwClC7wmoLSda/Sv2i6i1kycqDb3hWF4JCVbpAweyOKHEUA==", - "type": "package", - "path": "system.text.json/4.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Text.Json.dll", - "lib/net461/System.Text.Json.xml", - "lib/netcoreapp3.0/System.Text.Json.dll", - "lib/netcoreapp3.0/System.Text.Json.xml", - "lib/netstandard2.0/System.Text.Json.dll", - "lib/netstandard2.0/System.Text.Json.xml", - "system.text.json.4.6.0.nupkg.sha512", - "system.text.json.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Channels/4.7.1": { - "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "type": "package", - "path": "system.threading.channels/4.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Threading.Channels.dll", - "lib/net461/System.Threading.Channels.xml", - "lib/netcoreapp3.0/System.Threading.Channels.dll", - "lib/netcoreapp3.0/System.Threading.Channels.xml", - "lib/netstandard1.3/System.Threading.Channels.dll", - "lib/netstandard1.3/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "system.threading.channels.4.7.1.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "BusinessLogics/1.0.0": { - "type": "project", - "path": "../BusinessLogics/BusinessLogics.csproj", - "msbuildProject": "../BusinessLogics/BusinessLogics.csproj" - }, - "DataAcess/1.0.0": { - "type": "project", - "path": "../DataAcess/DataAcess.csproj", - "msbuildProject": "../DataAcess/DataAcess.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v3.1": [ - "AutoMapper >= 11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection >= 11.0.0", - "BusinessLogics >= 1.0.0", - "FluentValidation.AspNetCore >= 10.3.6", - "Microsoft.Extensions.Configuration.AzureAppConfiguration >= 5.0.0", - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.11.1", - "Swashbuckle.AspNetCore.Swagger >= 6.2.3", - "Swashbuckle.AspNetCore.SwaggerGen >= 6.2.3", - "Swashbuckle.AspNetCore.SwaggerUI >= 6.2.3" - ] - }, - "packageFolders": { - "C:\\Users\\FrankMensah\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj", - "projectName": "MallService", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - }, - "Microsoft.Extensions.Configuration.AzureAppConfiguration": { - "target": "Package", - "version": "[5.0.0, )" - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { - "target": "Package", - "version": "[1.11.1, )" - }, - "Swashbuckle.AspNetCore.Swagger": { - "target": "Package", - "version": "[6.2.3, )" - }, - "Swashbuckle.AspNetCore.SwaggerGen": { - "target": "Package", - "version": "[6.2.3, )" - }, - "Swashbuckle.AspNetCore.SwaggerUI": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.AspNetCore.App": { - "privateAssets": "none" - }, - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/MallService/obj/project.nuget.cache b/MallService/obj/project.nuget.cache deleted file mode 100644 index c3bc734..0000000 --- a/MallService/obj/project.nuget.cache +++ /dev/null @@ -1,61 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "h2TUI5n+xHZSzR6tGUG2Xs+G41OieILzZTgxsCXwLJsy4XuximPDaCUTNPQGCOBTHOWH7g/v4+1Frg/rCnxGnQ==", - "success": true, - "projectFilePath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallService\\MallService.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\azure.core\\1.20.0\\azure.core.1.20.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\azure.data.appconfiguration\\1.2.0\\azure.data.appconfiguration.1.2.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\azure.messaging.eventgrid\\4.7.0\\azure.messaging.eventgrid.4.7.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\azure.security.keyvault.secrets\\4.0.1\\azure.security.keyvault.secrets.4.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\dnsclient\\1.4.0\\dnsclient.1.4.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.aspnetcore\\10.3.6\\fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\10.3.6\\fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.0.0\\microsoft.bcl.asyncinterfaces.1.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration\\3.1.18\\microsoft.extensions.configuration.3.1.18.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration.azureappconfiguration\\5.0.0\\microsoft.extensions.configuration.azureappconfiguration.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.11.1\\microsoft.visualstudio.azure.containers.tools.targets.1.11.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.bson\\2.14.1\\mongodb.bson.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver\\2.14.1\\mongodb.driver.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver.core\\2.14.1\\mongodb.driver.core.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.libmongocrypt\\1.3.0\\mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\5.0.7\\npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\rabbitmq.client\\6.2.3\\rabbitmq.client.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.2.3\\swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.2.3\\swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.2.3\\swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.text.encodings.web\\4.7.2\\system.text.encodings.web.4.7.2.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.text.json\\4.6.0\\system.text.json.4.6.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.channels\\4.7.1\\system.threading.channels.4.7.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/MallServiceTest/CustomerBusinessTest.cs b/MallServiceTest/CustomerBusinessTest.cs deleted file mode 100644 index b3e2cc0..0000000 --- a/MallServiceTest/CustomerBusinessTest.cs +++ /dev/null @@ -1,253 +0,0 @@ -using Autofac.Extras.Moq; -using BusinessLogics.CustomerBusiness; -using BusinessLogics.DTO; -using BusinessLogics.MallBusiness; -using BusinessLogics.StandBusiness; -using DataAcess.DataModels; -using DataAcess.DataServices; -using System; -using System.Collections.Generic; -using System.Text; -using System.Linq; -using System.Threading.Tasks; -using Xunit; -using AutoMapper; -using Moq; - -namespace MallServiceTest -{ - public class CustomerBusinessTest - { - [Fact] - public async Task AddCustomer_ShouldAddValidCustomer() - { - // Arrange - Stand stand = new Stand - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = false, - CustomerQueue = new List { "C1" }, - Product = new Product { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - StandDTO standDTO = new StandDTO - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = false, - CustomerQueue = new List { "C1" }, - Product = new ProductDTO { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - CustomerDTO customerDTO = new CustomerDTO - { - Id = "C2", - Name = "Frank", - DisplayName = "Frank", - CurrentStandJoined = "S1", - DoneShopping = false, - Products = new List - { - { new ProductDTO{ Id = "P1", Name = "Coke", DisplayName = "Coke"} } - } - - }; - Customer customer = new Customer - { - Id = "C1", - Name = "Frank", - DisplayName = "Frank", - CurrentStandJoined = "S1", - DoneShopping = false, - Products = new List - { - { new Product{ Id = "P1", Name = "Coke", DisplayName = "Coke"} } - } - - }; - Mall mall = new Mall - { - Id = "M1", - Name = "Spintex Mall", - DisplayName = "Spintex Mall", - MallCapacity = DataAcess.Enums.Capacity.Limited, - OpenClosedDuration = 10, - OpenedState = DataAcess.Enums.States.Opened - }; - - - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(m => m.GetMallOpenedStatus()) - .Returns(mall); - - mock.Mock() - .Setup(m => m.GetStand(stand.Id)) - .Returns(GetResults(stand)); - - mock.Mock() - .Setup(m => m.Map(customerDTO)) - .Returns(customer); - - mock.Mock() - .Setup(m => m.Map(customer)) - .Returns(customerDTO); - - mock.Mock() - .Setup(m => m.Map(stand)) - .Returns(standDTO); - - mock.Mock() - .Setup(s => s.AddData(customer)) - .Returns(GetResults(customer)); - - var sut = mock.Create(); - var expected = await GetResults(customerDTO); - var actual = await sut.AddCustomer(stand.Id, customerDTO); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Status, actual.Status); - Assert.Equal((expected.Data.FirstOrDefault() as CustomerDTO).Id, (actual.Data.FirstOrDefault() as CustomerDTO).Id); - } - - [Fact] - public async Task GetCustomer_ShouldGetValidCustomer() - { - // Arrange - Stand stand = new Stand - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = false, - CustomerQueue = new List { "C1" }, - Product = new Product { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - CustomerDTO customerDTO = new CustomerDTO - { - Id = "C1", - Name = "Frank", - DisplayName = "Frank", - CurrentStandJoined = "S1", - DoneShopping = false, - Products = new List - { - { new ProductDTO{ Id = "P1", Name = "Coke", DisplayName = "Coke"} } - } - - }; - Customer customer = new Customer - { - Id = "C1", - Name = "Frank", - DisplayName = "Frank", - CurrentStandJoined = "S1", - DoneShopping = false, - Products = new List - { - { new Product{ Id = "P1", Name = "Coke", DisplayName = "Coke"} } - } - - }; - Mall mall = new Mall - { - Id = "M1", - Name = "Spintex Mall", - DisplayName = "Spintex Mall", - MallCapacity = DataAcess.Enums.Capacity.Limited, - OpenClosedDuration = 10, - OpenedState = DataAcess.Enums.States.Opened - }; - - - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.GetDataByID(customer.Id)) - .Returns(GetResults(customer)); - - mock.Mock() - .Setup(m => m.Map(customer)) - .Returns(customerDTO); - - var sut = mock.Create(); - var expected = await GetResults(customerDTO); - var actual = await sut.GetCustomer(customer.Id); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Status, actual.Status); - Assert.Equal((expected.Data.FirstOrDefault() as CustomerDTO).Id, (actual.Data.FirstOrDefault() as CustomerDTO).Id); - } - - [Fact] - public async Task GetCustomer_ShouldCheckEmptyCustomerObject() - { // Arrange - CustomerDTO customerDTO = new CustomerDTO - { - Id = "C1", - Name = "Frank", - DisplayName = "Frank", - CurrentStandJoined = "S1", - DoneShopping = false, - Products = new List - { - { new ProductDTO{ Id = "P1", Name = "Coke", DisplayName = "Coke"} } - } - - }; - Customer customer = null; - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.GetDataByID("C1")) - .Returns(GetResults(customer)); - - - var sut = mock.Create(); - var expected = await GetResults(customerDTO); - var actual = await sut.GetCustomer("C1"); - - // Asset - Assert.NotNull(actual); - Assert.True(actual.Status); - Assert.NotSame(expected, actual); - } - - private async Task GetResults(CustomerDTO customerDTO) - { - var result = new OperationalResult(); - await Task.Delay(1); - result.Data.Add(customerDTO); - - return result; - } - - private async Task GetResults(Stand stand) - { - await Task.Delay(1); - return stand; - } - - private async Task GetResults(Customer customer) - { - await Task.Delay(1); - return customer; - } - } -} diff --git a/MallServiceTest/MallBusinessTest.cs b/MallServiceTest/MallBusinessTest.cs deleted file mode 100644 index c097190..0000000 --- a/MallServiceTest/MallBusinessTest.cs +++ /dev/null @@ -1,78 +0,0 @@ -using Autofac.Extras.Moq; -using BusinessLogics.MallBusiness; -using DataAcess.DataModels; -using System; -using System.Collections.Generic; -using System.Text; -using Xunit; - -namespace MallServiceTest -{ - - public class MallBusinessTest - { - [Fact] - public void GetMallOpenedStatus() - { - // Arrange - Mall mall = new Mall - { - Id = "M1", - Name = "Spintex Mall", - DisplayName = "Spintex Mall", - MallCapacity = DataAcess.Enums.Capacity.Limited, - OpenClosedDuration = 10, - OpenedState = DataAcess.Enums.States.Opened - }; - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.GetMallOpenedStatus()) - .Returns(mall); - - var sut = mock.Create(); - var expected = mall; - var actual = sut.GetMallOpenedStatus(); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Id, actual.Id); - Assert.Equal(expected.MallCapacity, actual.MallCapacity); - Assert.True(expected.OpenedState == actual.OpenedState); - } - - [Fact] - public void GetMallOpenCloseDuration() - { - // Arrange - Mall mall = new Mall - { - Id = "M1", - Name = "Spintex Mall", - DisplayName = "Spintex Mall", - MallCapacity = DataAcess.Enums.Capacity.Limited, - OpenClosedDuration = 10, - OpenedState = DataAcess.Enums.States.Opened - }; - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.GetMallOpenCloseDuration()) - .Returns(mall); - - var sut = mock.Create(); - var expected = mall; - var actual = sut.GetMallOpenCloseDuration(); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Id, actual.Id); - Assert.Equal(expected.MallCapacity, actual.MallCapacity); - Assert.True(expected.OpenedState == actual.OpenedState); - } - } -} diff --git a/MallServiceTest/MallServiceTest.csproj b/MallServiceTest/MallServiceTest.csproj deleted file mode 100644 index 32207f4..0000000 --- a/MallServiceTest/MallServiceTest.csproj +++ /dev/null @@ -1,26 +0,0 @@ - - - - netcoreapp3.1 - - - - - - - - - - - - - all - runtime; build; native; contentfiles; analyzers; buildtransitive - - - - - - - - diff --git a/MallServiceTest/StandBusinessTest.cs b/MallServiceTest/StandBusinessTest.cs deleted file mode 100644 index 677ef92..0000000 --- a/MallServiceTest/StandBusinessTest.cs +++ /dev/null @@ -1,126 +0,0 @@ -using Autofac.Extras.Moq; -using AutoMapper; -using BusinessLogics.DTO; -using BusinessLogics.StandBusiness; -using DataAcess.DataModels; -using DataAcess.DataServices; -using System; -using System.Collections.Generic; -using System.Text; -using System.Threading.Tasks; -using Xunit; - -namespace MallServiceTest -{ - public class StandBusinessTest - { - [Fact] - public async Task AddStand() - { - // Arrange - StandDTO standDTO = new StandDTO - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = true, - CustomerQueue = new List { "C1" }, - Product = new ProductDTO { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - Stand stand = new Stand - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = true, - CustomerQueue = new List { "C1" }, - Product = new Product{ Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.AddData(stand)) - .Returns(GetResults(stand)); - - mock.Mock() - .Setup(m => m.Map(standDTO)) - .Returns(stand); - - var sut = mock.Create(); - var expected = await GetResults(stand); - var actual = await sut.AddStand(standDTO); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Id, actual.Id); - Assert.True(expected.OutOfProducts == actual.OutOfProducts); - - } - - [Fact] - public async Task GetStand() - { - // Arrange - StandDTO standDTO = new StandDTO - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = true, - CustomerQueue = new List { "C1" }, - Product = new ProductDTO { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - Stand stand = new Stand - { - Id = "S1", - Name = "Vegetables", - DisplayName = "Vegetables", - Duration = 10, - OutOfProducts = true, - CustomerQueue = new List { "C1" }, - Product = new Product { Id = "P1", Name = "Coke", DisplayName = "Coke" } - - }; - - // Act - using var mock = AutoMock.GetLoose(); - - mock.Mock() - .Setup(s => s.GetAllData()) - .Returns(GetStands()); - - var sut = mock.Create(); - var expected = await GetStands(); - var actual = await sut.GetStands(); - - // Asset - Assert.True(actual != null); - Assert.Equal(expected.Count, actual.Count); - } - - private async Task GetResults(Stand stand) - { - await Task.Delay(1); - return stand; - } - - private async Task> GetStands() - { - await Task.Delay(1); - List stands = new List(); - for(int i = 0; i<5; i++) - { - stands.Add( new Stand { Id = i.ToString() }); - } - return stands; - } - } -} diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.AutoMoq.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.AutoMoq.dll deleted file mode 100644 index fb348b6..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.AutoMoq.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.dll deleted file mode 100644 index 23229eb..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoFixture.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll deleted file mode 100644 index d8c1c58..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.dll deleted file mode 100644 index 7699210..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/AutoMapper.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.Extras.Moq.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.Extras.Moq.dll deleted file mode 100644 index 39c1b85..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.Extras.Moq.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.dll deleted file mode 100644 index 95c129c..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Autofac.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.dll deleted file mode 100644 index b48eb69..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.pdb b/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.pdb deleted file mode 100644 index cbcc613..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/BusinessLogics.pdb and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Castle.Core.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Castle.Core.dll deleted file mode 100644 index f8d4c80..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Castle.Core.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.dll deleted file mode 100644 index 6dfeae7..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.pdb b/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.pdb deleted file mode 100644 index 6720f18..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/DataAcess.pdb and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/DnsClient.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/DnsClient.dll deleted file mode 100644 index 24e476d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/DnsClient.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Fare.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Fare.dll deleted file mode 100644 index d5f9e21..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Fare.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll deleted file mode 100644 index 279f77d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.AspNetCore.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll deleted file mode 100644 index ebfbe53..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.DependencyInjectionExtensions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.dll deleted file mode 100644 index 1fae964..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/FluentValidation.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.deps.json b/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.deps.json deleted file mode 100644 index 93ca7c9..0000000 --- a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.deps.json +++ /dev/null @@ -1,2600 +0,0 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v3.1", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v3.1": { - "MallServiceTest/1.0.0": { - "dependencies": { - "AutoFixture.AutoMoq": "4.17.0", - "Autofac.Extras.Moq": "6.1.0", - "BusinessLogics": "1.0.0", - "Microsoft.CodeCoverage": "17.2.0-preview-20220131-20", - "Microsoft.NET.Test.Sdk": "17.1.0", - "Moq": "4.17.2", - "xunit.analyzers": "0.12.0-pre.19", - "xunit.assert": "2.4.2-pre.12", - "xunit.core": "2.4.2-pre.12", - "xunit.runner.visualstudio": "2.4.3" - }, - "runtime": { - "MallServiceTest.dll": {} - } - }, - "Autofac/6.0.0": { - "dependencies": { - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Autofac.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.0.0" - } - } - }, - "Autofac.Extras.Moq/6.1.0": { - "dependencies": { - "Autofac": "6.0.0", - "Moq": "4.17.2", - "System.ComponentModel.TypeConverter": "4.3.0" - }, - "runtime": { - "lib/netstandard2.1/Autofac.Extras.Moq.dll": { - "assemblyVersion": "6.1.0.0", - "fileVersion": "6.1.0.0" - } - } - }, - "AutoFixture/4.17.0": { - "dependencies": { - "Fare": "2.1.1", - "System.ComponentModel.Annotations": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/AutoFixture.dll": { - "assemblyVersion": "4.17.0.0", - "fileVersion": "4.17.0.636" - } - } - }, - "AutoFixture.AutoMoq/4.17.0": { - "dependencies": { - "AutoFixture": "4.17.0", - "Moq": "4.17.2" - }, - "runtime": { - "lib/netstandard2.0/AutoFixture.AutoMoq.dll": { - "assemblyVersion": "4.17.0.0", - "fileVersion": "4.17.0.636" - } - } - }, - "AutoMapper/11.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.1.0" - } - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "Microsoft.Extensions.Options": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": { - "assemblyVersion": "11.0.0.0", - "fileVersion": "11.0.0.0" - } - } - }, - "Castle.Core/4.4.1": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.4.1.0" - } - } - }, - "DnsClient/1.4.0": { - "runtime": { - "lib/netstandard2.1/DnsClient.dll": { - "assemblyVersion": "1.4.0.0", - "fileVersion": "1.4.0.0" - } - } - }, - "Fare/2.1.1": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/Fare.dll": { - "assemblyVersion": "2.1.0.0", - "fileVersion": "2.1.1.0" - } - } - }, - "FluentValidation/10.3.6": { - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "10.3.6.0" - } - } - }, - "Microsoft.CodeCoverage/17.2.0-preview-20220131-20": { - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "17.200.122.7901" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.EntityFrameworkCore/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": {}, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.721.26102" - } - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": { - "assemblyVersion": "5.0.0.1", - "fileVersion": "5.0.120.57516" - } - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "6.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "Microsoft.NET.Test.Sdk/17.1.0": { - "dependencies": { - "Microsoft.CodeCoverage": "17.2.0-preview-20220131-20", - "Microsoft.TestPlatform.TestHost": "17.1.0" - } - }, - "Microsoft.NETCore.Platforms/1.1.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.TestPlatform.ObjectModel/17.1.0": { - "dependencies": { - "NuGet.Frameworks": "5.11.0", - "System.Reflection.Metadata": "1.6.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.1.0": { - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.1.0", - "Newtonsoft.Json": "9.0.1" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - }, - "lib/netcoreapp2.1/testhost.dll": { - "assemblyVersion": "15.0.0.0", - "fileVersion": "15.0.0.0" - } - }, - "resources": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "MongoDB.Bson/2.14.1": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver/2.14.1": { - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - } - }, - "MongoDB.Driver.Core/2.14.1": { - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": { - "assemblyVersion": "2.14.1.0", - "fileVersion": "2.14.1.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/linux/native/libzstd.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libzstd.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/libzstd.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/snappy32.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - }, - "runtimes/win/native/snappy64.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "1.1.1.7" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { - "assemblyVersion": "1.3.0.0", - "fileVersion": "1.3.0.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/mongocrypt.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Moq/4.17.2": { - "dependencies": { - "Castle.Core": "4.4.1", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": { - "assemblyVersion": "4.17.0.0", - "fileVersion": "4.17.2.0" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/9.0.1": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.0/Newtonsoft.Json.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.1.19813" - } - } - }, - "Npgsql/5.0.7": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { - "assemblyVersion": "5.0.7.0", - "fileVersion": "5.0.7.0" - } - } - }, - "NuGet.Frameworks/5.11.0": { - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": { - "assemblyVersion": "5.11.0.10", - "fileVersion": "5.11.0.10" - } - } - }, - "RabbitMQ.Client/6.2.3": { - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.2.3.0" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "SharpCompress/0.30.1": { - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Collections.NonGeneric/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Collections.Specialized/4.3.0": { - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.220.61120" - } - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.4": {}, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "5.0.1", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/1.6.0": {}, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": { - "assemblyVersion": "6.0.0.0", - "fileVersion": "6.0.21.52210" - } - } - }, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "dependencies": { - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Channels/4.7.1": { - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": { - "assemblyVersion": "4.0.2.0", - "fileVersion": "4.700.20.21406" - } - } - }, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "xunit.abstractions/2.0.3": { - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "xunit.analyzers/0.12.0-pre.19": {}, - "xunit.assert/2.4.2-pre.12": { - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": { - "assemblyVersion": "2.4.2.0", - "fileVersion": "2.4.2.0" - } - } - }, - "xunit.core/2.4.2-pre.12": { - "dependencies": { - "xunit.extensibility.core": "2.4.2-pre.12", - "xunit.extensibility.execution": "2.4.2-pre.12" - } - }, - "xunit.extensibility.core/2.4.2-pre.12": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": { - "assemblyVersion": "2.4.2.0", - "fileVersion": "2.4.2.0" - } - } - }, - "xunit.extensibility.execution/2.4.2-pre.12": { - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "2.4.2-pre.12" - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": { - "assemblyVersion": "2.4.2.0", - "fileVersion": "2.4.2.0" - } - } - }, - "xunit.runner.visualstudio/2.4.3": {}, - "BusinessLogics/1.0.0": { - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "DataAcess": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6" - }, - "runtime": { - "BusinessLogics.dll": {} - } - }, - "DataAcess/1.0.0": { - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "runtime": { - "DataAcess.dll": {} - } - } - } - }, - "libraries": { - "MallServiceTest/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "Autofac/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==", - "path": "autofac/6.0.0", - "hashPath": "autofac.6.0.0.nupkg.sha512" - }, - "Autofac.Extras.Moq/6.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-8QzrP3V9dlBCQ7xB8I/WRpBNqikz4HYTN4K+IEkUH3NpT1V9fuh4ubDhAYKylx5dIi8KJ9hkRaTlP+4Zucqu7Q==", - "path": "autofac.extras.moq/6.1.0", - "hashPath": "autofac.extras.moq.6.1.0.nupkg.sha512" - }, - "AutoFixture/4.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-efMRCG3Epc4QDELwdmQGf6/caQUleRXPRCnLAq5gLMpTuOTcOQWV12vEJ8qo678Rj97/TjjxHYu/34rGkXdVAA==", - "path": "autofixture/4.17.0", - "hashPath": "autofixture.4.17.0.nupkg.sha512" - }, - "AutoFixture.AutoMoq/4.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-i6xReNJM8+jjXk1LJ5UBPJMZjoOAr7mkgM1pkI40aZJ9Y2KZxRW528XmLoYzDmvIayDtvzkYd1Zns0dn7Kkr0g==", - "path": "autofixture.automoq/4.17.0", - "hashPath": "autofixture.automoq.4.17.0.nupkg.sha512" - }, - "AutoMapper/11.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "path": "automapper/11.0.1", - "hashPath": "automapper.11.0.1.nupkg.sha512" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "hashPath": "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512" - }, - "Castle.Core/4.4.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zanbjWC0Y05gbx4eGXkzVycOQqVOFVeCjVsDSyuao9P4mtN1w3WxxTo193NGC7j3o2u3AJRswaoC6hEbnGACnQ==", - "path": "castle.core/4.4.1", - "hashPath": "castle.core.4.4.1.nupkg.sha512" - }, - "DnsClient/1.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "path": "dnsclient/1.4.0", - "hashPath": "dnsclient.1.4.0.nupkg.sha512" - }, - "Fare/2.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HaI8puqA66YU7/9cK4Sgbs1taUTP1Ssa4QT2PIzqJ7GvAbN1QgkjbRsjH+FSbMh1MJdvS0CIwQNLtFT+KF6KpA==", - "path": "fare/2.1.1", - "hashPath": "fare.2.1.1.nupkg.sha512" - }, - "FluentValidation/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "path": "fluentvalidation/10.3.6", - "hashPath": "fluentvalidation.10.3.6.nupkg.sha512" - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "path": "fluentvalidation.aspnetcore/10.3.6", - "hashPath": "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512" - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "hashPath": "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512" - }, - "Microsoft.CodeCoverage/17.2.0-preview-20220131-20": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9eJwrrb3lJl+XH2V8/IfVupuKfot1+sZKCxnPZyzNYw6avObFtn5/bDiAnsPEfZW8SnknoVItnNnF/DpmIdeMg==", - "path": "microsoft.codecoverage/17.2.0-preview-20220131-20", - "hashPath": "microsoft.codecoverage.17.2.0-preview-20220131-20.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "path": "microsoft.entityframeworkcore/5.0.7", - "hashPath": "microsoft.entityframeworkcore.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "hashPath": "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "path": "microsoft.extensions.caching.memory/5.0.0", - "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "path": "microsoft.extensions.logging/5.0.0", - "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "path": "microsoft.extensions.options/6.0.0", - "hashPath": "microsoft.extensions.options.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "path": "microsoft.extensions.primitives/6.0.0", - "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" - }, - "Microsoft.NET.Test.Sdk/17.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MVKvOsHIfrZrvg+8aqOF5dknO/qWrR1sWZjMPQ1N42MKMlL/zQL30FQFZxPeWfmVKWUWAOmAHYsqB5OerTKziw==", - "path": "microsoft.net.test.sdk/17.1.0", - "hashPath": "microsoft.net.test.sdk.17.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.ObjectModel/17.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OMo/FYnKGy3lZEK0gfitskRM3ga/YBt6MyCyFPq0xNLeybGOQ6HnYNAAvzyePo5WPuMiw3LX+HiuRWNjnas1fA==", - "path": "microsoft.testplatform.objectmodel/17.1.0", - "hashPath": "microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512" - }, - "Microsoft.TestPlatform.TestHost/17.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JS0JDLniDhIzkSPLHz7N/x1CG8ywJOtwInFDYA3KQvbz+ojGoT5MT2YDVReL1b86zmNRV8339vsTSm/zh0RcMg==", - "path": "microsoft.testplatform.testhost/17.1.0", - "hashPath": "microsoft.testplatform.testhost.17.1.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "path": "mongodb.bson/2.14.1", - "hashPath": "mongodb.bson.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "path": "mongodb.driver/2.14.1", - "hashPath": "mongodb.driver.2.14.1.nupkg.sha512" - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "path": "mongodb.driver.core/2.14.1", - "hashPath": "mongodb.driver.core.2.14.1.nupkg.sha512" - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "path": "mongodb.libmongocrypt/1.3.0", - "hashPath": "mongodb.libmongocrypt.1.3.0.nupkg.sha512" - }, - "Moq/4.17.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HytUPJ3/uks2UgJ9hIcyXm3YxpFAR4OJzbQwTHltbKGun3lFLhEHs97hiiPj1dY8jV/kasXeihTzDxct6Zf3iQ==", - "path": "moq/4.17.2", - "hashPath": "moq.4.17.2.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", - "path": "newtonsoft.json/9.0.1", - "hashPath": "newtonsoft.json.9.0.1.nupkg.sha512" - }, - "Npgsql/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "path": "npgsql/5.0.7", - "hashPath": "npgsql.5.0.7.nupkg.sha512" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "hashPath": "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512" - }, - "NuGet.Frameworks/5.11.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", - "path": "nuget.frameworks/5.11.0", - "hashPath": "nuget.frameworks.5.11.0.nupkg.sha512" - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "path": "rabbitmq.client/6.2.3", - "hashPath": "rabbitmq.client.6.2.3.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "path": "system.collections.immutable/5.0.0", - "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "path": "system.collections.nongeneric/4.3.0", - "hashPath": "system.collections.nongeneric.4.3.0.nupkg.sha512" - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "path": "system.collections.specialized/4.3.0", - "hashPath": "system.collections.specialized.4.3.0.nupkg.sha512" - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "path": "system.componentmodel/4.3.0", - "hashPath": "system.componentmodel.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "path": "system.componentmodel.annotations/5.0.0", - "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "path": "system.componentmodel.primitives/4.3.0", - "hashPath": "system.componentmodel.primitives.4.3.0.nupkg.sha512" - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "path": "system.componentmodel.typeconverter/4.3.0", - "hashPath": "system.componentmodel.typeconverter.4.3.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "hashPath": "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "path": "system.diagnostics.tracesource/4.3.0", - "hashPath": "system.diagnostics.tracesource.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "path": "system.reflection.metadata/1.6.0", - "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "path": "system.reflection.typeextensions/4.3.0", - "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "path": "system.runtime.serialization.primitives/4.1.1", - "hashPath": "system.runtime.serialization.primitives.4.1.1.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "path": "system.security.cryptography.cng/4.3.0", - "hashPath": "system.security.cryptography.cng.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "path": "system.threading.channels/4.7.1", - "hashPath": "system.threading.channels.4.7.1.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "path": "xunit.abstractions/2.0.3", - "hashPath": "xunit.abstractions.2.0.3.nupkg.sha512" - }, - "xunit.analyzers/0.12.0-pre.19": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGdUpVNKnltpkGLYnfXtZYlshRWDg4Kcf/wjvmSKtVylhtbVriA6A1y0rtk6+BzMGhBfDi1w5bCle2kC9/ficw==", - "path": "xunit.analyzers/0.12.0-pre.19", - "hashPath": "xunit.analyzers.0.12.0-pre.19.nupkg.sha512" - }, - "xunit.assert/2.4.2-pre.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Av98kBp3Uc6eI1lWvGIVWrCWQHOSVKr/rI4VVc9yok1/xqk43RESH5IcYTOHEdiof37K7bzNfv4qaY/dwNMqIw==", - "path": "xunit.assert/2.4.2-pre.12", - "hashPath": "xunit.assert.2.4.2-pre.12.nupkg.sha512" - }, - "xunit.core/2.4.2-pre.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0IKhUb1qivtZUQyWl3fQeqbwsKgo4Ndi9ECJ6S5GFb9l8Tr1T5wTPo3KaCOD9ccxRu4jOQmvm9c8fCQd7SyoZg==", - "path": "xunit.core/2.4.2-pre.12", - "hashPath": "xunit.core.2.4.2-pre.12.nupkg.sha512" - }, - "xunit.extensibility.core/2.4.2-pre.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-z6ufPlcGpOEe/GNGAgfwtloAsb8mXuu4X6cBID8dsiTJ0OhD33mU/qkobnlFQVP724rYkFvtiVAjD47CpFFdiQ==", - "path": "xunit.extensibility.core/2.4.2-pre.12", - "hashPath": "xunit.extensibility.core.2.4.2-pre.12.nupkg.sha512" - }, - "xunit.extensibility.execution/2.4.2-pre.12": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FBuMA84KNxBMgHLVAqMGVD6DeejjPFTahZgxBClvey+C/HZipeuzKNX6x7Ne/Updpevz2KqituBJJ8yz9TrKbQ==", - "path": "xunit.extensibility.execution/2.4.2-pre.12", - "hashPath": "xunit.extensibility.execution.2.4.2-pre.12.nupkg.sha512" - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "path": "xunit.runner.visualstudio/2.4.3", - "hashPath": "xunit.runner.visualstudio.2.4.3.nupkg.sha512" - }, - "BusinessLogics/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "DataAcess/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - } - } -} \ No newline at end of file diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.dll deleted file mode 100644 index 9d61c63..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.pdb b/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.pdb deleted file mode 100644 index ff4f405..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.pdb and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.dev.json b/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.dev.json deleted file mode 100644 index 2712cb9..0000000 --- a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.dev.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "runtimeOptions": { - "additionalProbingPaths": [ - "C:\\Users\\FrankMensah\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\FrankMensah\\.nuget\\packages", - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ] - } -} \ No newline at end of file diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.json b/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.json deleted file mode 100644 index efcf669..0000000 --- a/MallServiceTest/bin/Debug/netcoreapp3.1/MallServiceTest.runtimeconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "runtimeOptions": { - "tfm": "netcoreapp3.1", - "framework": { - "name": "Microsoft.AspNetCore.App", - "version": "3.1.0" - } - } -} \ No newline at end of file diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll deleted file mode 100644 index d7876ef..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll deleted file mode 100644 index 1aded3e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll deleted file mode 100644 index 3803be1..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.EntityFrameworkCore.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll deleted file mode 100644 index 0191af9..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll deleted file mode 100644 index 74be381..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Caching.Memory.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll deleted file mode 100644 index dd5ebe2..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll deleted file mode 100644 index 895cd5d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll deleted file mode 100644 index 266d7d7..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.DependencyInjection.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll deleted file mode 100644 index 2c87f79..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll deleted file mode 100644 index 6df35e1..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Logging.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll deleted file mode 100644 index 604b602..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Options.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll deleted file mode 100644 index 0bb6ce0..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.Extensions.Primitives.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll deleted file mode 100644 index 75d5e00..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll deleted file mode 100644 index c8c1051..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll deleted file mode 100644 index bb56d87..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll deleted file mode 100644 index cdb2ad8..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll deleted file mode 100644 index bef0068..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll deleted file mode 100644 index 9c387ae..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll deleted file mode 100644 index d9e1da2..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll deleted file mode 100644 index 4af9f81..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll deleted file mode 100644 index 39ec849..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Bson.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll deleted file mode 100644 index cc5af45..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.Core.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll deleted file mode 100644 index 1d75d27..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Driver.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll deleted file mode 100644 index 444ab65..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/MongoDB.Libmongocrypt.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Moq.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Moq.dll deleted file mode 100644 index dda81d3..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Moq.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll deleted file mode 100644 index 5f2336e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Newtonsoft.Json.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll deleted file mode 100644 index 8a0cae0..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.dll deleted file mode 100644 index 55b125b..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/Npgsql.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll deleted file mode 100644 index 0fabf0c..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/NuGet.Frameworks.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll deleted file mode 100644 index 166abb6..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/RabbitMQ.Client.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/SharpCompress.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/SharpCompress.dll deleted file mode 100644 index 5198ba5..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/SharpCompress.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll deleted file mode 100644 index f737e42..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Collections.Immutable.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll deleted file mode 100644 index a5adedd..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/System.ComponentModel.Annotations.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll deleted file mode 100644 index 4319171..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Diagnostics.DiagnosticSource.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll deleted file mode 100644 index 103462b..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll deleted file mode 100644 index ff05e67..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/System.Threading.Channels.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index c07697e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index a39c7f5..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index a1fcbe1..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 90c78e8..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index fb8e9d0..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 6c1d51f..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 9cf82cc..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 816e29d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index ee204fe..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 4bdb290..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 535c56b..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index b168911..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index c26a588..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 05de035..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 4f699b3..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index afebc17..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 72c4838..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index ace935c..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 41e5838..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 2ac10d8..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index e1e5f9d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 3c8a0aa..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index c48d5ee..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 92d01b2..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index b7f58b5..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 840e648..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 4b14ba9..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 90e5622..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index c9023f3..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e62e47e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 9adf00f..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index b4cf96b..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index bfdd242..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index dfcd420..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 8c5d152..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 0d41bc2..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7fa5a8e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 637a134..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 81eba7c..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 78eac93..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 4bba97e..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 0c0a4da..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index d502b59..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 66afd94..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 125ac80..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index 42e239f..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index c4af130..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 782e58c..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 3489fd0..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 0143428..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so deleted file mode 100644 index 6cc0ed1..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libmongocrypt.so and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so deleted file mode 100644 index 584bedf..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libsnappy64.so and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so deleted file mode 100644 index 8309c49..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/linux/native/libzstd.so and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib deleted file mode 100644 index 3f4518a..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libmongocrypt.dylib and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib deleted file mode 100644 index bbce3c2..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libsnappy64.dylib and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib deleted file mode 100644 index 5400d76..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/osx/native/libzstd.dylib and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll deleted file mode 100644 index e669123..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/libzstd.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll deleted file mode 100644 index 00ab602..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/mongocrypt.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll deleted file mode 100644 index afc82ca..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy32.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll deleted file mode 100644 index 36cd5fe..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/runtimes/win/native/snappy64.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.dll deleted file mode 100644 index ccf722d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.exe b/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.exe deleted file mode 100644 index 86b1c40..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/testhost.exe and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index fcd221a..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index aaefdcc..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 5654af6..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 511a285..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index e47f7cf..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.abstractions.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.abstractions.dll deleted file mode 100644 index d1e90bf..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.abstractions.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.assert.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.assert.dll deleted file mode 100644 index 88d1271..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.assert.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.core.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.core.dll deleted file mode 100644 index 243a02b..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.core.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll deleted file mode 100644 index 59e5162..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.execution.dotnet.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll deleted file mode 100644 index 953544f..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.reporters.netcoreapp10.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll deleted file mode 100644 index f389ee1..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.utility.netcoreapp10.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll deleted file mode 100644 index 94b21e6..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index da14f19..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 3d313b9..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 4efa9ab..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index 489d0db..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index b7263d8..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll deleted file mode 100644 index baf8e01..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll deleted file mode 100644 index 7463f1d..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll deleted file mode 100644 index 7283bad..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll deleted file mode 100644 index c119dcc..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null differ diff --git a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll deleted file mode 100644 index 031e4d3..0000000 Binary files a/MallServiceTest/bin/Debug/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/MallServiceTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs deleted file mode 100644 index ad8dfe1..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -using System; -using System.Reflection; -[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")] diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfo.cs b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfo.cs deleted file mode 100644 index 6749216..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfo.cs +++ /dev/null @@ -1,23 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// Runtime Version:4.0.30319.42000 -// -// Changes to this file may cause incorrect behavior and will be lost if -// the code is regenerated. -// -//------------------------------------------------------------------------------ - -using System; -using System.Reflection; - -[assembly: System.Reflection.AssemblyCompanyAttribute("MallServiceTest")] -[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] -[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] -[assembly: System.Reflection.AssemblyProductAttribute("MallServiceTest")] -[assembly: System.Reflection.AssemblyTitleAttribute("MallServiceTest")] -[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] - -// Generated by the MSBuild WriteCodeFragment class. - diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfoInputs.cache b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfoInputs.cache deleted file mode 100644 index a85ec72..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -7a5d5c5b87b7210a8f88007193b565b0169bbfdf diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.GeneratedMSBuildEditorConfig.editorconfig b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 5659446..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,3 +0,0 @@ -is_global = true -build_property.RootNamespace = MallServiceTest -build_property.ProjectDir = C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\ diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.assets.cache b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.assets.cache deleted file mode 100644 index e96f336..0000000 Binary files a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.assets.cache and /dev/null differ diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.AssemblyReference.cache b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.AssemblyReference.cache deleted file mode 100644 index 1e74725..0000000 Binary files a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.AssemblyReference.cache and /dev/null differ diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.CopyComplete b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.CoreCompileInputs.cache b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.CoreCompileInputs.cache deleted file mode 100644 index f38ce1f..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -a6b52308341925a92a343d39f7a993bf51190d25 diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.FileListAbsolute.txt b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.FileListAbsolute.txt deleted file mode 100644 index 433f5dc..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,150 +0,0 @@ -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\testhost.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\testhost.exe -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.PlatformAbstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.runner.visualstudio.dotnetcore.testadapter.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.runner.reporters.netcoreapp10.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.runner.utility.netcoreapp10.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MallServiceTest.deps.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MallServiceTest.runtimeconfig.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MallServiceTest.runtimeconfig.dev.json -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MallServiceTest.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MallServiceTest.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Autofac.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Autofac.Extras.Moq.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\AutoFixture.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\AutoFixture.AutoMoq.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\AutoMapper.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\AutoMapper.Extensions.Microsoft.DependencyInjection.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Castle.Core.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\DnsClient.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Fare.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\FluentValidation.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\FluentValidation.AspNetCore.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\FluentValidation.DependencyInjectionExtensions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.CodeCoverage.Shim.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.EntityFrameworkCore.Relational.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Caching.Memory.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Configuration.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.DependencyInjection.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Logging.Abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Options.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.Extensions.Primitives.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CoreUtilities.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CommunicationUtilities.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.CrossPlatEngine.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.TestPlatform.Utilities.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Microsoft.VisualStudio.TestPlatform.Common.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MongoDB.Bson.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MongoDB.Driver.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MongoDB.Driver.Core.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\MongoDB.Libmongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Moq.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Newtonsoft.Json.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Npgsql.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\Npgsql.EntityFrameworkCore.PostgreSQL.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\NuGet.Frameworks.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\RabbitMQ.Client.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\SharpCompress.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\System.Collections.Immutable.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\System.ComponentModel.Annotations.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\System.Diagnostics.DiagnosticSource.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\System.Runtime.CompilerServices.Unsafe.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\System.Threading.Channels.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.abstractions.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.assert.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.core.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\xunit.execution.dotnet.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\linux\native\libsnappy64.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\linux\native\libzstd.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\osx\native\libsnappy64.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\osx\native\libzstd.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\win\native\libzstd.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy32.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\win\native\snappy64.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\linux\native\libmongocrypt.so -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\osx\native\libmongocrypt.dylib -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\runtimes\win\native\mongocrypt.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\BusinessLogics.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\DataAcess.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\BusinessLogics.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\bin\Debug\netcoreapp3.1\DataAcess.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.csproj.AssemblyReference.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.GeneratedMSBuildEditorConfig.editorconfig -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.AssemblyInfoInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.AssemblyInfo.cs -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.csproj.CoreCompileInputs.cache -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.csproj.CopyComplete -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.dll -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.pdb -C:\Users\FrankMensah\Desktop\PP\MallSimulation\MallServiceTest\obj\Debug\netcoreapp3.1\MallServiceTest.genruntimeconfig.cache diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.dll b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.dll deleted file mode 100644 index 9d61c63..0000000 Binary files a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.dll and /dev/null differ diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.genruntimeconfig.cache b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.genruntimeconfig.cache deleted file mode 100644 index 541c6c6..0000000 --- a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -ee67e46f6bf4ebd6a4668fc44a31513f562a4535 diff --git a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.pdb b/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.pdb deleted file mode 100644 index ff4f405..0000000 Binary files a/MallServiceTest/obj/Debug/netcoreapp3.1/MallServiceTest.pdb and /dev/null differ diff --git a/MallServiceTest/obj/MallServiceTest.csproj.nuget.cache b/MallServiceTest/obj/MallServiceTest.csproj.nuget.cache deleted file mode 100644 index 260bd96..0000000 --- a/MallServiceTest/obj/MallServiceTest.csproj.nuget.cache +++ /dev/null @@ -1,5 +0,0 @@ -{ - "version": 1, - "dgSpecHash": "LbGEj89hfQHlahCSNoZzREWianNG55pWlHqPpXfzHr5q0u6ih0YuEgcNR9H/2em75Sr/dz1wjMpo850nFEkIyw==", - "success": true -} \ No newline at end of file diff --git a/MallServiceTest/obj/MallServiceTest.csproj.nuget.dgspec.json b/MallServiceTest/obj/MallServiceTest.csproj.nuget.dgspec.json deleted file mode 100644 index 4da0f0e..0000000 --- a/MallServiceTest/obj/MallServiceTest.csproj.nuget.dgspec.json +++ /dev/null @@ -1,303 +0,0 @@ -{ - "format": 1, - "restore": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj": {} - }, - "projects": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "projectName": "BusinessLogics", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoMapper": { - "target": "Package", - "version": "[11.0.1, )" - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection": { - "target": "Package", - "version": "[11.0.0, )" - }, - "FluentValidation.AspNetCore": { - "target": "Package", - "version": "[10.3.6, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "projectName": "DataAcess", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\DataAcess.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\DataAcess\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": {} - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "MongoDB.Driver": { - "target": "Package", - "version": "[2.14.1, )" - }, - "Npgsql.EntityFrameworkCore.PostgreSQL": { - "target": "Package", - "version": "[5.0.7, )" - }, - "RabbitMQ.Client": { - "target": "Package", - "version": "[6.2.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - }, - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj", - "projectName": "MallServiceTest", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoFixture.AutoMoq": { - "target": "Package", - "version": "[4.17.0, )" - }, - "Autofac.Extras.Moq": { - "target": "Package", - "version": "[6.1.0, )" - }, - "Microsoft.CodeCoverage": { - "target": "Package", - "version": "[17.2.0-preview-20220131-20, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.1.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.17.2, )" - }, - "xunit.analyzers": { - "target": "Package", - "version": "[0.12.0-pre.19, )" - }, - "xunit.assert": { - "target": "Package", - "version": "[2.4.2-pre.12, )" - }, - "xunit.core": { - "target": "Package", - "version": "[2.4.2-pre.12, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } - } -} \ No newline at end of file diff --git a/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.props b/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.props deleted file mode 100644 index 7c5fd6c..0000000 --- a/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.props +++ /dev/null @@ -1,32 +0,0 @@ - - - - True - NuGet - $(MSBuildThisFileDirectory)project.assets.json - $(UserProfile)\.nuget\packages\ - C:\Users\FrankMensah\.nuget\packages\;C:\Program Files (x86)\DevExpress 20.2\Components\Offline Packages;C:\Program Files (x86)\DevExpress 21.2\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder - PackageReference - 5.11.1 - - - - - - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - - - - C:\Users\FrankMensah\.nuget\packages\xunit.analyzers\0.12.0-pre.19 - C:\Users\FrankMensah\.nuget\packages\newtonsoft.json\9.0.1 - - \ No newline at end of file diff --git a/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.targets b/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.targets deleted file mode 100644 index cc10585..0000000 --- a/MallServiceTest/obj/MallServiceTest.csproj.nuget.g.targets +++ /dev/null @@ -1,11 +0,0 @@ - - - - $(MSBuildAllProjects);$(MSBuildThisFileFullPath) - - - - - - - \ No newline at end of file diff --git a/MallServiceTest/obj/project.assets.json b/MallServiceTest/obj/project.assets.json deleted file mode 100644 index 3c12083..0000000 --- a/MallServiceTest/obj/project.assets.json +++ /dev/null @@ -1,7936 +0,0 @@ -{ - "version": 3, - "targets": { - ".NETCoreApp,Version=v3.1": { - "Autofac/6.0.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.DiagnosticSource": "4.7.1" - }, - "compile": { - "lib/netstandard2.1/Autofac.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Autofac.dll": {} - } - }, - "Autofac.Extras.Moq/6.1.0": { - "type": "package", - "dependencies": { - "Autofac": "6.0.0", - "Moq": "4.7.0", - "System.ComponentModel.TypeConverter": "4.1.0" - }, - "compile": { - "lib/netstandard2.1/Autofac.Extras.Moq.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Autofac.Extras.Moq.dll": {} - } - }, - "AutoFixture/4.17.0": { - "type": "package", - "dependencies": { - "Fare": "[2.1.1, 3.0.0)", - "System.ComponentModel.Annotations": "4.3.0" - }, - "compile": { - "lib/netstandard2.0/AutoFixture.dll": {} - }, - "runtime": { - "lib/netstandard2.0/AutoFixture.dll": {} - } - }, - "AutoFixture.AutoMoq/4.17.0": { - "type": "package", - "dependencies": { - "AutoFixture": "4.17.0", - "Moq": "[4.7.0, 5.0.0)" - }, - "compile": { - "lib/netstandard2.0/AutoFixture.AutoMoq.dll": {} - }, - "runtime": { - "lib/netstandard2.0/AutoFixture.AutoMoq.dll": {} - } - }, - "AutoMapper/11.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.7.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.dll": {} - } - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "type": "package", - "dependencies": { - "AutoMapper": "11.0.0", - "Microsoft.Extensions.Options": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll": {} - } - }, - "Castle.Core/4.4.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.TypeConverter": "4.3.0", - "System.Diagnostics.TraceSource": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "compile": { - "lib/netstandard1.5/Castle.Core.dll": {} - }, - "runtime": { - "lib/netstandard1.5/Castle.Core.dll": {} - } - }, - "DnsClient/1.4.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/DnsClient.dll": {} - }, - "runtime": { - "lib/netstandard2.1/DnsClient.dll": {} - } - }, - "Fare/2.1.1": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/Fare.dll": {} - }, - "runtime": { - "lib/netstandard1.1/Fare.dll": {} - } - }, - "FluentValidation/10.3.6": { - "type": "package", - "compile": { - "lib/netstandard2.1/FluentValidation.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.dll": {} - } - }, - "FluentValidation.AspNetCore/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "FluentValidation.DependencyInjectionExtensions": "10.3.6" - }, - "compile": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll": {} - }, - "frameworkReferences": [ - "Microsoft.AspNetCore.App" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "type": "package", - "dependencies": { - "FluentValidation": "10.3.6", - "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" - }, - "compile": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} - } - }, - "Microsoft.CodeCoverage/17.2.0-preview-20220131-20": { - "type": "package", - "compile": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "runtime": { - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} - }, - "build": { - "build/netstandard1.0/Microsoft.CodeCoverage.props": {}, - "build/netstandard1.0/Microsoft.CodeCoverage.targets": {} - } - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Analyzers": "5.0.7", - "Microsoft.Extensions.Caching.Memory": "5.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.1", - "Microsoft.Extensions.Logging": "5.0.0", - "System.Collections.Immutable": "5.0.0", - "System.ComponentModel.Annotations": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.1" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "type": "package", - "compile": { - "lib/netstandard2.0/_._": {} - }, - "runtime": { - "lib/netstandard2.0/_._": {} - } - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.Extensions.Configuration.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll": {} - } - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll": {} - } - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.Primitives": "5.0.0" - }, - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll": {} - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.Extensions.Logging/5.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "5.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0", - "Microsoft.Extensions.Options": "5.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {} - } - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {} - } - }, - "Microsoft.Extensions.Options/6.0.0": { - "type": "package", - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "6.0.0", - "Microsoft.Extensions.Primitives": "6.0.0" - }, - "compile": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Microsoft.Extensions.Options.dll": {} - } - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "compile": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "Microsoft.NET.Test.Sdk/17.1.0": { - "type": "package", - "dependencies": { - "Microsoft.CodeCoverage": "17.1.0", - "Microsoft.TestPlatform.TestHost": "17.1.0" - }, - "compile": { - "lib/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - }, - "build": { - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props": {}, - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} - } - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "Microsoft.TestPlatform.ObjectModel/17.1.0": { - "type": "package", - "dependencies": { - "NuGet.Frameworks": "5.11.0", - "System.Reflection.Metadata": "1.6.0" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { - "locale": "zh-Hant" - } - } - }, - "Microsoft.TestPlatform.TestHost/17.1.0": { - "type": "package", - "dependencies": { - "Microsoft.TestPlatform.ObjectModel": "17.1.0", - "Newtonsoft.Json": "9.0.1" - }, - "compile": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, - "lib/netcoreapp2.1/testhost.dll": {} - }, - "resource": { - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "cs" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "de" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "es" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "fr" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "it" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ja" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ko" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pl" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "pt-BR" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "ru" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "tr" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hans" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { - "locale": "zh-Hant" - }, - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { - "locale": "zh-Hant" - } - }, - "build": { - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props": {} - } - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll": {} - } - }, - "MongoDB.Bson/2.14.1": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "5.0.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": {} - } - }, - "MongoDB.Driver/2.14.1": { - "type": "package", - "dependencies": { - "MongoDB.Bson": "2.14.1", - "MongoDB.Driver.Core": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": {} - } - }, - "MongoDB.Driver.Core/2.14.1": { - "type": "package", - "dependencies": { - "DnsClient": "1.4.0", - "MongoDB.Bson": "2.14.1", - "MongoDB.Libmongocrypt": "1.3.0", - "SharpCompress": "0.30.1", - "System.Buffers": "4.5.1" - }, - "compile": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libsnappy64.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/linux/native/libzstd.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libsnappy64.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/osx/native/libzstd.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/libzstd.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy32.dll": { - "assetType": "native", - "rid": "win" - }, - "runtimes/win/native/snappy64.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "MongoDB.Libmongocrypt/1.3.0": { - "type": "package", - "compile": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": {} - }, - "contentFiles": { - "contentFiles/any/any/_._": { - "buildAction": "None", - "codeLanguage": "any", - "copyToOutput": false - } - }, - "build": { - "build/_._": {} - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "assetType": "native", - "rid": "linux" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "assetType": "native", - "rid": "osx" - }, - "runtimes/win/native/mongocrypt.dll": { - "assetType": "native", - "rid": "win" - } - } - }, - "Moq/4.17.2": { - "type": "package", - "dependencies": { - "Castle.Core": "4.4.1", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "compile": { - "lib/netstandard2.1/Moq.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Moq.dll": {} - } - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/9.0.1": { - "type": "package", - "dependencies": { - "Microsoft.CSharp": "4.0.1", - "System.Collections": "4.0.11", - "System.Diagnostics.Debug": "4.0.11", - "System.Dynamic.Runtime": "4.0.11", - "System.Globalization": "4.0.11", - "System.IO": "4.1.0", - "System.Linq": "4.1.0", - "System.Linq.Expressions": "4.1.0", - "System.ObjectModel": "4.0.12", - "System.Reflection": "4.1.0", - "System.Reflection.Extensions": "4.0.1", - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0", - "System.Runtime.Extensions": "4.1.0", - "System.Runtime.Serialization.Primitives": "4.1.1", - "System.Text.Encoding": "4.0.11", - "System.Text.Encoding.Extensions": "4.0.11", - "System.Text.RegularExpressions": "4.1.0", - "System.Threading": "4.0.11", - "System.Threading.Tasks": "4.0.11", - "System.Xml.ReaderWriter": "4.0.11", - "System.Xml.XDocument": "4.0.11" - }, - "compile": { - "lib/netstandard1.0/Newtonsoft.Json.dll": {} - }, - "runtime": { - "lib/netstandard1.0/Newtonsoft.Json.dll": {} - } - }, - "Npgsql/5.0.7": { - "type": "package", - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "4.6.0" - }, - "compile": { - "lib/netcoreapp3.1/Npgsql.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/Npgsql.dll": {} - } - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "type": "package", - "dependencies": { - "Microsoft.EntityFrameworkCore": "5.0.7", - "Microsoft.EntityFrameworkCore.Abstractions": "5.0.7", - "Microsoft.EntityFrameworkCore.Relational": "5.0.7", - "Npgsql": "5.0.7" - }, - "compile": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - }, - "runtime": { - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} - } - }, - "NuGet.Frameworks/5.11.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - }, - "runtime": { - "lib/netstandard2.0/NuGet.Frameworks.dll": {} - } - }, - "RabbitMQ.Client/6.2.3": { - "type": "package", - "dependencies": { - "System.Memory": "4.5.4", - "System.Threading.Channels": "4.7.1" - }, - "compile": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - }, - "runtime": { - "lib/netstandard2.0/RabbitMQ.Client.dll": {} - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "debian.8-x64" - } - } - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.23-x64" - } - } - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "fedora.24-x64" - } - } - }, - "runtime.native.System/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "lib/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.0/_._": {} - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.13.2-x64" - } - } - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "opensuse.42.1-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib": { - "assetType": "native", - "rid": "osx.10.10-x64" - } - } - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "rhel.7-x64" - } - } - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.14.04-x64" - } - } - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.04-x64" - } - } - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "runtimeTargets": { - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so": { - "assetType": "native", - "rid": "ubuntu.16.10-x64" - } - } - }, - "SharpCompress/0.30.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/SharpCompress.dll": {} - } - }, - "System.AppContext/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.AppContext.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.AppContext.dll": {} - } - }, - "System.Buffers/4.5.1": { - "type": "package", - "compile": { - "ref/netcoreapp2.0/_._": {} - }, - "runtime": { - "lib/netcoreapp2.0/_._": {} - } - }, - "System.Collections/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.dll": {} - } - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Concurrent.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Concurrent.dll": {} - } - }, - "System.Collections.Immutable/5.0.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Collections.Immutable.dll": {} - } - }, - "System.Collections.NonGeneric/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.NonGeneric.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.NonGeneric.dll": {} - } - }, - "System.Collections.Specialized/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections.NonGeneric": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Collections.Specialized.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Collections.Specialized.dll": {} - } - }, - "System.ComponentModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ComponentModel.dll": {} - } - }, - "System.ComponentModel.Annotations/5.0.0": { - "type": "package", - "compile": { - "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} - }, - "runtime": { - "lib/netstandard2.1/System.ComponentModel.Annotations.dll": {} - } - }, - "System.ComponentModel.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.ComponentModel": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.ComponentModel.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.0/System.ComponentModel.Primitives.dll": {} - } - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.NonGeneric": "4.3.0", - "System.Collections.Specialized": "4.3.0", - "System.ComponentModel": "4.3.0", - "System.ComponentModel.Primitives": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll": {} - } - }, - "System.Console/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Console.dll": {} - } - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.Debug.dll": {} - } - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "type": "package", - "compile": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll": {} - } - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Diagnostics.Tools.dll": {} - } - }, - "System.Diagnostics.TraceSource/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Diagnostics.Tracing.dll": {} - } - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Dynamic.Runtime.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} - } - }, - "System.Globalization/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.dll": {} - } - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Globalization.Calendars.dll": {} - } - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.IO.dll": {} - } - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "dependencies": { - "System.Buffers": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll": {} - } - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.dll": {} - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} - } - }, - "System.Linq/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.dll": {} - } - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Linq.Expressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Linq.Expressions.dll": {} - } - }, - "System.Memory/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Net.Http/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Http.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Primitives.dll": {} - } - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Net.Sockets.dll": {} - } - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.ObjectModel.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.ObjectModel.dll": {} - } - }, - "System.Reflection/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.dll": {} - } - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Reflection.Emit.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.dll": {} - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/_._": {} - }, - "runtime": { - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} - } - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Extensions.dll": {} - } - }, - "System.Reflection.Metadata/1.6.0": { - "type": "package", - "compile": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - }, - "runtime": { - "lib/netstandard2.0/System.Reflection.Metadata.dll": {} - } - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Reflection.Primitives.dll": {} - } - }, - "System.Reflection.TypeExtensions/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - }, - "runtime": { - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} - } - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.0/System.Resources.ResourceManager.dll": {} - } - }, - "System.Runtime/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.dll": {} - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "compile": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "runtime": { - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll": {} - }, - "build": { - "buildTransitive/netcoreapp3.1/_._": {} - } - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.5/System.Runtime.Extensions.dll": {} - } - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Handles.dll": {} - } - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll": {} - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtime": { - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.1/System.Runtime.Numerics.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Numerics.dll": {} - } - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "type": "package", - "dependencies": { - "System.Resources.ResourceManager": "4.0.1", - "System.Runtime": "4.1.0" - }, - "compile": { - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll": {} - }, - "runtimeTargets": { - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "osx" - }, - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Cng/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/_._": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.6/_._": {} - }, - "runtime": { - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll": { - "assetType": "runtime", - "rid": "unix" - } - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "4.3.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - }, - "compile": { - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll": {} - }, - "runtimeTargets": { - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "unix" - }, - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll": { - "assetType": "runtime", - "rid": "win" - } - } - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.dll": {} - } - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": {} - } - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll": {} - }, - "runtime": { - "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} - } - }, - "System.Threading/4.3.0": { - "type": "package", - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Threading.dll": {} - } - }, - "System.Threading.Channels/4.7.1": { - "type": "package", - "compile": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - }, - "runtime": { - "lib/netcoreapp3.0/System.Threading.Channels.dll": {} - } - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Threading.Tasks.dll": {} - } - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "compile": { - "ref/netcoreapp2.1/_._": {} - }, - "runtime": { - "lib/netcoreapp2.1/_._": {} - } - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - }, - "compile": { - "ref/netstandard1.2/System.Threading.Timer.dll": {} - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.ReaderWriter.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} - } - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XDocument.dll": {} - } - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - }, - "compile": { - "ref/netstandard1.3/System.Xml.XmlDocument.dll": {} - }, - "runtime": { - "lib/netstandard1.3/System.Xml.XmlDocument.dll": {} - } - }, - "xunit.abstractions/2.0.3": { - "type": "package", - "compile": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - }, - "runtime": { - "lib/netstandard2.0/xunit.abstractions.dll": {} - } - }, - "xunit.analyzers/0.12.0-pre.19": { - "type": "package" - }, - "xunit.assert/2.4.2-pre.12": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1" - }, - "compile": { - "lib/netstandard1.1/xunit.assert.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.assert.dll": {} - } - }, - "xunit.core/2.4.2-pre.12": { - "type": "package", - "dependencies": { - "xunit.extensibility.core": "[2.4.2-pre.12]", - "xunit.extensibility.execution": "[2.4.2-pre.12]" - }, - "build": { - "build/xunit.core.props": {}, - "build/xunit.core.targets": {} - }, - "buildMultiTargeting": { - "buildMultiTargeting/xunit.core.props": {}, - "buildMultiTargeting/xunit.core.targets": {} - } - }, - "xunit.extensibility.core/2.4.2-pre.12": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.abstractions": "2.0.3" - }, - "compile": { - "lib/netstandard1.1/xunit.core.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.core.dll": {} - } - }, - "xunit.extensibility.execution/2.4.2-pre.12": { - "type": "package", - "dependencies": { - "NETStandard.Library": "1.6.1", - "xunit.extensibility.core": "[2.4.2-pre.12]" - }, - "compile": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - }, - "runtime": { - "lib/netstandard1.1/xunit.execution.dotnet.dll": {} - } - }, - "xunit.runner.visualstudio/2.4.3": { - "type": "package", - "build": { - "build/netcoreapp2.1/xunit.runner.visualstudio.props": {} - } - }, - "BusinessLogics/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v3.1", - "dependencies": { - "AutoMapper": "11.0.1", - "AutoMapper.Extensions.Microsoft.DependencyInjection": "11.0.0", - "DataAcess": "1.0.0", - "FluentValidation.AspNetCore": "10.3.6" - }, - "compile": { - "bin/placeholder/BusinessLogics.dll": {} - }, - "runtime": { - "bin/placeholder/BusinessLogics.dll": {} - } - }, - "DataAcess/1.0.0": { - "type": "project", - "framework": ".NETCoreApp,Version=v3.1", - "dependencies": { - "MongoDB.Driver": "2.14.1", - "Npgsql.EntityFrameworkCore.PostgreSQL": "5.0.7", - "RabbitMQ.Client": "6.2.3" - }, - "compile": { - "bin/placeholder/DataAcess.dll": {} - }, - "runtime": { - "bin/placeholder/DataAcess.dll": {} - } - } - } - }, - "libraries": { - "Autofac/6.0.0": { - "sha512": "tRVRXGxwXbQmPy1ZGso115O55ffVW4mWtufjOy7hduQ1BNVR1j7RQQjxpYuB6tJw5OrgqRWYVJLJ8RwYNz/j+A==", - "type": "package", - "path": "autofac/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "autofac.6.0.0.nupkg.sha512", - "autofac.nuspec", - "icon.png", - "lib/netstandard2.0/Autofac.dll", - "lib/netstandard2.0/Autofac.pdb", - "lib/netstandard2.0/Autofac.xml", - "lib/netstandard2.1/Autofac.dll", - "lib/netstandard2.1/Autofac.pdb", - "lib/netstandard2.1/Autofac.xml" - ] - }, - "Autofac.Extras.Moq/6.1.0": { - "sha512": "8QzrP3V9dlBCQ7xB8I/WRpBNqikz4HYTN4K+IEkUH3NpT1V9fuh4ubDhAYKylx5dIi8KJ9hkRaTlP+4Zucqu7Q==", - "type": "package", - "path": "autofac.extras.moq/6.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "autofac.extras.moq.6.1.0.nupkg.sha512", - "autofac.extras.moq.nuspec", - "icon.png", - "lib/netstandard2.0/Autofac.Extras.Moq.dll", - "lib/netstandard2.0/Autofac.Extras.Moq.pdb", - "lib/netstandard2.0/Autofac.Extras.Moq.xml", - "lib/netstandard2.1/Autofac.Extras.Moq.dll", - "lib/netstandard2.1/Autofac.Extras.Moq.pdb", - "lib/netstandard2.1/Autofac.Extras.Moq.xml" - ] - }, - "AutoFixture/4.17.0": { - "sha512": "efMRCG3Epc4QDELwdmQGf6/caQUleRXPRCnLAq5gLMpTuOTcOQWV12vEJ8qo678Rj97/TjjxHYu/34rGkXdVAA==", - "type": "package", - "path": "autofixture/4.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "autofixture.4.17.0.nupkg.sha512", - "autofixture.nuspec", - "icon.png", - "lib/net452/AutoFixture.dll", - "lib/net452/AutoFixture.pdb", - "lib/net452/AutoFixture.xml", - "lib/netstandard1.5/AutoFixture.dll", - "lib/netstandard1.5/AutoFixture.pdb", - "lib/netstandard1.5/AutoFixture.xml", - "lib/netstandard2.0/AutoFixture.dll", - "lib/netstandard2.0/AutoFixture.pdb", - "lib/netstandard2.0/AutoFixture.xml" - ] - }, - "AutoFixture.AutoMoq/4.17.0": { - "sha512": "i6xReNJM8+jjXk1LJ5UBPJMZjoOAr7mkgM1pkI40aZJ9Y2KZxRW528XmLoYzDmvIayDtvzkYd1Zns0dn7Kkr0g==", - "type": "package", - "path": "autofixture.automoq/4.17.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "autofixture.automoq.4.17.0.nupkg.sha512", - "autofixture.automoq.nuspec", - "icon.png", - "lib/net452/AutoFixture.AutoMoq.dll", - "lib/net452/AutoFixture.AutoMoq.pdb", - "lib/net452/AutoFixture.AutoMoq.xml", - "lib/netstandard1.5/AutoFixture.AutoMoq.dll", - "lib/netstandard1.5/AutoFixture.AutoMoq.pdb", - "lib/netstandard1.5/AutoFixture.AutoMoq.xml", - "lib/netstandard2.0/AutoFixture.AutoMoq.dll", - "lib/netstandard2.0/AutoFixture.AutoMoq.pdb", - "lib/netstandard2.0/AutoFixture.AutoMoq.xml" - ] - }, - "AutoMapper/11.0.1": { - "sha512": "WIadGC1pIwbnyTubvI577p3F++Bsj9q2Q3OaAc1I0QS+JhupN1xkdrPBhI9bPIeg63zM81tZplUNYkqU1HE5jQ==", - "type": "package", - "path": "automapper/11.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.11.0.1.nupkg.sha512", - "automapper.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.dll", - "lib/netstandard2.1/AutoMapper.xml" - ] - }, - "AutoMapper.Extensions.Microsoft.DependencyInjection/11.0.0": { - "sha512": "0asw5WxdCFh2OTi9Gv+oKyH9SzxwYQSnO8TV5Dd0GggovILzJW4UimP26JAcxc3yB5NnC5urooZ1BBs8ElpiBw==", - "type": "package", - "path": "automapper.extensions.microsoft.dependencyinjection/11.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "automapper.extensions.microsoft.dependencyinjection.nuspec", - "icon.png", - "lib/netstandard2.1/AutoMapper.Extensions.Microsoft.DependencyInjection.dll" - ] - }, - "Castle.Core/4.4.1": { - "sha512": "zanbjWC0Y05gbx4eGXkzVycOQqVOFVeCjVsDSyuao9P4mtN1w3WxxTo193NGC7j3o2u3AJRswaoC6hEbnGACnQ==", - "type": "package", - "path": "castle.core/4.4.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ASL - Apache Software Foundation License.txt", - "CHANGELOG.md", - "LICENSE", - "castle.core.4.4.1.nupkg.sha512", - "castle.core.nuspec", - "lib/net35/Castle.Core.dll", - "lib/net35/Castle.Core.xml", - "lib/net40/Castle.Core.dll", - "lib/net40/Castle.Core.xml", - "lib/net45/Castle.Core.dll", - "lib/net45/Castle.Core.xml", - "lib/netstandard1.3/Castle.Core.dll", - "lib/netstandard1.3/Castle.Core.xml", - "lib/netstandard1.5/Castle.Core.dll", - "lib/netstandard1.5/Castle.Core.xml", - "readme.txt" - ] - }, - "DnsClient/1.4.0": { - "sha512": "CO1NG1zQdV0nEAXmr/KppLZ0S1qkaPwV0kPX5YPgmYBtrBVh1XMYHM54IXy3RBJu1k4thFtpzwo4HNHqxiuFYw==", - "type": "package", - "path": "dnsclient/1.4.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "dnsclient.1.4.0.nupkg.sha512", - "dnsclient.nuspec", - "icon.png", - "lib/net45/DnsClient.dll", - "lib/net45/DnsClient.xml", - "lib/net471/DnsClient.dll", - "lib/net471/DnsClient.xml", - "lib/netstandard1.3/DnsClient.dll", - "lib/netstandard1.3/DnsClient.xml", - "lib/netstandard2.0/DnsClient.dll", - "lib/netstandard2.0/DnsClient.xml", - "lib/netstandard2.1/DnsClient.dll", - "lib/netstandard2.1/DnsClient.xml" - ] - }, - "Fare/2.1.1": { - "sha512": "HaI8puqA66YU7/9cK4Sgbs1taUTP1Ssa4QT2PIzqJ7GvAbN1QgkjbRsjH+FSbMh1MJdvS0CIwQNLtFT+KF6KpA==", - "type": "package", - "path": "fare/2.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "fare.2.1.1.nupkg.sha512", - "fare.nuspec", - "lib/net35/Fare.dll", - "lib/net35/Fare.xml", - "lib/netstandard1.1/Fare.dll", - "lib/netstandard1.1/Fare.xml" - ] - }, - "FluentValidation/10.3.6": { - "sha512": "iMd370ZDx6ydm8t7bIFdRbSKX0e42lpvCtifUSbTSXOk5iKjmgl7HU0PXBhIWQAyIRi3gCwfMI9luj8H6K+byw==", - "type": "package", - "path": "fluentvalidation/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.10.3.6.nupkg.sha512", - "fluentvalidation.nuspec", - "lib/net5.0/FluentValidation.dll", - "lib/net5.0/FluentValidation.xml", - "lib/net6.0/FluentValidation.dll", - "lib/net6.0/FluentValidation.xml", - "lib/netstandard2.0/FluentValidation.dll", - "lib/netstandard2.0/FluentValidation.xml", - "lib/netstandard2.1/FluentValidation.dll", - "lib/netstandard2.1/FluentValidation.xml" - ] - }, - "FluentValidation.AspNetCore/10.3.6": { - "sha512": "xUgEjm+aqQPiVyZHmIq1HCShjlu17Rm1iV6yuL9CFWAl9YPvMxJL7vB+A1CqFUeWsx3LH8fM8ivA/5q5jPmcJg==", - "type": "package", - "path": "fluentvalidation.aspnetcore/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "fluentvalidation.aspnetcore.nuspec", - "lib/net5.0/FluentValidation.AspNetCore.dll", - "lib/net5.0/FluentValidation.AspNetCore.xml", - "lib/net6.0/FluentValidation.AspNetCore.dll", - "lib/net6.0/FluentValidation.AspNetCore.xml", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.dll", - "lib/netcoreapp3.1/FluentValidation.AspNetCore.xml" - ] - }, - "FluentValidation.DependencyInjectionExtensions/10.3.6": { - "sha512": "yMwmbr+sHP/VLRQPTBVcgbJmtP5PGmxzNsqVX7FccDRwDB2edP8XsXWLNTZ4UwrslU1qQUD07BNQLDh7WXzpNw==", - "type": "package", - "path": "fluentvalidation.dependencyinjectionextensions/10.3.6", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "README.md", - "fluent-validation-icon.png", - "fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "fluentvalidation.dependencyinjectionextensions.nuspec", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", - "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" - ] - }, - "Microsoft.CodeCoverage/17.2.0-preview-20220131-20": { - "sha512": "9eJwrrb3lJl+XH2V8/IfVupuKfot1+sZKCxnPZyzNYw6avObFtn5/bDiAnsPEfZW8SnknoVItnNnF/DpmIdeMg==", - "type": "package", - "path": "microsoft.codecoverage/17.2.0-preview-20220131-20", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netstandard1.0/CodeCoverage/CodeCoverage.config", - "build/netstandard1.0/CodeCoverage/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", - "build/netstandard1.0/CodeCoverage/amd64/CodeCoverage.exe", - "build/netstandard1.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/CodeCoverage/amd64/covrun64.dll", - "build/netstandard1.0/CodeCoverage/amd64/msdia140.dll", - "build/netstandard1.0/CodeCoverage/codecoveragemessages.dll", - "build/netstandard1.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "build/netstandard1.0/CodeCoverage/covrun32.dll", - "build/netstandard1.0/CodeCoverage/msdia140.dll", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", - "build/netstandard1.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", - "build/netstandard1.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", - "build/netstandard1.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", - "build/netstandard1.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", - "build/netstandard1.0/Microsoft.CodeCoverage.props", - "build/netstandard1.0/Microsoft.CodeCoverage.targets", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Core.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Instrumentation.dll", - "build/netstandard1.0/Microsoft.VisualStudio.Coverage.Interprocess.dll", - "build/netstandard1.0/Microsoft.VisualStudio.TraceDataCollector.dll", - "build/netstandard1.0/Mono.Cecil.Pdb.dll", - "build/netstandard1.0/Mono.Cecil.dll", - "build/netstandard1.0/ThirdPartyNotices.txt", - "build/netstandard1.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "build/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", - "lib/net45/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll", - "microsoft.codecoverage.17.2.0-preview-20220131-20.nupkg.sha512", - "microsoft.codecoverage.nuspec" - ] - }, - "Microsoft.CSharp/4.7.0": { - "sha512": "pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "type": "package", - "path": "microsoft.csharp/4.7.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/Microsoft.CSharp.dll", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.3/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.dll", - "lib/netstandard2.0/Microsoft.CSharp.xml", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/uap10.0.16299/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.csharp.4.7.0.nupkg.sha512", - "microsoft.csharp.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/Microsoft.CSharp.dll", - "ref/netcore50/Microsoft.CSharp.xml", - "ref/netcore50/de/Microsoft.CSharp.xml", - "ref/netcore50/es/Microsoft.CSharp.xml", - "ref/netcore50/fr/Microsoft.CSharp.xml", - "ref/netcore50/it/Microsoft.CSharp.xml", - "ref/netcore50/ja/Microsoft.CSharp.xml", - "ref/netcore50/ko/Microsoft.CSharp.xml", - "ref/netcore50/ru/Microsoft.CSharp.xml", - "ref/netcore50/zh-hans/Microsoft.CSharp.xml", - "ref/netcore50/zh-hant/Microsoft.CSharp.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.0/Microsoft.CSharp.dll", - "ref/netstandard1.0/Microsoft.CSharp.xml", - "ref/netstandard1.0/de/Microsoft.CSharp.xml", - "ref/netstandard1.0/es/Microsoft.CSharp.xml", - "ref/netstandard1.0/fr/Microsoft.CSharp.xml", - "ref/netstandard1.0/it/Microsoft.CSharp.xml", - "ref/netstandard1.0/ja/Microsoft.CSharp.xml", - "ref/netstandard1.0/ko/Microsoft.CSharp.xml", - "ref/netstandard1.0/ru/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", - "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", - "ref/netstandard2.0/Microsoft.CSharp.dll", - "ref/netstandard2.0/Microsoft.CSharp.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/uap10.0.16299/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.EntityFrameworkCore/5.0.7": { - "sha512": "VAvmiQPdw0PUh3X7k9k7haVnCfQuDgyki9rq5XVk0gXJFeh+bwqPzPrY71A08O5TjnIeK9lEggXDnMuhQXUUww==", - "type": "package", - "path": "microsoft.entityframeworkcore/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.xml", - "microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Abstractions/5.0.7": { - "sha512": "MM5M9vYDLUXCePUGN2WZ0MkNcNj74sIgyVR9v7tW6abRULtBWPcyZf6zLYhZYpRgPXcahcME+Koscz9kP2DxyA==", - "type": "package", - "path": "microsoft.entityframeworkcore.abstractions/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.xml", - "microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.abstractions.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Analyzers/5.0.7": { - "sha512": "ZShPEOZaQhBZqDObU3+kigEmlEGug37F8v/jpQgVs1XfHrLeXVyk+p94DBH4f+bUUHUbsEEcIbU6OhUBtWZztg==", - "type": "package", - "path": "microsoft.entityframeworkcore.analyzers/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", - "lib/netstandard2.0/_._", - "microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.analyzers.nuspec" - ] - }, - "Microsoft.EntityFrameworkCore.Relational/5.0.7": { - "sha512": "W3nj58s5GX8KFQwZaytERGy3tTqutjWK6309KCpXaVtVvuYf3GE3R0lrouxONzLynLG8hsODcs2gym5QQoqtSg==", - "type": "package", - "path": "microsoft.entityframeworkcore.relational/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.dll", - "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Relational.xml", - "microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "microsoft.entityframeworkcore.relational.nuspec" - ] - }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0": { - "sha512": "bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", - "type": "package", - "path": "microsoft.extensions.caching.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Caching.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", - "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Caching.Memory/5.0.0": { - "sha512": "/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", - "type": "package", - "path": "microsoft.extensions.caching.memory/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Caching.Memory.dll", - "lib/net461/Microsoft.Extensions.Caching.Memory.xml", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", - "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", - "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "microsoft.extensions.caching.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Configuration.Abstractions/5.0.0": { - "sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==", - "type": "package", - "path": "microsoft.extensions.configuration.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", - "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.configuration.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection/5.0.1": { - "sha512": "//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.DependencyInjection.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.xml", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/net5.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", - "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "microsoft.extensions.dependencyinjection.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { - "sha512": "xlzi2IYREJH3/m6+lUrQlujzX8wDitm4QGnUu6kUXTQAWPuZY8i+ticFJbzfqaetLA6KR/rO6Ew/HuYD+bxifg==", - "type": "package", - "path": "microsoft.extensions.dependencyinjection.abstractions/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", - "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", - "microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "microsoft.extensions.dependencyinjection.abstractions.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Logging/5.0.0": { - "sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", - "type": "package", - "path": "microsoft.extensions.logging/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.dll", - "lib/net461/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", - "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", - "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", - "microsoft.extensions.logging.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0": { - "sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", - "type": "package", - "path": "microsoft.extensions.logging.abstractions/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/net461/Microsoft.Extensions.Logging.Abstractions.xml", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", - "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", - "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "microsoft.extensions.logging.abstractions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "Microsoft.Extensions.Options/6.0.0": { - "sha512": "dzXN0+V1AyjOe2xcJ86Qbo233KHuLEY0njf/P2Kw8SfJU+d45HNS2ctJdnEnrWbM9Ye2eFgaC5Mj9otRMU6IsQ==", - "type": "package", - "path": "microsoft.extensions.options/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/Microsoft.Extensions.Options.dll", - "lib/net461/Microsoft.Extensions.Options.xml", - "lib/netstandard2.0/Microsoft.Extensions.Options.dll", - "lib/netstandard2.0/Microsoft.Extensions.Options.xml", - "lib/netstandard2.1/Microsoft.Extensions.Options.dll", - "lib/netstandard2.1/Microsoft.Extensions.Options.xml", - "microsoft.extensions.options.6.0.0.nupkg.sha512", - "microsoft.extensions.options.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.Extensions.Primitives/6.0.0": { - "sha512": "9+PnzmQFfEFNR9J2aDTfJGGupShHjOuGw4VUv+JB044biSHrnmCIMD+mJHmb2H7YryrfBEXDurxQ47gJZdCKNQ==", - "type": "package", - "path": "microsoft.extensions.primitives/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/Microsoft.Extensions.Primitives.dll", - "lib/net461/Microsoft.Extensions.Primitives.xml", - "lib/net6.0/Microsoft.Extensions.Primitives.dll", - "lib/net6.0/Microsoft.Extensions.Primitives.xml", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.dll", - "lib/netcoreapp3.1/Microsoft.Extensions.Primitives.xml", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", - "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", - "microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "microsoft.extensions.primitives.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "Microsoft.NET.Test.Sdk/17.1.0": { - "sha512": "MVKvOsHIfrZrvg+8aqOF5dknO/qWrR1sWZjMPQ1N42MKMlL/zQL30FQFZxPeWfmVKWUWAOmAHYsqB5OerTKziw==", - "type": "package", - "path": "microsoft.net.test.sdk/17.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "build/net40/Microsoft.NET.Test.Sdk.props", - "build/net40/Microsoft.NET.Test.Sdk.targets", - "build/net45/Microsoft.NET.Test.Sdk.props", - "build/net45/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp1.0/Microsoft.NET.Test.Sdk.targets", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.cs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.fs", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.Program.vb", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.props", - "build/netcoreapp2.1/Microsoft.NET.Test.Sdk.targets", - "build/uap10.0/Microsoft.NET.Test.Sdk.props", - "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", - "lib/net40/_._", - "lib/net45/_._", - "lib/netcoreapp1.0/_._", - "lib/netcoreapp2.1/_._", - "lib/uap10.0/_._", - "microsoft.net.test.sdk.17.1.0.nupkg.sha512", - "microsoft.net.test.sdk.nuspec" - ] - }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "microsoft.netcore.platforms.nuspec", - "runtime.json" - ] - }, - "Microsoft.NETCore.Targets/1.1.0": { - "sha512": "aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "type": "package", - "path": "microsoft.netcore.targets/1.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "microsoft.netcore.targets.1.1.0.nupkg.sha512", - "microsoft.netcore.targets.nuspec", - "runtime.json" - ] - }, - "Microsoft.TestPlatform.ObjectModel/17.1.0": { - "sha512": "OMo/FYnKGy3lZEK0gfitskRM3ga/YBt6MyCyFPq0xNLeybGOQ6HnYNAAvzyePo5WPuMiw3LX+HiuRWNjnas1fA==", - "type": "package", - "path": "microsoft.testplatform.objectmodel/17.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "lib/net45/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net45/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net45/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net45/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net45/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/net451/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/net451/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/net451/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net451/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/net451/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard1.3/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard1.3/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard1.3/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard1.3/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "lib/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512", - "microsoft.testplatform.objectmodel.nuspec" - ] - }, - "Microsoft.TestPlatform.TestHost/17.1.0": { - "sha512": "JS0JDLniDhIzkSPLHz7N/x1CG8ywJOtwInFDYA3KQvbz+ojGoT5MT2YDVReL1b86zmNRV8339vsTSm/zh0RcMg==", - "type": "package", - "path": "microsoft.testplatform.testhost/17.1.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE_NET.txt", - "ThirdPartyNotices.txt", - "build/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp1.0/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x64/testhost.dll", - "build/netcoreapp1.0/x64/testhost.exe", - "build/netcoreapp1.0/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp1.0/x86/testhost.x86.dll", - "build/netcoreapp1.0/x86/testhost.x86.exe", - "build/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", - "build/netcoreapp2.1/x64/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x64/testhost.dll", - "build/netcoreapp2.1/x64/testhost.exe", - "build/netcoreapp2.1/x86/Microsoft.TestPlatform.PlatformAbstractions.dll", - "build/netcoreapp2.1/x86/testhost.x86.dll", - "build/netcoreapp2.1/x86/testhost.x86.exe", - "build/uap10.0/Microsoft.TestPlatform.TestHost.props", - "build/uap10.0/Microsoft.TestPlatform.TestHost.targets", - "build/uap10.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/cs/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/de/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/es/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/fr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/it/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ja/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ko/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pl/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/pt-BR/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/ru/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/tr/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/x64/msdia140.dll", - "build/uap10.0/x86/msdia140.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.TestPlatform.Utilities.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "build/uap10.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", - "lib/net45/_._", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp1.0/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/testhost.deps.json", - "lib/netcoreapp1.0/testhost.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/x64/msdia140.dll", - "lib/netcoreapp1.0/x86/msdia140.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp1.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/netcoreapp2.1/Microsoft.TestPlatform.Utilities.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/netcoreapp2.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/testhost.deps.json", - "lib/netcoreapp2.1/testhost.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/x64/msdia140.dll", - "lib/netcoreapp2.1/x86/msdia140.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", - "lib/netcoreapp2.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", - "lib/uap10.0/Microsoft.TestPlatform.CommunicationUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CoreUtilities.dll", - "lib/uap10.0/Microsoft.TestPlatform.CrossPlatEngine.dll", - "lib/uap10.0/Microsoft.TestPlatform.PlatformAbstractions.dll", - "lib/uap10.0/Microsoft.TestPlatform.Utilities.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.Common.dll", - "lib/uap10.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", - "lib/uap10.0/testhost.dll", - "microsoft.testplatform.testhost.17.1.0.nupkg.sha512", - "microsoft.testplatform.testhost.nuspec" - ] - }, - "Microsoft.Win32.Primitives/4.3.0": { - "sha512": "9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "type": "package", - "path": "microsoft.win32.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/Microsoft.Win32.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "microsoft.win32.primitives.4.3.0.nupkg.sha512", - "microsoft.win32.primitives.nuspec", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.dll", - "ref/netstandard1.3/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/de/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/es/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/fr/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/it/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ja/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ko/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/ru/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hans/Microsoft.Win32.Primitives.xml", - "ref/netstandard1.3/zh-hant/Microsoft.Win32.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._" - ] - }, - "MongoDB.Bson/2.14.1": { - "sha512": "+5LZSrOiQgubSyIfwdofiAiX1KM5m0mpZ55/o9yzJyZr9TviMbVbaxWjaHaQP4pv46fKA2LWSuuQD4SEj2tg0Q==", - "type": "package", - "path": "mongodb.bson/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Bson.dll", - "lib/net472/MongoDB.Bson.xml", - "lib/netstandard2.0/MongoDB.Bson.dll", - "lib/netstandard2.0/MongoDB.Bson.xml", - "lib/netstandard2.1/MongoDB.Bson.dll", - "lib/netstandard2.1/MongoDB.Bson.xml", - "mongodb.bson.2.14.1.nupkg.sha512", - "mongodb.bson.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver/2.14.1": { - "sha512": "vTFHpeQJF94316NPsR53hYPHogOi0l2O/gVYNmCcqpIKeL3xpNMLboPizlgHaJITxhIxZAWAxkx3Eem6prhO8w==", - "type": "package", - "path": "mongodb.driver/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "lib/net472/MongoDB.Driver.dll", - "lib/net472/MongoDB.Driver.xml", - "lib/netstandard2.0/MongoDB.Driver.dll", - "lib/netstandard2.0/MongoDB.Driver.xml", - "lib/netstandard2.1/MongoDB.Driver.dll", - "lib/netstandard2.1/MongoDB.Driver.xml", - "mongodb.driver.2.14.1.nupkg.sha512", - "mongodb.driver.nuspec", - "packageIcon.png" - ] - }, - "MongoDB.Driver.Core/2.14.1": { - "sha512": "m8K0jxvyAezHO/Fyj+ooblMzkIE02qBXTqRWycIGC31tV5Y43mTuwTE6J07zyEo+sI1O25Ak8hwJAmFfKJ5low==", - "type": "package", - "path": "mongodb.driver.core/2.14.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "THIRD-PARTY-NOTICES", - "build/MongoDB.Driver.Core.targets", - "content/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "content/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "content/Core/Compression/Snappy/lib/win/snappy32.dll", - "content/Core/Compression/Snappy/lib/win/snappy64.dll", - "content/Core/Compression/Zstandard/lib/linux/libzstd.so", - "content/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "content/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/net472/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/net472/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/net472/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.0/Core/Compression/Zstandard/lib/win/libzstd.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/linux/libsnappy64.so", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/osx/libsnappy64.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy32.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Snappy/lib/win/snappy64.dll", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/linux/libzstd.so", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/osx/libzstd.dylib", - "contentFiles/any/netstandard2.1/Core/Compression/Zstandard/lib/win/libzstd.dll", - "lib/net472/MongoDB.Driver.Core.dll", - "lib/net472/MongoDB.Driver.Core.xml", - "lib/netstandard2.0/MongoDB.Driver.Core.dll", - "lib/netstandard2.0/MongoDB.Driver.Core.xml", - "lib/netstandard2.1/MongoDB.Driver.Core.dll", - "lib/netstandard2.1/MongoDB.Driver.Core.xml", - "mongodb.driver.core.2.14.1.nupkg.sha512", - "mongodb.driver.core.nuspec", - "packageIcon.png", - "runtimes/linux/native/libsnappy64.so", - "runtimes/linux/native/libzstd.so", - "runtimes/osx/native/libsnappy64.dylib", - "runtimes/osx/native/libzstd.dylib", - "runtimes/win/native/libzstd.dll", - "runtimes/win/native/snappy32.dll", - "runtimes/win/native/snappy64.dll" - ] - }, - "MongoDB.Libmongocrypt/1.3.0": { - "sha512": "BAvqY/otOsmAGTsmzIYXRFysvpu8X7rYkDzEBX4iBlrF57SB+fD5px9sCPR6sETgfZ6k98qUNS6go5wtY9WOBA==", - "type": "package", - "path": "mongodb.libmongocrypt/1.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/MongoDB.Libmongocrypt.targets", - "content/libmongocrypt.dylib", - "content/libmongocrypt.so", - "content/mongocrypt.dll", - "contentFiles/any/net472/libmongocrypt.dylib", - "contentFiles/any/net472/libmongocrypt.so", - "contentFiles/any/net472/mongocrypt.dll", - "contentFiles/any/netstandard2.0/libmongocrypt.dylib", - "contentFiles/any/netstandard2.0/libmongocrypt.so", - "contentFiles/any/netstandard2.0/mongocrypt.dll", - "contentFiles/any/netstandard2.1/libmongocrypt.dylib", - "contentFiles/any/netstandard2.1/libmongocrypt.so", - "contentFiles/any/netstandard2.1/mongocrypt.dll", - "lib/net472/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.0/MongoDB.Libmongocrypt.dll", - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll", - "mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "mongodb.libmongocrypt.nuspec", - "runtimes/linux/native/libmongocrypt.so", - "runtimes/osx/native/libmongocrypt.dylib", - "runtimes/win/native/mongocrypt.dll" - ] - }, - "Moq/4.17.2": { - "sha512": "HytUPJ3/uks2UgJ9hIcyXm3YxpFAR4OJzbQwTHltbKGun3lFLhEHs97hiiPj1dY8jV/kasXeihTzDxct6Zf3iQ==", - "type": "package", - "path": "moq/4.17.2", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net45/Moq.dll", - "lib/net45/Moq.xml", - "lib/netstandard2.0/Moq.dll", - "lib/netstandard2.0/Moq.xml", - "lib/netstandard2.1/Moq.dll", - "lib/netstandard2.1/Moq.xml", - "moq.4.17.2.nupkg.sha512", - "moq.nuspec", - "moq.png" - ] - }, - "NETStandard.Library/1.6.1": { - "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "type": "package", - "path": "netstandard.library/1.6.1", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "netstandard.library.1.6.1.nupkg.sha512", - "netstandard.library.nuspec" - ] - }, - "Newtonsoft.Json/9.0.1": { - "sha512": "U82mHQSKaIk+lpSVCbWYKNavmNH1i5xrExDEquU1i6I5pV6UMOqRnJRSlKO3cMPfcpp0RgDY+8jUXHdQ4IfXvw==", - "type": "package", - "path": "newtonsoft.json/9.0.1", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net20/Newtonsoft.Json.dll", - "lib/net20/Newtonsoft.Json.xml", - "lib/net35/Newtonsoft.Json.dll", - "lib/net35/Newtonsoft.Json.xml", - "lib/net40/Newtonsoft.Json.dll", - "lib/net40/Newtonsoft.Json.xml", - "lib/net45/Newtonsoft.Json.dll", - "lib/net45/Newtonsoft.Json.xml", - "lib/netstandard1.0/Newtonsoft.Json.dll", - "lib/netstandard1.0/Newtonsoft.Json.xml", - "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.dll", - "lib/portable-net45+wp80+win8+wpa81/Newtonsoft.Json.xml", - "newtonsoft.json.9.0.1.nupkg.sha512", - "newtonsoft.json.nuspec", - "tools/install.ps1" - ] - }, - "Npgsql/5.0.7": { - "sha512": "EQWwxb2lN9w78YG4f6Fxhw5lFEx4LuaNGasXzw86kTOJxiPsUORSh/BTencNZJO4uVqGZx3EO9Z8JXTAvRjgeg==", - "type": "package", - "path": "npgsql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net5.0/Npgsql.dll", - "lib/net5.0/Npgsql.xml", - "lib/netcoreapp3.1/Npgsql.dll", - "lib/netcoreapp3.1/Npgsql.xml", - "lib/netstandard2.0/Npgsql.dll", - "lib/netstandard2.0/Npgsql.xml", - "lib/netstandard2.1/Npgsql.dll", - "lib/netstandard2.1/Npgsql.xml", - "npgsql.5.0.7.nupkg.sha512", - "npgsql.nuspec", - "postgresql.png" - ] - }, - "Npgsql.EntityFrameworkCore.PostgreSQL/5.0.7": { - "sha512": "RxFmJ0I4uppEAyR7b+xCfj4ZilUoGkKD4otUjiu+O3hv+vG6LUFOfJcB1ms5kOWTIvLEQHow9e+0zH7JWWV0ig==", - "type": "package", - "path": "npgsql.entityframeworkcore.postgresql/5.0.7", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/netstandard2.1/Npgsql.EntityFrameworkCore.PostgreSQL.dll", - "npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "npgsql.entityframeworkcore.postgresql.nuspec", - "postgresql.png" - ] - }, - "NuGet.Frameworks/5.11.0": { - "sha512": "eaiXkUjC4NPcquGWzAGMXjuxvLwc6XGKMptSyOGQeT0X70BUZObuybJFZLA0OfTdueLd3US23NBPTBb6iF3V1Q==", - "type": "package", - "path": "nuget.frameworks/5.11.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net40/NuGet.Frameworks.dll", - "lib/net40/NuGet.Frameworks.xml", - "lib/net472/NuGet.Frameworks.dll", - "lib/net472/NuGet.Frameworks.xml", - "lib/netstandard2.0/NuGet.Frameworks.dll", - "lib/netstandard2.0/NuGet.Frameworks.xml", - "nuget.frameworks.5.11.0.nupkg.sha512", - "nuget.frameworks.nuspec" - ] - }, - "RabbitMQ.Client/6.2.3": { - "sha512": "qogCFK03qrNAKV3b9bfWsyT7bUIjkaTeg8sw+mqV8lTP6qc9VDu9MepW4LNUbQ0L/PTczf2f3CWzE+KIYYqBLA==", - "type": "package", - "path": "rabbitmq.client/6.2.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "icon.png", - "lib/net461/RabbitMQ.Client.dll", - "lib/net461/RabbitMQ.Client.xml", - "lib/netstandard2.0/RabbitMQ.Client.dll", - "lib/netstandard2.0/RabbitMQ.Client.xml", - "rabbitmq.client.6.2.3.nupkg.sha512", - "rabbitmq.client.nuspec" - ] - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "type": "package", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/debian.8-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "type": "package", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.23-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "type": "package", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/fedora.24-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.native.System/4.3.0": { - "sha512": "c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "type": "package", - "path": "runtime.native.system/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.4.3.0.nupkg.sha512", - "runtime.native.system.nuspec" - ] - }, - "runtime.native.System.IO.Compression/4.3.0": { - "sha512": "INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "type": "package", - "path": "runtime.native.system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "runtime.native.system.io.compression.nuspec" - ] - }, - "runtime.native.System.Net.Http/4.3.0": { - "sha512": "ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "type": "package", - "path": "runtime.native.system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.net.http.4.3.0.nupkg.sha512", - "runtime.native.system.net.http.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "type": "package", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.apple.nuspec" - ] - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "type": "package", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.0/_._", - "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.native.system.security.cryptography.openssl.nuspec" - ] - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "type": "package", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.13.2-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "type": "package", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/opensuse.42.1-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "sha512": "kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.Apple.dylib" - ] - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "type": "package", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/osx.10.10-x64/native/System.Security.Cryptography.Native.OpenSsl.dylib" - ] - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "type": "package", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/rhel.7-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "type": "package", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.14.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "type": "package", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.04-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "type": "package", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.nuspec", - "runtimes/ubuntu.16.10-x64/native/System.Security.Cryptography.Native.OpenSsl.so" - ] - }, - "SharpCompress/0.30.1": { - "sha512": "XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "type": "package", - "path": "sharpcompress/0.30.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net461/SharpCompress.dll", - "lib/net5.0/SharpCompress.dll", - "lib/netcoreapp3.1/SharpCompress.dll", - "lib/netstandard2.0/SharpCompress.dll", - "lib/netstandard2.1/SharpCompress.dll", - "sharpcompress.0.30.1.nupkg.sha512", - "sharpcompress.nuspec" - ] - }, - "System.AppContext/4.3.0": { - "sha512": "fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "type": "package", - "path": "system.appcontext/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.AppContext.dll", - "lib/net463/System.AppContext.dll", - "lib/netcore50/System.AppContext.dll", - "lib/netstandard1.6/System.AppContext.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.AppContext.dll", - "ref/net463/System.AppContext.dll", - "ref/netstandard/_._", - "ref/netstandard1.3/System.AppContext.dll", - "ref/netstandard1.3/System.AppContext.xml", - "ref/netstandard1.3/de/System.AppContext.xml", - "ref/netstandard1.3/es/System.AppContext.xml", - "ref/netstandard1.3/fr/System.AppContext.xml", - "ref/netstandard1.3/it/System.AppContext.xml", - "ref/netstandard1.3/ja/System.AppContext.xml", - "ref/netstandard1.3/ko/System.AppContext.xml", - "ref/netstandard1.3/ru/System.AppContext.xml", - "ref/netstandard1.3/zh-hans/System.AppContext.xml", - "ref/netstandard1.3/zh-hant/System.AppContext.xml", - "ref/netstandard1.6/System.AppContext.dll", - "ref/netstandard1.6/System.AppContext.xml", - "ref/netstandard1.6/de/System.AppContext.xml", - "ref/netstandard1.6/es/System.AppContext.xml", - "ref/netstandard1.6/fr/System.AppContext.xml", - "ref/netstandard1.6/it/System.AppContext.xml", - "ref/netstandard1.6/ja/System.AppContext.xml", - "ref/netstandard1.6/ko/System.AppContext.xml", - "ref/netstandard1.6/ru/System.AppContext.xml", - "ref/netstandard1.6/zh-hans/System.AppContext.xml", - "ref/netstandard1.6/zh-hant/System.AppContext.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.AppContext.dll", - "system.appcontext.4.3.0.nupkg.sha512", - "system.appcontext.nuspec" - ] - }, - "System.Buffers/4.5.1": { - "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "type": "package", - "path": "system.buffers/4.5.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Buffers.dll", - "lib/net461/System.Buffers.xml", - "lib/netcoreapp2.0/_._", - "lib/netstandard1.1/System.Buffers.dll", - "lib/netstandard1.1/System.Buffers.xml", - "lib/netstandard2.0/System.Buffers.dll", - "lib/netstandard2.0/System.Buffers.xml", - "lib/uap10.0.16299/_._", - "ref/net45/System.Buffers.dll", - "ref/net45/System.Buffers.xml", - "ref/netcoreapp2.0/_._", - "ref/netstandard1.1/System.Buffers.dll", - "ref/netstandard1.1/System.Buffers.xml", - "ref/netstandard2.0/System.Buffers.dll", - "ref/netstandard2.0/System.Buffers.xml", - "ref/uap10.0.16299/_._", - "system.buffers.4.5.1.nupkg.sha512", - "system.buffers.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections/4.3.0": { - "sha512": "3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "type": "package", - "path": "system.collections/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.dll", - "ref/netcore50/System.Collections.xml", - "ref/netcore50/de/System.Collections.xml", - "ref/netcore50/es/System.Collections.xml", - "ref/netcore50/fr/System.Collections.xml", - "ref/netcore50/it/System.Collections.xml", - "ref/netcore50/ja/System.Collections.xml", - "ref/netcore50/ko/System.Collections.xml", - "ref/netcore50/ru/System.Collections.xml", - "ref/netcore50/zh-hans/System.Collections.xml", - "ref/netcore50/zh-hant/System.Collections.xml", - "ref/netstandard1.0/System.Collections.dll", - "ref/netstandard1.0/System.Collections.xml", - "ref/netstandard1.0/de/System.Collections.xml", - "ref/netstandard1.0/es/System.Collections.xml", - "ref/netstandard1.0/fr/System.Collections.xml", - "ref/netstandard1.0/it/System.Collections.xml", - "ref/netstandard1.0/ja/System.Collections.xml", - "ref/netstandard1.0/ko/System.Collections.xml", - "ref/netstandard1.0/ru/System.Collections.xml", - "ref/netstandard1.0/zh-hans/System.Collections.xml", - "ref/netstandard1.0/zh-hant/System.Collections.xml", - "ref/netstandard1.3/System.Collections.dll", - "ref/netstandard1.3/System.Collections.xml", - "ref/netstandard1.3/de/System.Collections.xml", - "ref/netstandard1.3/es/System.Collections.xml", - "ref/netstandard1.3/fr/System.Collections.xml", - "ref/netstandard1.3/it/System.Collections.xml", - "ref/netstandard1.3/ja/System.Collections.xml", - "ref/netstandard1.3/ko/System.Collections.xml", - "ref/netstandard1.3/ru/System.Collections.xml", - "ref/netstandard1.3/zh-hans/System.Collections.xml", - "ref/netstandard1.3/zh-hant/System.Collections.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.4.3.0.nupkg.sha512", - "system.collections.nuspec" - ] - }, - "System.Collections.Concurrent/4.3.0": { - "sha512": "ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "type": "package", - "path": "system.collections.concurrent/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Collections.Concurrent.dll", - "lib/netstandard1.3/System.Collections.Concurrent.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Collections.Concurrent.dll", - "ref/netcore50/System.Collections.Concurrent.xml", - "ref/netcore50/de/System.Collections.Concurrent.xml", - "ref/netcore50/es/System.Collections.Concurrent.xml", - "ref/netcore50/fr/System.Collections.Concurrent.xml", - "ref/netcore50/it/System.Collections.Concurrent.xml", - "ref/netcore50/ja/System.Collections.Concurrent.xml", - "ref/netcore50/ko/System.Collections.Concurrent.xml", - "ref/netcore50/ru/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", - "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.1/System.Collections.Concurrent.dll", - "ref/netstandard1.1/System.Collections.Concurrent.xml", - "ref/netstandard1.1/de/System.Collections.Concurrent.xml", - "ref/netstandard1.1/es/System.Collections.Concurrent.xml", - "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.1/it/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", - "ref/netstandard1.3/System.Collections.Concurrent.dll", - "ref/netstandard1.3/System.Collections.Concurrent.xml", - "ref/netstandard1.3/de/System.Collections.Concurrent.xml", - "ref/netstandard1.3/es/System.Collections.Concurrent.xml", - "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", - "ref/netstandard1.3/it/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", - "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.concurrent.4.3.0.nupkg.sha512", - "system.collections.concurrent.nuspec" - ] - }, - "System.Collections.Immutable/5.0.0": { - "sha512": "FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", - "type": "package", - "path": "system.collections.immutable/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Collections.Immutable.dll", - "lib/net461/System.Collections.Immutable.xml", - "lib/netstandard1.0/System.Collections.Immutable.dll", - "lib/netstandard1.0/System.Collections.Immutable.xml", - "lib/netstandard1.3/System.Collections.Immutable.dll", - "lib/netstandard1.3/System.Collections.Immutable.xml", - "lib/netstandard2.0/System.Collections.Immutable.dll", - "lib/netstandard2.0/System.Collections.Immutable.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml", - "system.collections.immutable.5.0.0.nupkg.sha512", - "system.collections.immutable.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Collections.NonGeneric/4.3.0": { - "sha512": "prtjIEMhGUnQq6RnPEYLpFt8AtLbp9yq2zxOSrY7KJJZrw25Fi97IzBqY7iqssbM61Ek5b8f3MG/sG1N2sN5KA==", - "type": "package", - "path": "system.collections.nongeneric/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.NonGeneric.dll", - "lib/netstandard1.3/System.Collections.NonGeneric.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.dll", - "ref/netstandard1.3/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/de/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/es/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/fr/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/it/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ja/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ko/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/ru/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hans/System.Collections.NonGeneric.xml", - "ref/netstandard1.3/zh-hant/System.Collections.NonGeneric.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.nongeneric.4.3.0.nupkg.sha512", - "system.collections.nongeneric.nuspec" - ] - }, - "System.Collections.Specialized/4.3.0": { - "sha512": "Epx8PoVZR0iuOnJJDzp7pWvdfMMOAvpUo95pC4ScH2mJuXkKA2Y4aR3cG9qt2klHgSons1WFh4kcGW7cSXvrxg==", - "type": "package", - "path": "system.collections.specialized/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Collections.Specialized.dll", - "lib/netstandard1.3/System.Collections.Specialized.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.dll", - "ref/netstandard1.3/System.Collections.Specialized.xml", - "ref/netstandard1.3/de/System.Collections.Specialized.xml", - "ref/netstandard1.3/es/System.Collections.Specialized.xml", - "ref/netstandard1.3/fr/System.Collections.Specialized.xml", - "ref/netstandard1.3/it/System.Collections.Specialized.xml", - "ref/netstandard1.3/ja/System.Collections.Specialized.xml", - "ref/netstandard1.3/ko/System.Collections.Specialized.xml", - "ref/netstandard1.3/ru/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hans/System.Collections.Specialized.xml", - "ref/netstandard1.3/zh-hant/System.Collections.Specialized.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.collections.specialized.4.3.0.nupkg.sha512", - "system.collections.specialized.nuspec" - ] - }, - "System.ComponentModel/4.3.0": { - "sha512": "VyGn1jGRZVfxnh8EdvDCi71v3bMXrsu8aYJOwoV7SNDLVhiEqwP86pPMyRGsDsxhXAm2b3o9OIqeETfN5qfezw==", - "type": "package", - "path": "system.componentmodel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ComponentModel.dll", - "lib/netstandard1.3/System.ComponentModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ComponentModel.dll", - "ref/netcore50/System.ComponentModel.xml", - "ref/netcore50/de/System.ComponentModel.xml", - "ref/netcore50/es/System.ComponentModel.xml", - "ref/netcore50/fr/System.ComponentModel.xml", - "ref/netcore50/it/System.ComponentModel.xml", - "ref/netcore50/ja/System.ComponentModel.xml", - "ref/netcore50/ko/System.ComponentModel.xml", - "ref/netcore50/ru/System.ComponentModel.xml", - "ref/netcore50/zh-hans/System.ComponentModel.xml", - "ref/netcore50/zh-hant/System.ComponentModel.xml", - "ref/netstandard1.0/System.ComponentModel.dll", - "ref/netstandard1.0/System.ComponentModel.xml", - "ref/netstandard1.0/de/System.ComponentModel.xml", - "ref/netstandard1.0/es/System.ComponentModel.xml", - "ref/netstandard1.0/fr/System.ComponentModel.xml", - "ref/netstandard1.0/it/System.ComponentModel.xml", - "ref/netstandard1.0/ja/System.ComponentModel.xml", - "ref/netstandard1.0/ko/System.ComponentModel.xml", - "ref/netstandard1.0/ru/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.4.3.0.nupkg.sha512", - "system.componentmodel.nuspec" - ] - }, - "System.ComponentModel.Annotations/5.0.0": { - "sha512": "dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", - "type": "package", - "path": "system.componentmodel.annotations/5.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net461/System.ComponentModel.Annotations.dll", - "lib/netcore50/System.ComponentModel.Annotations.dll", - "lib/netstandard1.4/System.ComponentModel.Annotations.dll", - "lib/netstandard2.0/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.dll", - "lib/netstandard2.1/System.ComponentModel.Annotations.xml", - "lib/portable-net45+win8/_._", - "lib/win8/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net461/System.ComponentModel.Annotations.dll", - "ref/net461/System.ComponentModel.Annotations.xml", - "ref/netcore50/System.ComponentModel.Annotations.dll", - "ref/netcore50/System.ComponentModel.Annotations.xml", - "ref/netcore50/de/System.ComponentModel.Annotations.xml", - "ref/netcore50/es/System.ComponentModel.Annotations.xml", - "ref/netcore50/fr/System.ComponentModel.Annotations.xml", - "ref/netcore50/it/System.ComponentModel.Annotations.xml", - "ref/netcore50/ja/System.ComponentModel.Annotations.xml", - "ref/netcore50/ko/System.ComponentModel.Annotations.xml", - "ref/netcore50/ru/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netcore50/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/System.ComponentModel.Annotations.dll", - "ref/netstandard1.1/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.1/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/System.ComponentModel.Annotations.dll", - "ref/netstandard1.3/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.3/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/System.ComponentModel.Annotations.dll", - "ref/netstandard1.4/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/de/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/es/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/fr/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/it/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ja/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ko/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/ru/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hans/System.ComponentModel.Annotations.xml", - "ref/netstandard1.4/zh-hant/System.ComponentModel.Annotations.xml", - "ref/netstandard2.0/System.ComponentModel.Annotations.dll", - "ref/netstandard2.0/System.ComponentModel.Annotations.xml", - "ref/netstandard2.1/System.ComponentModel.Annotations.dll", - "ref/netstandard2.1/System.ComponentModel.Annotations.xml", - "ref/portable-net45+win8/_._", - "ref/win8/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.annotations.5.0.0.nupkg.sha512", - "system.componentmodel.annotations.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.ComponentModel.Primitives/4.3.0": { - "sha512": "j8GUkCpM8V4d4vhLIIoBLGey2Z5bCkMVNjEZseyAlm4n5arcsJOeI3zkUP+zvZgzsbLTYh4lYeP/ZD/gdIAPrw==", - "type": "package", - "path": "system.componentmodel.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.Primitives.dll", - "lib/netstandard1.0/System.ComponentModel.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.dll", - "ref/netstandard1.0/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.primitives.4.3.0.nupkg.sha512", - "system.componentmodel.primitives.nuspec" - ] - }, - "System.ComponentModel.TypeConverter/4.3.0": { - "sha512": "16pQ6P+EdhcXzPiEK4kbA953Fu0MNG2ovxTZU81/qsCd1zPRsKc3uif5NgvllCY598k6bI0KUyKW8fanlfaDQg==", - "type": "package", - "path": "system.componentmodel.typeconverter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.ComponentModel.TypeConverter.dll", - "lib/net462/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "lib/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/System.ComponentModel.TypeConverter.dll", - "ref/net462/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.dll", - "ref/netstandard1.5/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/de/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/es/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/fr/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/it/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ja/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ko/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/ru/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hans/System.ComponentModel.TypeConverter.xml", - "ref/netstandard1.5/zh-hant/System.ComponentModel.TypeConverter.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "system.componentmodel.typeconverter.nuspec" - ] - }, - "System.Console/4.3.0": { - "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "type": "package", - "path": "system.console/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Console.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Console.dll", - "ref/netstandard1.3/System.Console.dll", - "ref/netstandard1.3/System.Console.xml", - "ref/netstandard1.3/de/System.Console.xml", - "ref/netstandard1.3/es/System.Console.xml", - "ref/netstandard1.3/fr/System.Console.xml", - "ref/netstandard1.3/it/System.Console.xml", - "ref/netstandard1.3/ja/System.Console.xml", - "ref/netstandard1.3/ko/System.Console.xml", - "ref/netstandard1.3/ru/System.Console.xml", - "ref/netstandard1.3/zh-hans/System.Console.xml", - "ref/netstandard1.3/zh-hant/System.Console.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.console.4.3.0.nupkg.sha512", - "system.console.nuspec" - ] - }, - "System.Diagnostics.Debug/4.3.0": { - "sha512": "ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "type": "package", - "path": "system.diagnostics.debug/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Debug.dll", - "ref/netcore50/System.Diagnostics.Debug.xml", - "ref/netcore50/de/System.Diagnostics.Debug.xml", - "ref/netcore50/es/System.Diagnostics.Debug.xml", - "ref/netcore50/fr/System.Diagnostics.Debug.xml", - "ref/netcore50/it/System.Diagnostics.Debug.xml", - "ref/netcore50/ja/System.Diagnostics.Debug.xml", - "ref/netcore50/ko/System.Diagnostics.Debug.xml", - "ref/netcore50/ru/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/System.Diagnostics.Debug.dll", - "ref/netstandard1.0/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/System.Diagnostics.Debug.dll", - "ref/netstandard1.3/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.debug.4.3.0.nupkg.sha512", - "system.diagnostics.debug.nuspec" - ] - }, - "System.Diagnostics.DiagnosticSource/5.0.1": { - "sha512": "uXQEYqav2V3zP6OwkOKtLv+qIi6z3m1hsGyKwXX7ZA7htT4shoVccGxnJ9kVRFPNAsi1ArZTq2oh7WOto6GbkQ==", - "type": "package", - "path": "system.diagnostics.diagnosticsource/5.0.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net45/System.Diagnostics.DiagnosticSource.dll", - "lib/net45/System.Diagnostics.DiagnosticSource.xml", - "lib/net46/System.Diagnostics.DiagnosticSource.dll", - "lib/net46/System.Diagnostics.DiagnosticSource.xml", - "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", - "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", - "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", - "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml", - "system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "system.diagnostics.diagnosticsource.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Diagnostics.Tools/4.3.0": { - "sha512": "UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "type": "package", - "path": "system.diagnostics.tools/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Diagnostics.Tools.dll", - "ref/netcore50/System.Diagnostics.Tools.xml", - "ref/netcore50/de/System.Diagnostics.Tools.xml", - "ref/netcore50/es/System.Diagnostics.Tools.xml", - "ref/netcore50/fr/System.Diagnostics.Tools.xml", - "ref/netcore50/it/System.Diagnostics.Tools.xml", - "ref/netcore50/ja/System.Diagnostics.Tools.xml", - "ref/netcore50/ko/System.Diagnostics.Tools.xml", - "ref/netcore50/ru/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/System.Diagnostics.Tools.dll", - "ref/netstandard1.0/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", - "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tools.4.3.0.nupkg.sha512", - "system.diagnostics.tools.nuspec" - ] - }, - "System.Diagnostics.TraceSource/4.3.0": { - "sha512": "VnYp1NxGx8Ww731y2LJ1vpfb/DKVNKEZ8Jsh5SgQTZREL/YpWRArgh9pI8CDLmgHspZmLL697CaLvH85qQpRiw==", - "type": "package", - "path": "system.diagnostics.tracesource/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Diagnostics.TraceSource.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.dll", - "ref/netstandard1.3/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/de/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/es/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/fr/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/it/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ja/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ko/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/ru/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.TraceSource.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.TraceSource.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/net46/System.Diagnostics.TraceSource.dll", - "runtimes/win/lib/netstandard1.3/System.Diagnostics.TraceSource.dll", - "system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "system.diagnostics.tracesource.nuspec" - ] - }, - "System.Diagnostics.Tracing/4.3.0": { - "sha512": "rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "type": "package", - "path": "system.diagnostics.tracing/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Diagnostics.Tracing.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.dll", - "ref/netcore50/System.Diagnostics.Tracing.xml", - "ref/netcore50/de/System.Diagnostics.Tracing.xml", - "ref/netcore50/es/System.Diagnostics.Tracing.xml", - "ref/netcore50/fr/System.Diagnostics.Tracing.xml", - "ref/netcore50/it/System.Diagnostics.Tracing.xml", - "ref/netcore50/ja/System.Diagnostics.Tracing.xml", - "ref/netcore50/ko/System.Diagnostics.Tracing.xml", - "ref/netcore50/ru/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netcore50/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/System.Diagnostics.Tracing.dll", - "ref/netstandard1.1/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.1/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/System.Diagnostics.Tracing.dll", - "ref/netstandard1.2/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.2/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/System.Diagnostics.Tracing.dll", - "ref/netstandard1.3/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.3/zh-hant/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/System.Diagnostics.Tracing.dll", - "ref/netstandard1.5/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/de/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/es/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/fr/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/it/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ja/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ko/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/ru/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hans/System.Diagnostics.Tracing.xml", - "ref/netstandard1.5/zh-hant/System.Diagnostics.Tracing.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.diagnostics.tracing.4.3.0.nupkg.sha512", - "system.diagnostics.tracing.nuspec" - ] - }, - "System.Dynamic.Runtime/4.3.0": { - "sha512": "SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "type": "package", - "path": "system.dynamic.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Dynamic.Runtime.dll", - "lib/netstandard1.3/System.Dynamic.Runtime.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Dynamic.Runtime.dll", - "ref/netcore50/System.Dynamic.Runtime.xml", - "ref/netcore50/de/System.Dynamic.Runtime.xml", - "ref/netcore50/es/System.Dynamic.Runtime.xml", - "ref/netcore50/fr/System.Dynamic.Runtime.xml", - "ref/netcore50/it/System.Dynamic.Runtime.xml", - "ref/netcore50/ja/System.Dynamic.Runtime.xml", - "ref/netcore50/ko/System.Dynamic.Runtime.xml", - "ref/netcore50/ru/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", - "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/System.Dynamic.Runtime.dll", - "ref/netstandard1.0/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/System.Dynamic.Runtime.dll", - "ref/netstandard1.3/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll", - "system.dynamic.runtime.4.3.0.nupkg.sha512", - "system.dynamic.runtime.nuspec" - ] - }, - "System.Globalization/4.3.0": { - "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "type": "package", - "path": "system.globalization/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Globalization.dll", - "ref/netcore50/System.Globalization.xml", - "ref/netcore50/de/System.Globalization.xml", - "ref/netcore50/es/System.Globalization.xml", - "ref/netcore50/fr/System.Globalization.xml", - "ref/netcore50/it/System.Globalization.xml", - "ref/netcore50/ja/System.Globalization.xml", - "ref/netcore50/ko/System.Globalization.xml", - "ref/netcore50/ru/System.Globalization.xml", - "ref/netcore50/zh-hans/System.Globalization.xml", - "ref/netcore50/zh-hant/System.Globalization.xml", - "ref/netstandard1.0/System.Globalization.dll", - "ref/netstandard1.0/System.Globalization.xml", - "ref/netstandard1.0/de/System.Globalization.xml", - "ref/netstandard1.0/es/System.Globalization.xml", - "ref/netstandard1.0/fr/System.Globalization.xml", - "ref/netstandard1.0/it/System.Globalization.xml", - "ref/netstandard1.0/ja/System.Globalization.xml", - "ref/netstandard1.0/ko/System.Globalization.xml", - "ref/netstandard1.0/ru/System.Globalization.xml", - "ref/netstandard1.0/zh-hans/System.Globalization.xml", - "ref/netstandard1.0/zh-hant/System.Globalization.xml", - "ref/netstandard1.3/System.Globalization.dll", - "ref/netstandard1.3/System.Globalization.xml", - "ref/netstandard1.3/de/System.Globalization.xml", - "ref/netstandard1.3/es/System.Globalization.xml", - "ref/netstandard1.3/fr/System.Globalization.xml", - "ref/netstandard1.3/it/System.Globalization.xml", - "ref/netstandard1.3/ja/System.Globalization.xml", - "ref/netstandard1.3/ko/System.Globalization.xml", - "ref/netstandard1.3/ru/System.Globalization.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.4.3.0.nupkg.sha512", - "system.globalization.nuspec" - ] - }, - "System.Globalization.Calendars/4.3.0": { - "sha512": "GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "type": "package", - "path": "system.globalization.calendars/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Calendars.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.dll", - "ref/netstandard1.3/System.Globalization.Calendars.xml", - "ref/netstandard1.3/de/System.Globalization.Calendars.xml", - "ref/netstandard1.3/es/System.Globalization.Calendars.xml", - "ref/netstandard1.3/fr/System.Globalization.Calendars.xml", - "ref/netstandard1.3/it/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ja/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ko/System.Globalization.Calendars.xml", - "ref/netstandard1.3/ru/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Calendars.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Calendars.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.globalization.calendars.4.3.0.nupkg.sha512", - "system.globalization.calendars.nuspec" - ] - }, - "System.Globalization.Extensions/4.3.0": { - "sha512": "FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "type": "package", - "path": "system.globalization.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Globalization.Extensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.dll", - "ref/netstandard1.3/System.Globalization.Extensions.xml", - "ref/netstandard1.3/de/System.Globalization.Extensions.xml", - "ref/netstandard1.3/es/System.Globalization.Extensions.xml", - "ref/netstandard1.3/fr/System.Globalization.Extensions.xml", - "ref/netstandard1.3/it/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ja/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ko/System.Globalization.Extensions.xml", - "ref/netstandard1.3/ru/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Globalization.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Globalization.Extensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Globalization.Extensions.dll", - "runtimes/win/lib/net46/System.Globalization.Extensions.dll", - "runtimes/win/lib/netstandard1.3/System.Globalization.Extensions.dll", - "system.globalization.extensions.4.3.0.nupkg.sha512", - "system.globalization.extensions.nuspec" - ] - }, - "System.IO/4.3.0": { - "sha512": "3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "type": "package", - "path": "system.io/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.IO.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.IO.dll", - "ref/netcore50/System.IO.dll", - "ref/netcore50/System.IO.xml", - "ref/netcore50/de/System.IO.xml", - "ref/netcore50/es/System.IO.xml", - "ref/netcore50/fr/System.IO.xml", - "ref/netcore50/it/System.IO.xml", - "ref/netcore50/ja/System.IO.xml", - "ref/netcore50/ko/System.IO.xml", - "ref/netcore50/ru/System.IO.xml", - "ref/netcore50/zh-hans/System.IO.xml", - "ref/netcore50/zh-hant/System.IO.xml", - "ref/netstandard1.0/System.IO.dll", - "ref/netstandard1.0/System.IO.xml", - "ref/netstandard1.0/de/System.IO.xml", - "ref/netstandard1.0/es/System.IO.xml", - "ref/netstandard1.0/fr/System.IO.xml", - "ref/netstandard1.0/it/System.IO.xml", - "ref/netstandard1.0/ja/System.IO.xml", - "ref/netstandard1.0/ko/System.IO.xml", - "ref/netstandard1.0/ru/System.IO.xml", - "ref/netstandard1.0/zh-hans/System.IO.xml", - "ref/netstandard1.0/zh-hant/System.IO.xml", - "ref/netstandard1.3/System.IO.dll", - "ref/netstandard1.3/System.IO.xml", - "ref/netstandard1.3/de/System.IO.xml", - "ref/netstandard1.3/es/System.IO.xml", - "ref/netstandard1.3/fr/System.IO.xml", - "ref/netstandard1.3/it/System.IO.xml", - "ref/netstandard1.3/ja/System.IO.xml", - "ref/netstandard1.3/ko/System.IO.xml", - "ref/netstandard1.3/ru/System.IO.xml", - "ref/netstandard1.3/zh-hans/System.IO.xml", - "ref/netstandard1.3/zh-hant/System.IO.xml", - "ref/netstandard1.5/System.IO.dll", - "ref/netstandard1.5/System.IO.xml", - "ref/netstandard1.5/de/System.IO.xml", - "ref/netstandard1.5/es/System.IO.xml", - "ref/netstandard1.5/fr/System.IO.xml", - "ref/netstandard1.5/it/System.IO.xml", - "ref/netstandard1.5/ja/System.IO.xml", - "ref/netstandard1.5/ko/System.IO.xml", - "ref/netstandard1.5/ru/System.IO.xml", - "ref/netstandard1.5/zh-hans/System.IO.xml", - "ref/netstandard1.5/zh-hant/System.IO.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.4.3.0.nupkg.sha512", - "system.io.nuspec" - ] - }, - "System.IO.Compression/4.3.0": { - "sha512": "YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "type": "package", - "path": "system.io.compression/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.IO.Compression.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.dll", - "ref/netcore50/System.IO.Compression.xml", - "ref/netcore50/de/System.IO.Compression.xml", - "ref/netcore50/es/System.IO.Compression.xml", - "ref/netcore50/fr/System.IO.Compression.xml", - "ref/netcore50/it/System.IO.Compression.xml", - "ref/netcore50/ja/System.IO.Compression.xml", - "ref/netcore50/ko/System.IO.Compression.xml", - "ref/netcore50/ru/System.IO.Compression.xml", - "ref/netcore50/zh-hans/System.IO.Compression.xml", - "ref/netcore50/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.1/System.IO.Compression.dll", - "ref/netstandard1.1/System.IO.Compression.xml", - "ref/netstandard1.1/de/System.IO.Compression.xml", - "ref/netstandard1.1/es/System.IO.Compression.xml", - "ref/netstandard1.1/fr/System.IO.Compression.xml", - "ref/netstandard1.1/it/System.IO.Compression.xml", - "ref/netstandard1.1/ja/System.IO.Compression.xml", - "ref/netstandard1.1/ko/System.IO.Compression.xml", - "ref/netstandard1.1/ru/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.1/zh-hant/System.IO.Compression.xml", - "ref/netstandard1.3/System.IO.Compression.dll", - "ref/netstandard1.3/System.IO.Compression.xml", - "ref/netstandard1.3/de/System.IO.Compression.xml", - "ref/netstandard1.3/es/System.IO.Compression.xml", - "ref/netstandard1.3/fr/System.IO.Compression.xml", - "ref/netstandard1.3/it/System.IO.Compression.xml", - "ref/netstandard1.3/ja/System.IO.Compression.xml", - "ref/netstandard1.3/ko/System.IO.Compression.xml", - "ref/netstandard1.3/ru/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.IO.Compression.dll", - "runtimes/win/lib/net46/System.IO.Compression.dll", - "runtimes/win/lib/netstandard1.3/System.IO.Compression.dll", - "system.io.compression.4.3.0.nupkg.sha512", - "system.io.compression.nuspec" - ] - }, - "System.IO.Compression.ZipFile/4.3.0": { - "sha512": "G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "type": "package", - "path": "system.io.compression.zipfile/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.Compression.ZipFile.dll", - "lib/netstandard1.3/System.IO.Compression.ZipFile.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.dll", - "ref/netstandard1.3/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/de/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/es/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/fr/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/it/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ja/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ko/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/ru/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hans/System.IO.Compression.ZipFile.xml", - "ref/netstandard1.3/zh-hant/System.IO.Compression.ZipFile.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.compression.zipfile.4.3.0.nupkg.sha512", - "system.io.compression.zipfile.nuspec" - ] - }, - "System.IO.FileSystem/4.3.0": { - "sha512": "3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "type": "package", - "path": "system.io.filesystem/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.dll", - "ref/netstandard1.3/System.IO.FileSystem.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.4.3.0.nupkg.sha512", - "system.io.filesystem.nuspec" - ] - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "sha512": "6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "type": "package", - "path": "system.io.filesystem.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.IO.FileSystem.Primitives.dll", - "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", - "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "system.io.filesystem.primitives.nuspec" - ] - }, - "System.Linq/4.3.0": { - "sha512": "5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "type": "package", - "path": "system.linq/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.dll", - "lib/netcore50/System.Linq.dll", - "lib/netstandard1.6/System.Linq.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.dll", - "ref/netcore50/System.Linq.dll", - "ref/netcore50/System.Linq.xml", - "ref/netcore50/de/System.Linq.xml", - "ref/netcore50/es/System.Linq.xml", - "ref/netcore50/fr/System.Linq.xml", - "ref/netcore50/it/System.Linq.xml", - "ref/netcore50/ja/System.Linq.xml", - "ref/netcore50/ko/System.Linq.xml", - "ref/netcore50/ru/System.Linq.xml", - "ref/netcore50/zh-hans/System.Linq.xml", - "ref/netcore50/zh-hant/System.Linq.xml", - "ref/netstandard1.0/System.Linq.dll", - "ref/netstandard1.0/System.Linq.xml", - "ref/netstandard1.0/de/System.Linq.xml", - "ref/netstandard1.0/es/System.Linq.xml", - "ref/netstandard1.0/fr/System.Linq.xml", - "ref/netstandard1.0/it/System.Linq.xml", - "ref/netstandard1.0/ja/System.Linq.xml", - "ref/netstandard1.0/ko/System.Linq.xml", - "ref/netstandard1.0/ru/System.Linq.xml", - "ref/netstandard1.0/zh-hans/System.Linq.xml", - "ref/netstandard1.0/zh-hant/System.Linq.xml", - "ref/netstandard1.6/System.Linq.dll", - "ref/netstandard1.6/System.Linq.xml", - "ref/netstandard1.6/de/System.Linq.xml", - "ref/netstandard1.6/es/System.Linq.xml", - "ref/netstandard1.6/fr/System.Linq.xml", - "ref/netstandard1.6/it/System.Linq.xml", - "ref/netstandard1.6/ja/System.Linq.xml", - "ref/netstandard1.6/ko/System.Linq.xml", - "ref/netstandard1.6/ru/System.Linq.xml", - "ref/netstandard1.6/zh-hans/System.Linq.xml", - "ref/netstandard1.6/zh-hant/System.Linq.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.linq.4.3.0.nupkg.sha512", - "system.linq.nuspec" - ] - }, - "System.Linq.Expressions/4.3.0": { - "sha512": "PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "type": "package", - "path": "system.linq.expressions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Linq.Expressions.dll", - "lib/netcore50/System.Linq.Expressions.dll", - "lib/netstandard1.6/System.Linq.Expressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.dll", - "ref/netcore50/System.Linq.Expressions.xml", - "ref/netcore50/de/System.Linq.Expressions.xml", - "ref/netcore50/es/System.Linq.Expressions.xml", - "ref/netcore50/fr/System.Linq.Expressions.xml", - "ref/netcore50/it/System.Linq.Expressions.xml", - "ref/netcore50/ja/System.Linq.Expressions.xml", - "ref/netcore50/ko/System.Linq.Expressions.xml", - "ref/netcore50/ru/System.Linq.Expressions.xml", - "ref/netcore50/zh-hans/System.Linq.Expressions.xml", - "ref/netcore50/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.0/System.Linq.Expressions.dll", - "ref/netstandard1.0/System.Linq.Expressions.xml", - "ref/netstandard1.0/de/System.Linq.Expressions.xml", - "ref/netstandard1.0/es/System.Linq.Expressions.xml", - "ref/netstandard1.0/fr/System.Linq.Expressions.xml", - "ref/netstandard1.0/it/System.Linq.Expressions.xml", - "ref/netstandard1.0/ja/System.Linq.Expressions.xml", - "ref/netstandard1.0/ko/System.Linq.Expressions.xml", - "ref/netstandard1.0/ru/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.3/System.Linq.Expressions.dll", - "ref/netstandard1.3/System.Linq.Expressions.xml", - "ref/netstandard1.3/de/System.Linq.Expressions.xml", - "ref/netstandard1.3/es/System.Linq.Expressions.xml", - "ref/netstandard1.3/fr/System.Linq.Expressions.xml", - "ref/netstandard1.3/it/System.Linq.Expressions.xml", - "ref/netstandard1.3/ja/System.Linq.Expressions.xml", - "ref/netstandard1.3/ko/System.Linq.Expressions.xml", - "ref/netstandard1.3/ru/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", - "ref/netstandard1.6/System.Linq.Expressions.dll", - "ref/netstandard1.6/System.Linq.Expressions.xml", - "ref/netstandard1.6/de/System.Linq.Expressions.xml", - "ref/netstandard1.6/es/System.Linq.Expressions.xml", - "ref/netstandard1.6/fr/System.Linq.Expressions.xml", - "ref/netstandard1.6/it/System.Linq.Expressions.xml", - "ref/netstandard1.6/ja/System.Linq.Expressions.xml", - "ref/netstandard1.6/ko/System.Linq.Expressions.xml", - "ref/netstandard1.6/ru/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hans/System.Linq.Expressions.xml", - "ref/netstandard1.6/zh-hant/System.Linq.Expressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll", - "system.linq.expressions.4.3.0.nupkg.sha512", - "system.linq.expressions.nuspec" - ] - }, - "System.Memory/4.5.4": { - "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "type": "package", - "path": "system.memory/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Memory.dll", - "lib/net461/System.Memory.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.1/System.Memory.dll", - "lib/netstandard1.1/System.Memory.xml", - "lib/netstandard2.0/System.Memory.dll", - "lib/netstandard2.0/System.Memory.xml", - "ref/netcoreapp2.1/_._", - "system.memory.4.5.4.nupkg.sha512", - "system.memory.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Net.Http/4.3.0": { - "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "type": "package", - "path": "system.net.http/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/Xamarinmac20/_._", - "lib/monoandroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/net46/System.Net.Http.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/Xamarinmac20/_._", - "ref/monoandroid10/_._", - "ref/monotouch10/_._", - "ref/net45/_._", - "ref/net46/System.Net.Http.dll", - "ref/net46/System.Net.Http.xml", - "ref/net46/de/System.Net.Http.xml", - "ref/net46/es/System.Net.Http.xml", - "ref/net46/fr/System.Net.Http.xml", - "ref/net46/it/System.Net.Http.xml", - "ref/net46/ja/System.Net.Http.xml", - "ref/net46/ko/System.Net.Http.xml", - "ref/net46/ru/System.Net.Http.xml", - "ref/net46/zh-hans/System.Net.Http.xml", - "ref/net46/zh-hant/System.Net.Http.xml", - "ref/netcore50/System.Net.Http.dll", - "ref/netcore50/System.Net.Http.xml", - "ref/netcore50/de/System.Net.Http.xml", - "ref/netcore50/es/System.Net.Http.xml", - "ref/netcore50/fr/System.Net.Http.xml", - "ref/netcore50/it/System.Net.Http.xml", - "ref/netcore50/ja/System.Net.Http.xml", - "ref/netcore50/ko/System.Net.Http.xml", - "ref/netcore50/ru/System.Net.Http.xml", - "ref/netcore50/zh-hans/System.Net.Http.xml", - "ref/netcore50/zh-hant/System.Net.Http.xml", - "ref/netstandard1.1/System.Net.Http.dll", - "ref/netstandard1.1/System.Net.Http.xml", - "ref/netstandard1.1/de/System.Net.Http.xml", - "ref/netstandard1.1/es/System.Net.Http.xml", - "ref/netstandard1.1/fr/System.Net.Http.xml", - "ref/netstandard1.1/it/System.Net.Http.xml", - "ref/netstandard1.1/ja/System.Net.Http.xml", - "ref/netstandard1.1/ko/System.Net.Http.xml", - "ref/netstandard1.1/ru/System.Net.Http.xml", - "ref/netstandard1.1/zh-hans/System.Net.Http.xml", - "ref/netstandard1.1/zh-hant/System.Net.Http.xml", - "ref/netstandard1.3/System.Net.Http.dll", - "ref/netstandard1.3/System.Net.Http.xml", - "ref/netstandard1.3/de/System.Net.Http.xml", - "ref/netstandard1.3/es/System.Net.Http.xml", - "ref/netstandard1.3/fr/System.Net.Http.xml", - "ref/netstandard1.3/it/System.Net.Http.xml", - "ref/netstandard1.3/ja/System.Net.Http.xml", - "ref/netstandard1.3/ko/System.Net.Http.xml", - "ref/netstandard1.3/ru/System.Net.Http.xml", - "ref/netstandard1.3/zh-hans/System.Net.Http.xml", - "ref/netstandard1.3/zh-hant/System.Net.Http.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Net.Http.dll", - "runtimes/win/lib/net46/System.Net.Http.dll", - "runtimes/win/lib/netcore50/System.Net.Http.dll", - "runtimes/win/lib/netstandard1.3/System.Net.Http.dll", - "system.net.http.4.3.0.nupkg.sha512", - "system.net.http.nuspec" - ] - }, - "System.Net.Primitives/4.3.0": { - "sha512": "qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "type": "package", - "path": "system.net.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Net.Primitives.dll", - "ref/netcore50/System.Net.Primitives.xml", - "ref/netcore50/de/System.Net.Primitives.xml", - "ref/netcore50/es/System.Net.Primitives.xml", - "ref/netcore50/fr/System.Net.Primitives.xml", - "ref/netcore50/it/System.Net.Primitives.xml", - "ref/netcore50/ja/System.Net.Primitives.xml", - "ref/netcore50/ko/System.Net.Primitives.xml", - "ref/netcore50/ru/System.Net.Primitives.xml", - "ref/netcore50/zh-hans/System.Net.Primitives.xml", - "ref/netcore50/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.0/System.Net.Primitives.dll", - "ref/netstandard1.0/System.Net.Primitives.xml", - "ref/netstandard1.0/de/System.Net.Primitives.xml", - "ref/netstandard1.0/es/System.Net.Primitives.xml", - "ref/netstandard1.0/fr/System.Net.Primitives.xml", - "ref/netstandard1.0/it/System.Net.Primitives.xml", - "ref/netstandard1.0/ja/System.Net.Primitives.xml", - "ref/netstandard1.0/ko/System.Net.Primitives.xml", - "ref/netstandard1.0/ru/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.1/System.Net.Primitives.dll", - "ref/netstandard1.1/System.Net.Primitives.xml", - "ref/netstandard1.1/de/System.Net.Primitives.xml", - "ref/netstandard1.1/es/System.Net.Primitives.xml", - "ref/netstandard1.1/fr/System.Net.Primitives.xml", - "ref/netstandard1.1/it/System.Net.Primitives.xml", - "ref/netstandard1.1/ja/System.Net.Primitives.xml", - "ref/netstandard1.1/ko/System.Net.Primitives.xml", - "ref/netstandard1.1/ru/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.1/zh-hant/System.Net.Primitives.xml", - "ref/netstandard1.3/System.Net.Primitives.dll", - "ref/netstandard1.3/System.Net.Primitives.xml", - "ref/netstandard1.3/de/System.Net.Primitives.xml", - "ref/netstandard1.3/es/System.Net.Primitives.xml", - "ref/netstandard1.3/fr/System.Net.Primitives.xml", - "ref/netstandard1.3/it/System.Net.Primitives.xml", - "ref/netstandard1.3/ja/System.Net.Primitives.xml", - "ref/netstandard1.3/ko/System.Net.Primitives.xml", - "ref/netstandard1.3/ru/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Net.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Net.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.primitives.4.3.0.nupkg.sha512", - "system.net.primitives.nuspec" - ] - }, - "System.Net.Sockets/4.3.0": { - "sha512": "m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "type": "package", - "path": "system.net.sockets/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Net.Sockets.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.dll", - "ref/netstandard1.3/System.Net.Sockets.xml", - "ref/netstandard1.3/de/System.Net.Sockets.xml", - "ref/netstandard1.3/es/System.Net.Sockets.xml", - "ref/netstandard1.3/fr/System.Net.Sockets.xml", - "ref/netstandard1.3/it/System.Net.Sockets.xml", - "ref/netstandard1.3/ja/System.Net.Sockets.xml", - "ref/netstandard1.3/ko/System.Net.Sockets.xml", - "ref/netstandard1.3/ru/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hans/System.Net.Sockets.xml", - "ref/netstandard1.3/zh-hant/System.Net.Sockets.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.net.sockets.4.3.0.nupkg.sha512", - "system.net.sockets.nuspec" - ] - }, - "System.ObjectModel/4.3.0": { - "sha512": "bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "type": "package", - "path": "system.objectmodel/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.ObjectModel.dll", - "lib/netstandard1.3/System.ObjectModel.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.ObjectModel.dll", - "ref/netcore50/System.ObjectModel.xml", - "ref/netcore50/de/System.ObjectModel.xml", - "ref/netcore50/es/System.ObjectModel.xml", - "ref/netcore50/fr/System.ObjectModel.xml", - "ref/netcore50/it/System.ObjectModel.xml", - "ref/netcore50/ja/System.ObjectModel.xml", - "ref/netcore50/ko/System.ObjectModel.xml", - "ref/netcore50/ru/System.ObjectModel.xml", - "ref/netcore50/zh-hans/System.ObjectModel.xml", - "ref/netcore50/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.0/System.ObjectModel.dll", - "ref/netstandard1.0/System.ObjectModel.xml", - "ref/netstandard1.0/de/System.ObjectModel.xml", - "ref/netstandard1.0/es/System.ObjectModel.xml", - "ref/netstandard1.0/fr/System.ObjectModel.xml", - "ref/netstandard1.0/it/System.ObjectModel.xml", - "ref/netstandard1.0/ja/System.ObjectModel.xml", - "ref/netstandard1.0/ko/System.ObjectModel.xml", - "ref/netstandard1.0/ru/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.0/zh-hant/System.ObjectModel.xml", - "ref/netstandard1.3/System.ObjectModel.dll", - "ref/netstandard1.3/System.ObjectModel.xml", - "ref/netstandard1.3/de/System.ObjectModel.xml", - "ref/netstandard1.3/es/System.ObjectModel.xml", - "ref/netstandard1.3/fr/System.ObjectModel.xml", - "ref/netstandard1.3/it/System.ObjectModel.xml", - "ref/netstandard1.3/ja/System.ObjectModel.xml", - "ref/netstandard1.3/ko/System.ObjectModel.xml", - "ref/netstandard1.3/ru/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hans/System.ObjectModel.xml", - "ref/netstandard1.3/zh-hant/System.ObjectModel.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.objectmodel.4.3.0.nupkg.sha512", - "system.objectmodel.nuspec" - ] - }, - "System.Reflection/4.3.0": { - "sha512": "KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "type": "package", - "path": "system.reflection/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Reflection.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Reflection.dll", - "ref/netcore50/System.Reflection.dll", - "ref/netcore50/System.Reflection.xml", - "ref/netcore50/de/System.Reflection.xml", - "ref/netcore50/es/System.Reflection.xml", - "ref/netcore50/fr/System.Reflection.xml", - "ref/netcore50/it/System.Reflection.xml", - "ref/netcore50/ja/System.Reflection.xml", - "ref/netcore50/ko/System.Reflection.xml", - "ref/netcore50/ru/System.Reflection.xml", - "ref/netcore50/zh-hans/System.Reflection.xml", - "ref/netcore50/zh-hant/System.Reflection.xml", - "ref/netstandard1.0/System.Reflection.dll", - "ref/netstandard1.0/System.Reflection.xml", - "ref/netstandard1.0/de/System.Reflection.xml", - "ref/netstandard1.0/es/System.Reflection.xml", - "ref/netstandard1.0/fr/System.Reflection.xml", - "ref/netstandard1.0/it/System.Reflection.xml", - "ref/netstandard1.0/ja/System.Reflection.xml", - "ref/netstandard1.0/ko/System.Reflection.xml", - "ref/netstandard1.0/ru/System.Reflection.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.xml", - "ref/netstandard1.3/System.Reflection.dll", - "ref/netstandard1.3/System.Reflection.xml", - "ref/netstandard1.3/de/System.Reflection.xml", - "ref/netstandard1.3/es/System.Reflection.xml", - "ref/netstandard1.3/fr/System.Reflection.xml", - "ref/netstandard1.3/it/System.Reflection.xml", - "ref/netstandard1.3/ja/System.Reflection.xml", - "ref/netstandard1.3/ko/System.Reflection.xml", - "ref/netstandard1.3/ru/System.Reflection.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.xml", - "ref/netstandard1.5/System.Reflection.dll", - "ref/netstandard1.5/System.Reflection.xml", - "ref/netstandard1.5/de/System.Reflection.xml", - "ref/netstandard1.5/es/System.Reflection.xml", - "ref/netstandard1.5/fr/System.Reflection.xml", - "ref/netstandard1.5/it/System.Reflection.xml", - "ref/netstandard1.5/ja/System.Reflection.xml", - "ref/netstandard1.5/ko/System.Reflection.xml", - "ref/netstandard1.5/ru/System.Reflection.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.4.3.0.nupkg.sha512", - "system.reflection.nuspec" - ] - }, - "System.Reflection.Emit/4.3.0": { - "sha512": "228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "type": "package", - "path": "system.reflection.emit/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/monotouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.dll", - "lib/netstandard1.3/System.Reflection.Emit.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/net45/_._", - "ref/netstandard1.1/System.Reflection.Emit.dll", - "ref/netstandard1.1/System.Reflection.Emit.xml", - "ref/netstandard1.1/de/System.Reflection.Emit.xml", - "ref/netstandard1.1/es/System.Reflection.Emit.xml", - "ref/netstandard1.1/fr/System.Reflection.Emit.xml", - "ref/netstandard1.1/it/System.Reflection.Emit.xml", - "ref/netstandard1.1/ja/System.Reflection.Emit.xml", - "ref/netstandard1.1/ko/System.Reflection.Emit.xml", - "ref/netstandard1.1/ru/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hans/System.Reflection.Emit.xml", - "ref/netstandard1.1/zh-hant/System.Reflection.Emit.xml", - "ref/xamarinmac20/_._", - "system.reflection.emit.4.3.0.nupkg.sha512", - "system.reflection.emit.nuspec" - ] - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "sha512": "59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "type": "package", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", - "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", - "ref/netstandard1.0/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.ILGeneration.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.ILGeneration.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "system.reflection.emit.ilgeneration.nuspec" - ] - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "sha512": "oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "type": "package", - "path": "system.reflection.emit.lightweight/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Reflection.Emit.Lightweight.dll", - "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", - "lib/portable-net45+wp8/_._", - "lib/wp80/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.dll", - "ref/netstandard1.0/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/de/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/es/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/fr/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/it/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ja/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ko/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/ru/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Emit.Lightweight.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Emit.Lightweight.xml", - "ref/portable-net45+wp8/_._", - "ref/wp80/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/_._", - "system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "system.reflection.emit.lightweight.nuspec" - ] - }, - "System.Reflection.Extensions/4.3.0": { - "sha512": "rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "type": "package", - "path": "system.reflection.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Extensions.dll", - "ref/netcore50/System.Reflection.Extensions.xml", - "ref/netcore50/de/System.Reflection.Extensions.xml", - "ref/netcore50/es/System.Reflection.Extensions.xml", - "ref/netcore50/fr/System.Reflection.Extensions.xml", - "ref/netcore50/it/System.Reflection.Extensions.xml", - "ref/netcore50/ja/System.Reflection.Extensions.xml", - "ref/netcore50/ko/System.Reflection.Extensions.xml", - "ref/netcore50/ru/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", - "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", - "ref/netstandard1.0/System.Reflection.Extensions.dll", - "ref/netstandard1.0/System.Reflection.Extensions.xml", - "ref/netstandard1.0/de/System.Reflection.Extensions.xml", - "ref/netstandard1.0/es/System.Reflection.Extensions.xml", - "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", - "ref/netstandard1.0/it/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", - "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.extensions.4.3.0.nupkg.sha512", - "system.reflection.extensions.nuspec" - ] - }, - "System.Reflection.Metadata/1.6.0": { - "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", - "type": "package", - "path": "system.reflection.metadata/1.6.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/netstandard1.1/System.Reflection.Metadata.dll", - "lib/netstandard1.1/System.Reflection.Metadata.xml", - "lib/netstandard2.0/System.Reflection.Metadata.dll", - "lib/netstandard2.0/System.Reflection.Metadata.xml", - "lib/portable-net45+win8/System.Reflection.Metadata.dll", - "lib/portable-net45+win8/System.Reflection.Metadata.xml", - "system.reflection.metadata.1.6.0.nupkg.sha512", - "system.reflection.metadata.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Reflection.Primitives/4.3.0": { - "sha512": "5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "type": "package", - "path": "system.reflection.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Reflection.Primitives.dll", - "ref/netcore50/System.Reflection.Primitives.xml", - "ref/netcore50/de/System.Reflection.Primitives.xml", - "ref/netcore50/es/System.Reflection.Primitives.xml", - "ref/netcore50/fr/System.Reflection.Primitives.xml", - "ref/netcore50/it/System.Reflection.Primitives.xml", - "ref/netcore50/ja/System.Reflection.Primitives.xml", - "ref/netcore50/ko/System.Reflection.Primitives.xml", - "ref/netcore50/ru/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", - "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", - "ref/netstandard1.0/System.Reflection.Primitives.dll", - "ref/netstandard1.0/System.Reflection.Primitives.xml", - "ref/netstandard1.0/de/System.Reflection.Primitives.xml", - "ref/netstandard1.0/es/System.Reflection.Primitives.xml", - "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", - "ref/netstandard1.0/it/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", - "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.reflection.primitives.4.3.0.nupkg.sha512", - "system.reflection.primitives.nuspec" - ] - }, - "System.Reflection.TypeExtensions/4.3.0": { - "sha512": "7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", - "type": "package", - "path": "system.reflection.typeextensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Reflection.TypeExtensions.dll", - "lib/net462/System.Reflection.TypeExtensions.dll", - "lib/netcore50/System.Reflection.TypeExtensions.dll", - "lib/netstandard1.5/System.Reflection.TypeExtensions.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Reflection.TypeExtensions.dll", - "ref/net462/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.3/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.3/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/System.Reflection.TypeExtensions.dll", - "ref/netstandard1.5/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/de/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/es/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/fr/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/it/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ja/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ko/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/ru/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hans/System.Reflection.TypeExtensions.xml", - "ref/netstandard1.5/zh-hant/System.Reflection.TypeExtensions.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Reflection.TypeExtensions.dll", - "system.reflection.typeextensions.4.3.0.nupkg.sha512", - "system.reflection.typeextensions.nuspec" - ] - }, - "System.Resources.ResourceManager/4.3.0": { - "sha512": "/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "type": "package", - "path": "system.resources.resourcemanager/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Resources.ResourceManager.dll", - "ref/netcore50/System.Resources.ResourceManager.xml", - "ref/netcore50/de/System.Resources.ResourceManager.xml", - "ref/netcore50/es/System.Resources.ResourceManager.xml", - "ref/netcore50/fr/System.Resources.ResourceManager.xml", - "ref/netcore50/it/System.Resources.ResourceManager.xml", - "ref/netcore50/ja/System.Resources.ResourceManager.xml", - "ref/netcore50/ko/System.Resources.ResourceManager.xml", - "ref/netcore50/ru/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", - "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/System.Resources.ResourceManager.dll", - "ref/netstandard1.0/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", - "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.resources.resourcemanager.4.3.0.nupkg.sha512", - "system.resources.resourcemanager.nuspec" - ] - }, - "System.Runtime/4.3.0": { - "sha512": "JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "type": "package", - "path": "system.runtime/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.dll", - "lib/portable-net45+win8+wp80+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.dll", - "ref/netcore50/System.Runtime.dll", - "ref/netcore50/System.Runtime.xml", - "ref/netcore50/de/System.Runtime.xml", - "ref/netcore50/es/System.Runtime.xml", - "ref/netcore50/fr/System.Runtime.xml", - "ref/netcore50/it/System.Runtime.xml", - "ref/netcore50/ja/System.Runtime.xml", - "ref/netcore50/ko/System.Runtime.xml", - "ref/netcore50/ru/System.Runtime.xml", - "ref/netcore50/zh-hans/System.Runtime.xml", - "ref/netcore50/zh-hant/System.Runtime.xml", - "ref/netstandard1.0/System.Runtime.dll", - "ref/netstandard1.0/System.Runtime.xml", - "ref/netstandard1.0/de/System.Runtime.xml", - "ref/netstandard1.0/es/System.Runtime.xml", - "ref/netstandard1.0/fr/System.Runtime.xml", - "ref/netstandard1.0/it/System.Runtime.xml", - "ref/netstandard1.0/ja/System.Runtime.xml", - "ref/netstandard1.0/ko/System.Runtime.xml", - "ref/netstandard1.0/ru/System.Runtime.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.xml", - "ref/netstandard1.2/System.Runtime.dll", - "ref/netstandard1.2/System.Runtime.xml", - "ref/netstandard1.2/de/System.Runtime.xml", - "ref/netstandard1.2/es/System.Runtime.xml", - "ref/netstandard1.2/fr/System.Runtime.xml", - "ref/netstandard1.2/it/System.Runtime.xml", - "ref/netstandard1.2/ja/System.Runtime.xml", - "ref/netstandard1.2/ko/System.Runtime.xml", - "ref/netstandard1.2/ru/System.Runtime.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.xml", - "ref/netstandard1.3/System.Runtime.dll", - "ref/netstandard1.3/System.Runtime.xml", - "ref/netstandard1.3/de/System.Runtime.xml", - "ref/netstandard1.3/es/System.Runtime.xml", - "ref/netstandard1.3/fr/System.Runtime.xml", - "ref/netstandard1.3/it/System.Runtime.xml", - "ref/netstandard1.3/ja/System.Runtime.xml", - "ref/netstandard1.3/ko/System.Runtime.xml", - "ref/netstandard1.3/ru/System.Runtime.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.xml", - "ref/netstandard1.5/System.Runtime.dll", - "ref/netstandard1.5/System.Runtime.xml", - "ref/netstandard1.5/de/System.Runtime.xml", - "ref/netstandard1.5/es/System.Runtime.xml", - "ref/netstandard1.5/fr/System.Runtime.xml", - "ref/netstandard1.5/it/System.Runtime.xml", - "ref/netstandard1.5/ja/System.Runtime.xml", - "ref/netstandard1.5/ko/System.Runtime.xml", - "ref/netstandard1.5/ru/System.Runtime.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.xml", - "ref/portable-net45+win8+wp80+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.4.3.0.nupkg.sha512", - "system.runtime.nuspec" - ] - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "type": "package", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", - "buildTransitive/netcoreapp3.1/_._", - "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", - "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", - "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "system.runtime.compilerservices.unsafe.nuspec", - "useSharedDesignerContext.txt" - ] - }, - "System.Runtime.Extensions/4.3.0": { - "sha512": "guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "type": "package", - "path": "system.runtime.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.dll", - "ref/netcore50/System.Runtime.Extensions.xml", - "ref/netcore50/de/System.Runtime.Extensions.xml", - "ref/netcore50/es/System.Runtime.Extensions.xml", - "ref/netcore50/fr/System.Runtime.Extensions.xml", - "ref/netcore50/it/System.Runtime.Extensions.xml", - "ref/netcore50/ja/System.Runtime.Extensions.xml", - "ref/netcore50/ko/System.Runtime.Extensions.xml", - "ref/netcore50/ru/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", - "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.0/System.Runtime.Extensions.dll", - "ref/netstandard1.0/System.Runtime.Extensions.xml", - "ref/netstandard1.0/de/System.Runtime.Extensions.xml", - "ref/netstandard1.0/es/System.Runtime.Extensions.xml", - "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.0/it/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.3/System.Runtime.Extensions.dll", - "ref/netstandard1.3/System.Runtime.Extensions.xml", - "ref/netstandard1.3/de/System.Runtime.Extensions.xml", - "ref/netstandard1.3/es/System.Runtime.Extensions.xml", - "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.3/it/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", - "ref/netstandard1.5/System.Runtime.Extensions.dll", - "ref/netstandard1.5/System.Runtime.Extensions.xml", - "ref/netstandard1.5/de/System.Runtime.Extensions.xml", - "ref/netstandard1.5/es/System.Runtime.Extensions.xml", - "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", - "ref/netstandard1.5/it/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", - "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.extensions.4.3.0.nupkg.sha512", - "system.runtime.extensions.nuspec" - ] - }, - "System.Runtime.Handles/4.3.0": { - "sha512": "OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "type": "package", - "path": "system.runtime.handles/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/_._", - "ref/netstandard1.3/System.Runtime.Handles.dll", - "ref/netstandard1.3/System.Runtime.Handles.xml", - "ref/netstandard1.3/de/System.Runtime.Handles.xml", - "ref/netstandard1.3/es/System.Runtime.Handles.xml", - "ref/netstandard1.3/fr/System.Runtime.Handles.xml", - "ref/netstandard1.3/it/System.Runtime.Handles.xml", - "ref/netstandard1.3/ja/System.Runtime.Handles.xml", - "ref/netstandard1.3/ko/System.Runtime.Handles.xml", - "ref/netstandard1.3/ru/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.handles.4.3.0.nupkg.sha512", - "system.runtime.handles.nuspec" - ] - }, - "System.Runtime.InteropServices/4.3.0": { - "sha512": "uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "type": "package", - "path": "system.runtime.interopservices/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net462/System.Runtime.InteropServices.dll", - "lib/net463/System.Runtime.InteropServices.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net462/System.Runtime.InteropServices.dll", - "ref/net463/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.dll", - "ref/netcore50/System.Runtime.InteropServices.xml", - "ref/netcore50/de/System.Runtime.InteropServices.xml", - "ref/netcore50/es/System.Runtime.InteropServices.xml", - "ref/netcore50/fr/System.Runtime.InteropServices.xml", - "ref/netcore50/it/System.Runtime.InteropServices.xml", - "ref/netcore50/ja/System.Runtime.InteropServices.xml", - "ref/netcore50/ko/System.Runtime.InteropServices.xml", - "ref/netcore50/ru/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", - "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", - "ref/netcoreapp1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.dll", - "ref/netstandard1.1/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/System.Runtime.InteropServices.dll", - "ref/netstandard1.2/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/System.Runtime.InteropServices.dll", - "ref/netstandard1.3/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/System.Runtime.InteropServices.dll", - "ref/netstandard1.5/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", - "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.interopservices.4.3.0.nupkg.sha512", - "system.runtime.interopservices.nuspec" - ] - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "sha512": "cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "type": "package", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/win8/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/wpa81/System.Runtime.InteropServices.RuntimeInformation.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/unix/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/net45/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netcore50/System.Runtime.InteropServices.RuntimeInformation.dll", - "runtimes/win/lib/netstandard1.1/System.Runtime.InteropServices.RuntimeInformation.dll", - "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "system.runtime.interopservices.runtimeinformation.nuspec" - ] - }, - "System.Runtime.Numerics/4.3.0": { - "sha512": "yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "type": "package", - "path": "system.runtime.numerics/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Runtime.Numerics.dll", - "lib/netstandard1.3/System.Runtime.Numerics.dll", - "lib/portable-net45+win8+wpa81/_._", - "lib/win8/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Runtime.Numerics.dll", - "ref/netcore50/System.Runtime.Numerics.xml", - "ref/netcore50/de/System.Runtime.Numerics.xml", - "ref/netcore50/es/System.Runtime.Numerics.xml", - "ref/netcore50/fr/System.Runtime.Numerics.xml", - "ref/netcore50/it/System.Runtime.Numerics.xml", - "ref/netcore50/ja/System.Runtime.Numerics.xml", - "ref/netcore50/ko/System.Runtime.Numerics.xml", - "ref/netcore50/ru/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", - "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", - "ref/netstandard1.1/System.Runtime.Numerics.dll", - "ref/netstandard1.1/System.Runtime.Numerics.xml", - "ref/netstandard1.1/de/System.Runtime.Numerics.xml", - "ref/netstandard1.1/es/System.Runtime.Numerics.xml", - "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", - "ref/netstandard1.1/it/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", - "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", - "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", - "ref/portable-net45+win8+wpa81/_._", - "ref/win8/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.runtime.numerics.4.3.0.nupkg.sha512", - "system.runtime.numerics.nuspec" - ] - }, - "System.Runtime.Serialization.Primitives/4.1.1": { - "sha512": "HZ6Du5QrTG8MNJbf4e4qMO3JRAkIboGT5Fk804uZtg3Gq516S7hAqTm2UZKUHa7/6HUGdVy3AqMQKbns06G/cg==", - "type": "package", - "path": "system.runtime.serialization.primitives/4.1.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Runtime.Serialization.Primitives.dll", - "lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.dll", - "ref/netcore50/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", - "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", - "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll", - "system.runtime.serialization.primitives.4.1.1.nupkg.sha512", - "system.runtime.serialization.primitives.nuspec" - ] - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "type": "package", - "path": "system.security.cryptography.algorithms/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Algorithms.dll", - "lib/net461/System.Security.Cryptography.Algorithms.dll", - "lib/net463/System.Security.Cryptography.Algorithms.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Algorithms.dll", - "ref/net461/System.Security.Cryptography.Algorithms.dll", - "ref/net463/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", - "ref/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/osx/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.Algorithms.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Algorithms.dll", - "system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "system.security.cryptography.algorithms.nuspec" - ] - }, - "System.Security.Cryptography.Cng/4.3.0": { - "sha512": "03idZOqFlsKRL4W+LuCpJ6dBYDUWReug6lZjBa3uJWnk5sPCUXckocevTaUA8iT/MFSrY/2HXkOt753xQ/cf8g==", - "type": "package", - "path": "system.security.cryptography.cng/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/net46/System.Security.Cryptography.Cng.dll", - "lib/net461/System.Security.Cryptography.Cng.dll", - "lib/net463/System.Security.Cryptography.Cng.dll", - "ref/net46/System.Security.Cryptography.Cng.dll", - "ref/net461/System.Security.Cryptography.Cng.dll", - "ref/net463/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", - "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/net463/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", - "system.security.cryptography.cng.4.3.0.nupkg.sha512", - "system.security.cryptography.cng.nuspec" - ] - }, - "System.Security.Cryptography.Csp/4.3.0": { - "sha512": "X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "type": "package", - "path": "system.security.cryptography.csp/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Csp.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Csp.dll", - "ref/netstandard1.3/System.Security.Cryptography.Csp.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Csp.dll", - "runtimes/win/lib/netcore50/_._", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Csp.dll", - "system.security.cryptography.csp.4.3.0.nupkg.sha512", - "system.security.cryptography.csp.nuspec" - ] - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "sha512": "1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "type": "package", - "path": "system.security.cryptography.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Encoding.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.Encoding.dll", - "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", - "system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "system.security.cryptography.encoding.nuspec" - ] - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "sha512": "h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "type": "package", - "path": "system.security.cryptography.openssl/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "ref/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.OpenSsl.dll", - "system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "system.security.cryptography.openssl.nuspec" - ] - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "sha512": "7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "type": "package", - "path": "system.security.cryptography.primitives/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.Primitives.dll", - "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.Primitives.dll", - "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "system.security.cryptography.primitives.nuspec" - ] - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "type": "package", - "path": "system.security.cryptography.x509certificates/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Security.Cryptography.X509Certificates.dll", - "lib/net461/System.Security.Cryptography.X509Certificates.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Security.Cryptography.X509Certificates.dll", - "ref/net461/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", - "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", - "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/unix/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net46/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/net461/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", - "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.X509Certificates.dll", - "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "system.security.cryptography.x509certificates.nuspec" - ] - }, - "System.Text.Encoding/4.3.0": { - "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "type": "package", - "path": "system.text.encoding/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.dll", - "ref/netcore50/System.Text.Encoding.xml", - "ref/netcore50/de/System.Text.Encoding.xml", - "ref/netcore50/es/System.Text.Encoding.xml", - "ref/netcore50/fr/System.Text.Encoding.xml", - "ref/netcore50/it/System.Text.Encoding.xml", - "ref/netcore50/ja/System.Text.Encoding.xml", - "ref/netcore50/ko/System.Text.Encoding.xml", - "ref/netcore50/ru/System.Text.Encoding.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.0/System.Text.Encoding.dll", - "ref/netstandard1.0/System.Text.Encoding.xml", - "ref/netstandard1.0/de/System.Text.Encoding.xml", - "ref/netstandard1.0/es/System.Text.Encoding.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.xml", - "ref/netstandard1.0/it/System.Text.Encoding.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", - "ref/netstandard1.3/System.Text.Encoding.dll", - "ref/netstandard1.3/System.Text.Encoding.xml", - "ref/netstandard1.3/de/System.Text.Encoding.xml", - "ref/netstandard1.3/es/System.Text.Encoding.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.xml", - "ref/netstandard1.3/it/System.Text.Encoding.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.4.3.0.nupkg.sha512", - "system.text.encoding.nuspec" - ] - }, - "System.Text.Encoding.Extensions/4.3.0": { - "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "type": "package", - "path": "system.text.encoding.extensions/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Text.Encoding.Extensions.dll", - "ref/netcore50/System.Text.Encoding.Extensions.xml", - "ref/netcore50/de/System.Text.Encoding.Extensions.xml", - "ref/netcore50/es/System.Text.Encoding.Extensions.xml", - "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", - "ref/netcore50/it/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", - "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", - "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", - "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.encoding.extensions.4.3.0.nupkg.sha512", - "system.text.encoding.extensions.nuspec" - ] - }, - "System.Text.RegularExpressions/4.3.0": { - "sha512": "RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "type": "package", - "path": "system.text.regularexpressions/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net463/System.Text.RegularExpressions.dll", - "lib/netcore50/System.Text.RegularExpressions.dll", - "lib/netstandard1.6/System.Text.RegularExpressions.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net463/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.dll", - "ref/netcore50/System.Text.RegularExpressions.xml", - "ref/netcore50/de/System.Text.RegularExpressions.xml", - "ref/netcore50/es/System.Text.RegularExpressions.xml", - "ref/netcore50/fr/System.Text.RegularExpressions.xml", - "ref/netcore50/it/System.Text.RegularExpressions.xml", - "ref/netcore50/ja/System.Text.RegularExpressions.xml", - "ref/netcore50/ko/System.Text.RegularExpressions.xml", - "ref/netcore50/ru/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hans/System.Text.RegularExpressions.xml", - "ref/netcore50/zh-hant/System.Text.RegularExpressions.xml", - "ref/netcoreapp1.1/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.dll", - "ref/netstandard1.0/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.0/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/System.Text.RegularExpressions.dll", - "ref/netstandard1.3/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.3/zh-hant/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/System.Text.RegularExpressions.dll", - "ref/netstandard1.6/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/de/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/es/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/fr/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/it/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ja/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ko/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/ru/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hans/System.Text.RegularExpressions.xml", - "ref/netstandard1.6/zh-hant/System.Text.RegularExpressions.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.text.regularexpressions.4.3.0.nupkg.sha512", - "system.text.regularexpressions.nuspec" - ] - }, - "System.Threading/4.3.0": { - "sha512": "VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "type": "package", - "path": "system.threading/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Threading.dll", - "lib/netstandard1.3/System.Threading.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.dll", - "ref/netcore50/System.Threading.xml", - "ref/netcore50/de/System.Threading.xml", - "ref/netcore50/es/System.Threading.xml", - "ref/netcore50/fr/System.Threading.xml", - "ref/netcore50/it/System.Threading.xml", - "ref/netcore50/ja/System.Threading.xml", - "ref/netcore50/ko/System.Threading.xml", - "ref/netcore50/ru/System.Threading.xml", - "ref/netcore50/zh-hans/System.Threading.xml", - "ref/netcore50/zh-hant/System.Threading.xml", - "ref/netstandard1.0/System.Threading.dll", - "ref/netstandard1.0/System.Threading.xml", - "ref/netstandard1.0/de/System.Threading.xml", - "ref/netstandard1.0/es/System.Threading.xml", - "ref/netstandard1.0/fr/System.Threading.xml", - "ref/netstandard1.0/it/System.Threading.xml", - "ref/netstandard1.0/ja/System.Threading.xml", - "ref/netstandard1.0/ko/System.Threading.xml", - "ref/netstandard1.0/ru/System.Threading.xml", - "ref/netstandard1.0/zh-hans/System.Threading.xml", - "ref/netstandard1.0/zh-hant/System.Threading.xml", - "ref/netstandard1.3/System.Threading.dll", - "ref/netstandard1.3/System.Threading.xml", - "ref/netstandard1.3/de/System.Threading.xml", - "ref/netstandard1.3/es/System.Threading.xml", - "ref/netstandard1.3/fr/System.Threading.xml", - "ref/netstandard1.3/it/System.Threading.xml", - "ref/netstandard1.3/ja/System.Threading.xml", - "ref/netstandard1.3/ko/System.Threading.xml", - "ref/netstandard1.3/ru/System.Threading.xml", - "ref/netstandard1.3/zh-hans/System.Threading.xml", - "ref/netstandard1.3/zh-hant/System.Threading.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "runtimes/aot/lib/netcore50/System.Threading.dll", - "system.threading.4.3.0.nupkg.sha512", - "system.threading.nuspec" - ] - }, - "System.Threading.Channels/4.7.1": { - "sha512": "6akRtHK/wab3246t4p5v3HQrtQk8LboOt5T4dtpNgsp3zvDeM4/Gx8V12t0h+c/W9/enUrilk8n6EQqdQorZAA==", - "type": "package", - "path": "system.threading.channels/4.7.1", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "Icon.png", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/net461/System.Threading.Channels.dll", - "lib/net461/System.Threading.Channels.xml", - "lib/netcoreapp3.0/System.Threading.Channels.dll", - "lib/netcoreapp3.0/System.Threading.Channels.xml", - "lib/netstandard1.3/System.Threading.Channels.dll", - "lib/netstandard1.3/System.Threading.Channels.xml", - "lib/netstandard2.0/System.Threading.Channels.dll", - "lib/netstandard2.0/System.Threading.Channels.xml", - "system.threading.channels.4.7.1.nupkg.sha512", - "system.threading.channels.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Tasks/4.3.0": { - "sha512": "LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "type": "package", - "path": "system.threading.tasks/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Threading.Tasks.dll", - "ref/netcore50/System.Threading.Tasks.xml", - "ref/netcore50/de/System.Threading.Tasks.xml", - "ref/netcore50/es/System.Threading.Tasks.xml", - "ref/netcore50/fr/System.Threading.Tasks.xml", - "ref/netcore50/it/System.Threading.Tasks.xml", - "ref/netcore50/ja/System.Threading.Tasks.xml", - "ref/netcore50/ko/System.Threading.Tasks.xml", - "ref/netcore50/ru/System.Threading.Tasks.xml", - "ref/netcore50/zh-hans/System.Threading.Tasks.xml", - "ref/netcore50/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.0/System.Threading.Tasks.dll", - "ref/netstandard1.0/System.Threading.Tasks.xml", - "ref/netstandard1.0/de/System.Threading.Tasks.xml", - "ref/netstandard1.0/es/System.Threading.Tasks.xml", - "ref/netstandard1.0/fr/System.Threading.Tasks.xml", - "ref/netstandard1.0/it/System.Threading.Tasks.xml", - "ref/netstandard1.0/ja/System.Threading.Tasks.xml", - "ref/netstandard1.0/ko/System.Threading.Tasks.xml", - "ref/netstandard1.0/ru/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", - "ref/netstandard1.3/System.Threading.Tasks.dll", - "ref/netstandard1.3/System.Threading.Tasks.xml", - "ref/netstandard1.3/de/System.Threading.Tasks.xml", - "ref/netstandard1.3/es/System.Threading.Tasks.xml", - "ref/netstandard1.3/fr/System.Threading.Tasks.xml", - "ref/netstandard1.3/it/System.Threading.Tasks.xml", - "ref/netstandard1.3/ja/System.Threading.Tasks.xml", - "ref/netstandard1.3/ko/System.Threading.Tasks.xml", - "ref/netstandard1.3/ru/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", - "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.4.3.0.nupkg.sha512", - "system.threading.tasks.nuspec" - ] - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "type": "package", - "path": "system.threading.tasks.extensions/4.5.4", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "LICENSE.TXT", - "THIRD-PARTY-NOTICES.TXT", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net461/System.Threading.Tasks.Extensions.dll", - "lib/net461/System.Threading.Tasks.Extensions.xml", - "lib/netcoreapp2.1/_._", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", - "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", - "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/netcoreapp2.1/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "system.threading.tasks.extensions.nuspec", - "useSharedDesignerContext.txt", - "version.txt" - ] - }, - "System.Threading.Timer/4.3.0": { - "sha512": "Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "type": "package", - "path": "system.threading.timer/4.3.0", - "files": [ - ".nupkg.metadata", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net451/_._", - "lib/portable-net451+win81+wpa81/_._", - "lib/win81/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net451/_._", - "ref/netcore50/System.Threading.Timer.dll", - "ref/netcore50/System.Threading.Timer.xml", - "ref/netcore50/de/System.Threading.Timer.xml", - "ref/netcore50/es/System.Threading.Timer.xml", - "ref/netcore50/fr/System.Threading.Timer.xml", - "ref/netcore50/it/System.Threading.Timer.xml", - "ref/netcore50/ja/System.Threading.Timer.xml", - "ref/netcore50/ko/System.Threading.Timer.xml", - "ref/netcore50/ru/System.Threading.Timer.xml", - "ref/netcore50/zh-hans/System.Threading.Timer.xml", - "ref/netcore50/zh-hant/System.Threading.Timer.xml", - "ref/netstandard1.2/System.Threading.Timer.dll", - "ref/netstandard1.2/System.Threading.Timer.xml", - "ref/netstandard1.2/de/System.Threading.Timer.xml", - "ref/netstandard1.2/es/System.Threading.Timer.xml", - "ref/netstandard1.2/fr/System.Threading.Timer.xml", - "ref/netstandard1.2/it/System.Threading.Timer.xml", - "ref/netstandard1.2/ja/System.Threading.Timer.xml", - "ref/netstandard1.2/ko/System.Threading.Timer.xml", - "ref/netstandard1.2/ru/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hans/System.Threading.Timer.xml", - "ref/netstandard1.2/zh-hant/System.Threading.Timer.xml", - "ref/portable-net451+win81+wpa81/_._", - "ref/win81/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.threading.timer.4.3.0.nupkg.sha512", - "system.threading.timer.nuspec" - ] - }, - "System.Xml.ReaderWriter/4.3.0": { - "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "type": "package", - "path": "system.xml.readerwriter/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/net46/System.Xml.ReaderWriter.dll", - "lib/netcore50/System.Xml.ReaderWriter.dll", - "lib/netstandard1.3/System.Xml.ReaderWriter.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/net46/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.dll", - "ref/netcore50/System.Xml.ReaderWriter.xml", - "ref/netcore50/de/System.Xml.ReaderWriter.xml", - "ref/netcore50/es/System.Xml.ReaderWriter.xml", - "ref/netcore50/fr/System.Xml.ReaderWriter.xml", - "ref/netcore50/it/System.Xml.ReaderWriter.xml", - "ref/netcore50/ja/System.Xml.ReaderWriter.xml", - "ref/netcore50/ko/System.Xml.ReaderWriter.xml", - "ref/netcore50/ru/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/System.Xml.ReaderWriter.dll", - "ref/netstandard1.0/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/System.Xml.ReaderWriter.dll", - "ref/netstandard1.3/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", - "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.readerwriter.4.3.0.nupkg.sha512", - "system.xml.readerwriter.nuspec" - ] - }, - "System.Xml.XDocument/4.3.0": { - "sha512": "5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "type": "package", - "path": "system.xml.xdocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net45/_._", - "lib/netcore50/System.Xml.XDocument.dll", - "lib/netstandard1.3/System.Xml.XDocument.dll", - "lib/portable-net45+win8+wp8+wpa81/_._", - "lib/win8/_._", - "lib/wp80/_._", - "lib/wpa81/_._", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net45/_._", - "ref/netcore50/System.Xml.XDocument.dll", - "ref/netcore50/System.Xml.XDocument.xml", - "ref/netcore50/de/System.Xml.XDocument.xml", - "ref/netcore50/es/System.Xml.XDocument.xml", - "ref/netcore50/fr/System.Xml.XDocument.xml", - "ref/netcore50/it/System.Xml.XDocument.xml", - "ref/netcore50/ja/System.Xml.XDocument.xml", - "ref/netcore50/ko/System.Xml.XDocument.xml", - "ref/netcore50/ru/System.Xml.XDocument.xml", - "ref/netcore50/zh-hans/System.Xml.XDocument.xml", - "ref/netcore50/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.0/System.Xml.XDocument.dll", - "ref/netstandard1.0/System.Xml.XDocument.xml", - "ref/netstandard1.0/de/System.Xml.XDocument.xml", - "ref/netstandard1.0/es/System.Xml.XDocument.xml", - "ref/netstandard1.0/fr/System.Xml.XDocument.xml", - "ref/netstandard1.0/it/System.Xml.XDocument.xml", - "ref/netstandard1.0/ja/System.Xml.XDocument.xml", - "ref/netstandard1.0/ko/System.Xml.XDocument.xml", - "ref/netstandard1.0/ru/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", - "ref/netstandard1.3/System.Xml.XDocument.dll", - "ref/netstandard1.3/System.Xml.XDocument.xml", - "ref/netstandard1.3/de/System.Xml.XDocument.xml", - "ref/netstandard1.3/es/System.Xml.XDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XDocument.xml", - "ref/netstandard1.3/it/System.Xml.XDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", - "ref/portable-net45+win8+wp8+wpa81/_._", - "ref/win8/_._", - "ref/wp80/_._", - "ref/wpa81/_._", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xdocument.4.3.0.nupkg.sha512", - "system.xml.xdocument.nuspec" - ] - }, - "System.Xml.XmlDocument/4.3.0": { - "sha512": "lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "type": "package", - "path": "system.xml.xmldocument/4.3.0", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/MonoAndroid10/_._", - "lib/MonoTouch10/_._", - "lib/net46/System.Xml.XmlDocument.dll", - "lib/netstandard1.3/System.Xml.XmlDocument.dll", - "lib/xamarinios10/_._", - "lib/xamarinmac20/_._", - "lib/xamarintvos10/_._", - "lib/xamarinwatchos10/_._", - "ref/MonoAndroid10/_._", - "ref/MonoTouch10/_._", - "ref/net46/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.dll", - "ref/netstandard1.3/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", - "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", - "ref/xamarinios10/_._", - "ref/xamarinmac20/_._", - "ref/xamarintvos10/_._", - "ref/xamarinwatchos10/_._", - "system.xml.xmldocument.4.3.0.nupkg.sha512", - "system.xml.xmldocument.nuspec" - ] - }, - "xunit.abstractions/2.0.3": { - "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", - "type": "package", - "path": "xunit.abstractions/2.0.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "lib/net35/xunit.abstractions.dll", - "lib/net35/xunit.abstractions.xml", - "lib/netstandard1.0/xunit.abstractions.dll", - "lib/netstandard1.0/xunit.abstractions.xml", - "lib/netstandard2.0/xunit.abstractions.dll", - "lib/netstandard2.0/xunit.abstractions.xml", - "xunit.abstractions.2.0.3.nupkg.sha512", - "xunit.abstractions.nuspec" - ] - }, - "xunit.analyzers/0.12.0-pre.19": { - "sha512": "JGdUpVNKnltpkGLYnfXtZYlshRWDg4Kcf/wjvmSKtVylhtbVriA6A1y0rtk6+BzMGhBfDi1w5bCle2kC9/ficw==", - "type": "package", - "path": "xunit.analyzers/0.12.0-pre.19", - "hasTools": true, - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/logo-128-transparent.png", - "analyzers/dotnet/cs/xunit.analyzers.dll", - "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", - "tools/install.ps1", - "tools/uninstall.ps1", - "xunit.analyzers.0.12.0-pre.19.nupkg.sha512", - "xunit.analyzers.nuspec" - ] - }, - "xunit.assert/2.4.2-pre.12": { - "sha512": "Av98kBp3Uc6eI1lWvGIVWrCWQHOSVKr/rI4VVc9yok1/xqk43RESH5IcYTOHEdiof37K7bzNfv4qaY/dwNMqIw==", - "type": "package", - "path": "xunit.assert/2.4.2-pre.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/logo-128-transparent.png", - "lib/netstandard1.1/xunit.assert.dll", - "lib/netstandard1.1/xunit.assert.xml", - "xunit.assert.2.4.2-pre.12.nupkg.sha512", - "xunit.assert.nuspec" - ] - }, - "xunit.core/2.4.2-pre.12": { - "sha512": "0IKhUb1qivtZUQyWl3fQeqbwsKgo4Ndi9ECJ6S5GFb9l8Tr1T5wTPo3KaCOD9ccxRu4jOQmvm9c8fCQd7SyoZg==", - "type": "package", - "path": "xunit.core/2.4.2-pre.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/logo-128-transparent.png", - "build/xunit.core.props", - "build/xunit.core.targets", - "buildMultiTargeting/xunit.core.props", - "buildMultiTargeting/xunit.core.targets", - "xunit.core.2.4.2-pre.12.nupkg.sha512", - "xunit.core.nuspec" - ] - }, - "xunit.extensibility.core/2.4.2-pre.12": { - "sha512": "z6ufPlcGpOEe/GNGAgfwtloAsb8mXuu4X6cBID8dsiTJ0OhD33mU/qkobnlFQVP724rYkFvtiVAjD47CpFFdiQ==", - "type": "package", - "path": "xunit.extensibility.core/2.4.2-pre.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/logo-128-transparent.png", - "lib/net452/xunit.core.dll", - "lib/net452/xunit.core.dll.tdnet", - "lib/net452/xunit.core.xml", - "lib/net452/xunit.runner.tdnet.dll", - "lib/net452/xunit.runner.utility.net452.dll", - "lib/netstandard1.1/xunit.core.dll", - "lib/netstandard1.1/xunit.core.xml", - "xunit.extensibility.core.2.4.2-pre.12.nupkg.sha512", - "xunit.extensibility.core.nuspec" - ] - }, - "xunit.extensibility.execution/2.4.2-pre.12": { - "sha512": "FBuMA84KNxBMgHLVAqMGVD6DeejjPFTahZgxBClvey+C/HZipeuzKNX6x7Ne/Updpevz2KqituBJJ8yz9TrKbQ==", - "type": "package", - "path": "xunit.extensibility.execution/2.4.2-pre.12", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "_content/logo-128-transparent.png", - "lib/net452/xunit.execution.desktop.dll", - "lib/net452/xunit.execution.desktop.xml", - "lib/netstandard1.1/xunit.execution.dotnet.dll", - "lib/netstandard1.1/xunit.execution.dotnet.xml", - "xunit.extensibility.execution.2.4.2-pre.12.nupkg.sha512", - "xunit.extensibility.execution.nuspec" - ] - }, - "xunit.runner.visualstudio/2.4.3": { - "sha512": "kZZSmOmKA8OBlAJaquPXnJJLM9RwQ27H7BMVqfMLUcTi9xHinWGJiWksa3D4NEtz0wZ/nxd2mogObvBgJKCRhQ==", - "type": "package", - "path": "xunit.runner.visualstudio/2.4.3", - "files": [ - ".nupkg.metadata", - ".signature.p7s", - "License.txt", - "build/net452/xunit.abstractions.dll", - "build/net452/xunit.runner.reporters.net452.dll", - "build/net452/xunit.runner.utility.net452.dll", - "build/net452/xunit.runner.visualstudio.props", - "build/net452/xunit.runner.visualstudio.testadapter.dll", - "build/netcoreapp2.1/xunit.abstractions.dll", - "build/netcoreapp2.1/xunit.runner.reporters.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.utility.netcoreapp10.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.dotnetcore.testadapter.dll", - "build/netcoreapp2.1/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.reporters.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.netstandard15.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.dll", - "build/uap10.0.16299/xunit.runner.utility.uwp10.pri", - "build/uap10.0.16299/xunit.runner.visualstudio.props", - "build/uap10.0.16299/xunit.runner.visualstudio.targets", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.dll", - "build/uap10.0.16299/xunit.runner.visualstudio.uwp.testadapter.pri", - "logo-512-transparent.png", - "xunit.runner.visualstudio.2.4.3.nupkg.sha512", - "xunit.runner.visualstudio.nuspec" - ] - }, - "BusinessLogics/1.0.0": { - "type": "project", - "path": "../BusinessLogics/BusinessLogics.csproj", - "msbuildProject": "../BusinessLogics/BusinessLogics.csproj" - }, - "DataAcess/1.0.0": { - "type": "project", - "path": "../DataAcess/DataAcess.csproj", - "msbuildProject": "../DataAcess/DataAcess.csproj" - } - }, - "projectFileDependencyGroups": { - ".NETCoreApp,Version=v3.1": [ - "AutoFixture.AutoMoq >= 4.17.0", - "Autofac.Extras.Moq >= 6.1.0", - "BusinessLogics >= 1.0.0", - "Microsoft.CodeCoverage >= 17.2.0-preview-20220131-20", - "Microsoft.NET.Test.Sdk >= 17.1.0", - "Moq >= 4.17.2", - "xunit.analyzers >= 0.12.0-pre.19", - "xunit.assert >= 2.4.2-pre.12", - "xunit.core >= 2.4.2-pre.12", - "xunit.runner.visualstudio >= 2.4.3" - ] - }, - "packageFolders": { - "C:\\Users\\FrankMensah\\.nuget\\packages\\": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} - }, - "project": { - "version": "1.0.0", - "restore": { - "projectUniqueName": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj", - "projectName": "MallServiceTest", - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj", - "packagesPath": "C:\\Users\\FrankMensah\\.nuget\\packages\\", - "outputPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\obj\\", - "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\Offline Packages", - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\Offline Packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], - "configFilePaths": [ - "C:\\Users\\FrankMensah\\AppData\\Roaming\\NuGet\\NuGet.Config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 18.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.1.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 20.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", - "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" - ], - "originalTargetFrameworks": [ - "netcoreapp3.1" - ], - "sources": { - "C:\\Program Files (x86)\\DevExpress 18.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.1\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 20.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, - "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, - "C:\\Users\\Public\\Documents\\Infragistics\\NuGet\\": {}, - "https://api.nuget.org/v3/index.json": {}, - "https://iqvm2psandptnr.two-pillars.de/PServer/nuget": {} - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "projectReferences": { - "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj": { - "projectPath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\BusinessLogics\\BusinessLogics.csproj" - } - } - } - }, - "warningProperties": { - "warnAsError": [ - "NU1605" - ] - } - }, - "frameworks": { - "netcoreapp3.1": { - "targetAlias": "netcoreapp3.1", - "dependencies": { - "AutoFixture.AutoMoq": { - "target": "Package", - "version": "[4.17.0, )" - }, - "Autofac.Extras.Moq": { - "target": "Package", - "version": "[6.1.0, )" - }, - "Microsoft.CodeCoverage": { - "target": "Package", - "version": "[17.2.0-preview-20220131-20, )" - }, - "Microsoft.NET.Test.Sdk": { - "target": "Package", - "version": "[17.1.0, )" - }, - "Moq": { - "target": "Package", - "version": "[4.17.2, )" - }, - "xunit.analyzers": { - "target": "Package", - "version": "[0.12.0-pre.19, )" - }, - "xunit.assert": { - "target": "Package", - "version": "[2.4.2-pre.12, )" - }, - "xunit.core": { - "target": "Package", - "version": "[2.4.2-pre.12, )" - }, - "xunit.runner.visualstudio": { - "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", - "suppressParent": "All", - "target": "Package", - "version": "[2.4.3, )" - } - }, - "imports": [ - "net461", - "net462", - "net47", - "net471", - "net472", - "net48" - ], - "assetTargetFallback": true, - "warn": true, - "frameworkReferences": { - "Microsoft.NETCore.App": { - "privateAssets": "all" - } - }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.405\\RuntimeIdentifierGraph.json" - } - } - } -} \ No newline at end of file diff --git a/MallServiceTest/obj/project.nuget.cache b/MallServiceTest/obj/project.nuget.cache deleted file mode 100644 index aa4d8ff..0000000 --- a/MallServiceTest/obj/project.nuget.cache +++ /dev/null @@ -1,145 +0,0 @@ -{ - "version": 2, - "dgSpecHash": "Dqjo8DNCvoIn3njPeBNlCBnhcjbGaiduEt7Z4UYMV8YAgx2lsxWSuv5l5RHVZFRmZ6H1QKKIKphulEHAppRjzA==", - "success": true, - "projectFilePath": "C:\\Users\\FrankMensah\\Desktop\\PP\\MallSimulation\\MallServiceTest\\MallServiceTest.csproj", - "expectedPackageFiles": [ - "C:\\Users\\FrankMensah\\.nuget\\packages\\autofac\\6.0.0\\autofac.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\autofac.extras.moq\\6.1.0\\autofac.extras.moq.6.1.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\autofixture\\4.17.0\\autofixture.4.17.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\autofixture.automoq\\4.17.0\\autofixture.automoq.4.17.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper\\11.0.1\\automapper.11.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\automapper.extensions.microsoft.dependencyinjection\\11.0.0\\automapper.extensions.microsoft.dependencyinjection.11.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\castle.core\\4.4.1\\castle.core.4.4.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\dnsclient\\1.4.0\\dnsclient.1.4.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fare\\2.1.1\\fare.2.1.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation\\10.3.6\\fluentvalidation.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.aspnetcore\\10.3.6\\fluentvalidation.aspnetcore.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\10.3.6\\fluentvalidation.dependencyinjectionextensions.10.3.6.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.codecoverage\\17.2.0-preview-20220131-20\\microsoft.codecoverage.17.2.0-preview-20220131-20.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.7\\microsoft.entityframeworkcore.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.7\\microsoft.entityframeworkcore.abstractions.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.7\\microsoft.entityframeworkcore.analyzers.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\5.0.7\\microsoft.entityframeworkcore.relational.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.net.test.sdk\\17.1.0\\microsoft.net.test.sdk.17.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.1.0\\microsoft.testplatform.objectmodel.17.1.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\microsoft.testplatform.testhost\\17.1.0\\microsoft.testplatform.testhost.17.1.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.bson\\2.14.1\\mongodb.bson.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver\\2.14.1\\mongodb.driver.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.driver.core\\2.14.1\\mongodb.driver.core.2.14.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\mongodb.libmongocrypt\\1.3.0\\mongodb.libmongocrypt.1.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\moq\\4.17.2\\moq.4.17.2.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql\\5.0.7\\npgsql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\5.0.7\\npgsql.entityframeworkcore.postgresql.5.0.7.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\rabbitmq.client\\6.2.3\\rabbitmq.client.6.2.3.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "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", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "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", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.nongeneric\\4.3.0\\system.collections.nongeneric.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.specialized\\4.3.0\\system.collections.specialized.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel\\4.3.0\\system.componentmodel.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.primitives\\4.3.0\\system.componentmodel.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.componentmodel.typeconverter\\4.3.0\\system.componentmodel.typeconverter.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.1\\system.diagnostics.diagnosticsource.5.0.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.diagnostics.tracesource\\4.3.0\\system.diagnostics.tracesource.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.channels\\4.7.1\\system.threading.channels.4.7.1.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.abstractions\\2.0.3\\xunit.abstractions.2.0.3.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.analyzers\\0.12.0-pre.19\\xunit.analyzers.0.12.0-pre.19.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.assert\\2.4.2-pre.12\\xunit.assert.2.4.2-pre.12.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.core\\2.4.2-pre.12\\xunit.core.2.4.2-pre.12.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.extensibility.core\\2.4.2-pre.12\\xunit.extensibility.core.2.4.2-pre.12.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.extensibility.execution\\2.4.2-pre.12\\xunit.extensibility.execution.2.4.2-pre.12.nupkg.sha512", - "C:\\Users\\FrankMensah\\.nuget\\packages\\xunit.runner.visualstudio\\2.4.3\\xunit.runner.visualstudio.2.4.3.nupkg.sha512" - ], - "logs": [] -} \ No newline at end of file diff --git a/deployment.yml b/deployment.yml deleted file mode 100644 index e9d8fcc..0000000 --- a/deployment.yml +++ /dev/null @@ -1,40 +0,0 @@ ---- -kind: Service -apiVersion: v1 -metadata: - name: mallservice -spec: - selector: - app: mallapp - ports: - - protocol: "TCP" - # Port accessible inside cluster - port: 8080 - # Port to forward to inside the pod - targetPort: 80 - type: LoadBalancer - - - ---- -apiVersion: apps/v1 -kind: Deployment -metadata: - name: malldeployment - labels: - app: mallapp -spec: - replicas: 5 - selector: - matchLabels: - app: mallapp - template: - metadata: - labels: - app: mallapp - spec: - containers: - - name: mallapp - image: menfra/jedox - ports: - - containerPort: 80 \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index c0d4a73..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,9 +0,0 @@ -version: '3.6' - -services: - mallservice: - container_name: mallservice - ports: - - '48224:80' - image: 'menfra/jedox' - restart: always \ No newline at end of file