commit 67d5385c56c6a0a8dc8d57e7086615a24adfd466 Author: Developer 02 Date: Wed Mar 6 16:14:36 2024 +0100 initial commit diff --git a/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 new file mode 100644 index 0000000..55b3c2d Binary files /dev/null and b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/DigitalData.Core/FileContentIndex/337fa630-2f5d-4109-93ec-b66eabe1920d.vsidx b/.vs/DigitalData.Core/FileContentIndex/337fa630-2f5d-4109-93ec-b66eabe1920d.vsidx new file mode 100644 index 0000000..80a2cda Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/337fa630-2f5d-4109-93ec-b66eabe1920d.vsidx differ diff --git a/.vs/DigitalData.Core/FileContentIndex/36d3519c-54db-4869-b324-b1aa34268e6d.vsidx b/.vs/DigitalData.Core/FileContentIndex/36d3519c-54db-4869-b324-b1aa34268e6d.vsidx new file mode 100644 index 0000000..f2b0d47 Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/36d3519c-54db-4869-b324-b1aa34268e6d.vsidx differ diff --git a/.vs/DigitalData.Core/FileContentIndex/7adbcada-d267-47e9-9c1d-70784fce1a0c.vsidx b/.vs/DigitalData.Core/FileContentIndex/7adbcada-d267-47e9-9c1d-70784fce1a0c.vsidx new file mode 100644 index 0000000..96af50b Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/7adbcada-d267-47e9-9c1d-70784fce1a0c.vsidx differ diff --git a/.vs/DigitalData.Core/FileContentIndex/f3d22dbc-4a43-46cb-8765-b56cba891b24.vsidx b/.vs/DigitalData.Core/FileContentIndex/f3d22dbc-4a43-46cb-8765-b56cba891b24.vsidx new file mode 100644 index 0000000..63a03fa Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/f3d22dbc-4a43-46cb-8765-b56cba891b24.vsidx differ diff --git a/.vs/DigitalData.Core/FileContentIndex/read.lock b/.vs/DigitalData.Core/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/DigitalData.Core/v17/.futdcache.v2 b/.vs/DigitalData.Core/v17/.futdcache.v2 new file mode 100644 index 0000000..c95036a Binary files /dev/null and b/.vs/DigitalData.Core/v17/.futdcache.v2 differ diff --git a/.vs/DigitalData.Core/v17/.suo b/.vs/DigitalData.Core/v17/.suo new file mode 100644 index 0000000..6cf38ea Binary files /dev/null and b/.vs/DigitalData.Core/v17/.suo differ diff --git a/.vs/DigitalData.Core/v17/TestStore/0/000.testlog b/.vs/DigitalData.Core/v17/TestStore/0/000.testlog new file mode 100644 index 0000000..7b4a5b8 Binary files /dev/null and b/.vs/DigitalData.Core/v17/TestStore/0/000.testlog differ diff --git a/.vs/DigitalData.Core/v17/TestStore/0/testlog.manifest b/.vs/DigitalData.Core/v17/TestStore/0/testlog.manifest new file mode 100644 index 0000000..e92ede2 Binary files /dev/null and b/.vs/DigitalData.Core/v17/TestStore/0/testlog.manifest differ diff --git a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 new file mode 100644 index 0000000..3e85291 Binary files /dev/null and b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 differ diff --git a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 new file mode 100644 index 0000000..0496c49 Binary files /dev/null and b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 differ diff --git a/DigitalData.Core.API/ADControllerBase.cs b/DigitalData.Core.API/ADControllerBase.cs new file mode 100644 index 0000000..64206b4 --- /dev/null +++ b/DigitalData.Core.API/ADControllerBase.cs @@ -0,0 +1,26 @@ +using DigitalData.Core.Contracts.Authentication.Services; +using Microsoft.AspNetCore.Mvc; + +namespace DigitalData.Core.API +{ + [Route("api/[controller]")] + public class ADControllerBase : ControllerBase + where TOriginalController : ADControllerBase + where T : new() + { + protected readonly ILogger _logger; + protected readonly IADService _service; + + public ADControllerBase(ILogger logger, IADService service) + { + _logger = logger; + _service = service; + } + + [HttpGet] + public virtual IActionResult GetAll() + { + return Ok(_service.ReadAll()); + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/CRUDControllerBase.cs b/DigitalData.Core.API/CRUDControllerBase.cs new file mode 100644 index 0000000..d7c6e7b --- /dev/null +++ b/DigitalData.Core.API/CRUDControllerBase.cs @@ -0,0 +1,127 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Application; +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using Microsoft.AspNetCore.Mvc; + +namespace DigitalData.Core.API +{ + /// + /// A base controller class providing generic CRUD (Create, Read, Update, Delete) operations for a specified entity type. + /// + /// The derived controller type implementing this base class. + /// The derived CRUD service type implementing ICRUDService. + /// The Data Transfer Object type for create operations. + /// The Data Transfer Object type for read operations. + /// The Data Transfer Object type for update operations. + /// The entity type CRUD operations will be performed on. + /// The type of the entity's identifier. + [ApiController] + [Route("api/[controller]")] + public class CRUDControllerBase : ControllerBase + where TOriginalController : CRUDControllerBase + where TCRUDService : ICRUDService + where TCRUDRepository : ICRUDRepository + where TCreateDto : class + where TReadDto : class + where TUpdateDto : class + where TEntity : class + { + protected readonly ILogger _logger; + protected readonly TCRUDService _service; + + /// + /// Initializes a new instance of the CRUDControllerBase class with specified logger and CRUD service. + /// + /// The logger to be used by the controller. + /// The CRUD service handling business logic for the entity. + public CRUDControllerBase( + ILogger logger, + TCRUDService service) + { + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + _service = service ?? throw new ArgumentNullException(nameof(service)); + } + + /// + /// Creates a new entity based on the provided DTO. + /// + /// The DTO from which to create the entity. + /// A task that represents the asynchronous create operation. The task result contains the action result. + [HttpPost] + public virtual async Task Create(TCreateDto createDto) + { + var result = await _service.CreateAsync(createDto); + if (result.IsSuccess) + { + var createdResource = new { Id = result.Data }; + var actionName = nameof(GetById); + var routeValues = new { id = createdResource.Id }; + return CreatedAtAction(actionName, routeValues, createdResource); + } + return BadRequest(result); + } + + /// + /// Retrieves an entity by its identifier. + /// + /// The identifier of the entity to retrieve. + /// A task that represents the asynchronous read operation. The task result contains the action result. + [HttpGet("{id}")] + public virtual async Task GetById([FromRoute]TId id) + { + var result = await _service.ReadByIdAsync(id); + if (result.IsSuccess) + { + return Ok(result); + } + return NotFound(result); + } + + /// + /// Retrieves all entities. + /// + /// A task that represents the asynchronous read-all operation. The task result contains the action result. + [HttpGet] + public virtual async Task GetAll() + { + var result = await _service.ReadAllAsync(); + if (result.IsSuccess) + { + return Ok(result); + } + return NotFound(result); + } + + /// + /// Updates an existing entity based on the provided DTO. + /// + /// The DTO containing the updated data for the entity. + /// A task that represents the asynchronous update operation. The task result contains the action result. + [HttpPut] + public virtual async Task Update(TUpdateDto updateDto) + { + var result = await _service.UpdateAsync(updateDto); + if (result.IsSuccess) + { + return Ok(result); + } + return BadRequest(result); + } + + /// + /// Deletes an entity by its identifier. + /// + /// The identifier of the entity to delete. + /// A task that represents the asynchronous delete operation. The task result contains the action result. + [HttpDelete("{id}")] + public virtual async Task Delete([FromRoute]TId id) + { + var result = await _service.DeleteAsyncById(id); + if (result.IsSuccess) + { + return Ok(result); + } + return BadRequest(result); + } + + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/DigitalData.Core.API.csproj b/DigitalData.Core.API/DigitalData.Core.API.csproj new file mode 100644 index 0000000..a5ac9b5 --- /dev/null +++ b/DigitalData.Core.API/DigitalData.Core.API.csproj @@ -0,0 +1,14 @@ + + + + net7.0 + enable + enable + Library + + + + + + + diff --git a/DigitalData.Core.API/Properties/launchSettings.json b/DigitalData.Core.API/Properties/launchSettings.json new file mode 100644 index 0000000..061501c --- /dev/null +++ b/DigitalData.Core.API/Properties/launchSettings.json @@ -0,0 +1,12 @@ +{ + "profiles": { + "DigitalData.Core.API": { + "commandName": "Project", + "launchBrowser": true, + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + }, + "applicationUrl": "https://localhost:59445;http://localhost:59446" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/ReadControllerBase.cs b/DigitalData.Core.API/ReadControllerBase.cs new file mode 100644 index 0000000..deb3d19 --- /dev/null +++ b/DigitalData.Core.API/ReadControllerBase.cs @@ -0,0 +1,70 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Application; +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using Microsoft.AspNetCore.Mvc; + +namespace DigitalData.Core.API +{ + /// + /// A base controller class providing Read operation for a specified entity type. + /// + /// The derived controller type implementing this base class. + /// The Data Transfer Object type for read operations. + /// The entity type CRUD operations will be performed on. + /// The type of the entity's identifier. + [ApiController] + [Route("api/[controller]")] + public class ReadControllerBase : ControllerBase + where TOriginalController : ReadControllerBase + where TBasicCRUDService : IBasicCRUDService + where TCRUDRepository : ICRUDRepository + where TReadDto : class + where TEntity : class + { + protected readonly ILogger _logger; + protected readonly TBasicCRUDService _service; + + /// + /// Initializes a new instance of the CRUDControllerBase class with specified logger and CRUD service. + /// + /// The logger to be used by the controller. + /// The CRUD service handling business logic for the entity. + public ReadControllerBase( + ILogger logger, + TBasicCRUDService service) + { + _logger = logger; + _service = service; + } + + /// + /// Retrieves an entity by its identifier. + /// + /// The identifier of the entity to retrieve. + /// A task that represents the asynchronous read operation. The task result contains the action result. + [HttpGet("{id}")] + public virtual async Task GetById([FromRoute]TId id) + { + var result = await _service.ReadByIdAsync(id); + if (result.IsSuccess) + { + return Ok(result); + } + return NotFound(result); + } + + /// + /// Retrieves all entities. + /// + /// A task that represents the asynchronous read-all operation. The task result contains the action result. + [HttpGet] + public virtual async Task GetAll() + { + var result = await _service.ReadAllAsync(); + if (result.IsSuccess) + { + return Ok(result); + } + return NotFound(result); + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json new file mode 100644 index 0000000..0a461f4 --- /dev/null +++ b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json @@ -0,0 +1,158 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.API/1.0.0": { + "dependencies": { + "DigitalData.Core.Contracts": "1.0.0" + }, + "runtime": { + "DigitalData.Core.API.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll new file mode 100644 index 0000000..6096007 Binary files /dev/null and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll differ diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb new file mode 100644 index 0000000..a63f3ce Binary files /dev/null and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb differ diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.API/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfo.cs b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfo.cs new file mode 100644 index 0000000..65a9073 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.API")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfoInputs.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cee0210 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +7d1ea8004d4313e68e39d2fb57a90dde56c76724 diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0201d28 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = DigitalData.Core.API +build_property.RootNamespace = DigitalData.Core.API +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API +build_property._RazorSourceGeneratorDebug = diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GlobalUsings.g.cs b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GlobalUsings.g.cs new file mode 100644 index 0000000..45ca3c5 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +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.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache new file mode 100644 index 0000000..ff98d75 Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..34f72bc Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.CopyComplete b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.CoreCompileInputs.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..79b7ab3 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +9b805ab875ea09ef08400883247c91e46bf39b5a diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b510d33 --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt @@ -0,0 +1,46 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.DigitalData.Core.API.Microsoft.AspNetCore.StaticWebAssets.props +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.build.DigitalData.Core.API.props +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.DigitalData.Core.API.props +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.DigitalData.Core.API.props +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.pack.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.build.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.development.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\scopedcss\bundle\DigitalData.Core.API.styles.css +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.CopyComplete +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\refint\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\ref\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.DigitalData.Core.API.Microsoft.AspNetCore.StaticWebAssets.props +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.build.DigitalData.Core.API.props +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.DigitalData.Core.API.props +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.DigitalData.Core.API.props +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.pack.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.build.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\staticwebassets.development.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\scopedcss\bundle\DigitalData.Core.API.styles.css +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\refint\DigitalData.Core.API.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.API\obj\Debug\net7.0\ref\DigitalData.Core.API.dll diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll new file mode 100644 index 0000000..6096007 Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb new file mode 100644 index 0000000..a63f3ce Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll new file mode 100644 index 0000000..895f9cf Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll new file mode 100644 index 0000000..895f9cf Binary files /dev/null and b/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll differ diff --git a/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets.build.json b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..6b3e9dc --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "4+tU9KKVv53aK5RYsuialTUxw3XqQuMYDrHUVjaTeKo=", + "Source": "DigitalData.Core.API", + "BasePath": "_content/DigitalData.Core.API", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.build.DigitalData.Core.API.props b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.build.DigitalData.Core.API.props new file mode 100644 index 0000000..c12810d --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.build.DigitalData.Core.API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DigitalData.Core.API.props b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DigitalData.Core.API.props new file mode 100644 index 0000000..a5fe17c --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.DigitalData.Core.API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DigitalData.Core.API.props b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DigitalData.Core.API.props new file mode 100644 index 0000000..14db8af --- /dev/null +++ b/DigitalData.Core.API/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.DigitalData.Core.API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a3b46b6 --- /dev/null +++ b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json @@ -0,0 +1,153 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj", + "projectName": "DigitalData.Core.API", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.props b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.targets b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.API/obj/project.assets.json b/DigitalData.Core.API/obj/project.assets.json new file mode 100644 index 0000000..27628e0 --- /dev/null +++ b/DigitalData.Core.API/obj/project.assets.json @@ -0,0 +1,370 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Contracts >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj", + "projectName": "DigitalData.Core.API", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.API/obj/project.nuget.cache b/DigitalData.Core.API/obj/project.nuget.cache new file mode 100644 index 0000000..bae24ce --- /dev/null +++ b/DigitalData.Core.API/obj/project.nuget.cache @@ -0,0 +1,14 @@ +{ + "version": 2, + "dgSpecHash": "inkJuxW5Dy+zH0BgYzZfV1KMknSmbnN3uh1otQwJnN7BWwngIarjP4Sx03+bo3lgge49gwFETJyKzOCetgXLfA==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.API\\DigitalData.Core.API.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/AttributeHelper.cs b/DigitalData.Core.Attributes/AttributeHelper.cs new file mode 100644 index 0000000..b8e1805 --- /dev/null +++ b/DigitalData.Core.Attributes/AttributeHelper.cs @@ -0,0 +1,25 @@ +namespace DigitalData.Core.Attributes +{ + /// + /// Provides helper methods for working with attributes. + /// + public static class AttrHelper + { + /// + /// Retrieves the applied to a given type. + /// + /// The type to examine for the attribute. + /// The found on the type; null if the attribute is not present. + public static ADFilterAttribute? GetFilterAttrOf() + { + // Get the ADFilterAttribute from the type, if it exists + Attribute? attr = Attribute.GetCustomAttribute(typeof(T), typeof(ADFilterAttribute)); + + // Check if the attribute is of the expected type and return it; otherwise, return null + if (attr is ADFilterAttribute fAttr) + return fAttr; + + return null; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj b/DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj new file mode 100644 index 0000000..4658cbf --- /dev/null +++ b/DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj @@ -0,0 +1,9 @@ + + + + net7.0 + enable + enable + + + diff --git a/DigitalData.Core.Attributes/FilterAttribute.cs b/DigitalData.Core.Attributes/FilterAttribute.cs new file mode 100644 index 0000000..dc20e50 --- /dev/null +++ b/DigitalData.Core.Attributes/FilterAttribute.cs @@ -0,0 +1,24 @@ +namespace DigitalData.Core.Attributes +{ + /// + /// Specifies the filter query for Active Directory (AD) operations. + /// This attribute can be applied to classes to define custom filter queries used during AD operations. + /// + [AttributeUsage(AttributeTargets.Class, AllowMultiple = false)] + public class ADFilterAttribute : Attribute + { + /// + /// Gets the LDAP query string used for filtering AD objects. + /// + public string Query { get; private set; } + + /// + /// Initializes a new instance of the class with the specified query. + /// + /// The LDAP query string to be used for filtering AD objects. + public ADFilterAttribute(string query) + { + Query = query; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.deps.json b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.deps.json new file mode 100644 index 0000000..6de992c --- /dev/null +++ b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Attributes/1.0.0": { + "runtime": { + "DigitalData.Core.Attributes.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.dll b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..c05f4e7 Binary files /dev/null and b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb new file mode 100644 index 0000000..d1ec938 Binary files /dev/null and b/DigitalData.Core.Attributes/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Attributes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfo.cs b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfo.cs new file mode 100644 index 0000000..6ed52d4 --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Attributes")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Attributes")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Attributes")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfoInputs.cache b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c071b7c --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +5f0a3fa647216ad9aac8680c225bef1a08a4f561 diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..560e5da --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Attributes +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.GlobalUsings.g.cs b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.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/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.assets.cache b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.assets.cache new file mode 100644 index 0000000..51a61a9 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.assets.cache differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.AssemblyReference.cache b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.AssemblyReference.cache new file mode 100644 index 0000000..bd10d90 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.CoreCompileInputs.cache b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d424df9 --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a5e551949ccabee2f9d9434c66c0a9f07093d598 diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.FileListAbsolute.txt b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d4bcd6b --- /dev/null +++ b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.csproj.FileListAbsolute.txt @@ -0,0 +1,12 @@ +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\bin\Debug\net7.0\DigitalData.Core.Attributes.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\bin\Debug\net7.0\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\bin\Debug\net7.0\DigitalData.Core.Attributes.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\refint\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\DigitalData.Core.Attributes.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Attributes\obj\Debug\net7.0\ref\DigitalData.Core.Attributes.dll diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.dll b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..c05f4e7 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.pdb b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.pdb new file mode 100644 index 0000000..d1ec938 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/DigitalData.Core.Attributes.pdb differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/ref/DigitalData.Core.Attributes.dll b/DigitalData.Core.Attributes/obj/Debug/net7.0/ref/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..bb43cf6 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/ref/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Attributes/obj/Debug/net7.0/refint/DigitalData.Core.Attributes.dll b/DigitalData.Core.Attributes/obj/Debug/net7.0/refint/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..bb43cf6 Binary files /dev/null and b/DigitalData.Core.Attributes/obj/Debug/net7.0/refint/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.dgspec.json b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.dgspec.json new file mode 100644 index 0000000..80035fe --- /dev/null +++ b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.dgspec.json @@ -0,0 +1,74 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "projectName": "DigitalData.Core.Attributes", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.props b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.targets b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Attributes/obj/DigitalData.Core.Attributes.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Attributes/obj/project.assets.json b/DigitalData.Core.Attributes/obj/project.assets.json new file mode 100644 index 0000000..e44320a --- /dev/null +++ b/DigitalData.Core.Attributes/obj/project.assets.json @@ -0,0 +1,82 @@ +{ + "version": 3, + "targets": { + "net7.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net7.0": [] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "projectName": "DigitalData.Core.Attributes", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Attributes/obj/project.nuget.cache b/DigitalData.Core.Attributes/obj/project.nuget.cache new file mode 100644 index 0000000..4c253d0 --- /dev/null +++ b/DigitalData.Core.Attributes/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "nKWh8a0kwpfKm2WRntGoYNA6akrn2GDr66o/d/mhlYGyGagKrgsTjH/T+xOW3Z+dcfTyUkkJJYIOBX9j27E2kw==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Authentication/DigitalData.Core.Authentication.csproj b/DigitalData.Core.Authentication/DigitalData.Core.Authentication.csproj new file mode 100644 index 0000000..e0a5597 --- /dev/null +++ b/DigitalData.Core.Authentication/DigitalData.Core.Authentication.csproj @@ -0,0 +1,18 @@ + + + + net7.0 + enable + enable + + + + + + + + + + + + diff --git a/DigitalData.Core.Authentication/Services/ADService.cs b/DigitalData.Core.Authentication/Services/ADService.cs new file mode 100644 index 0000000..c0a2678 --- /dev/null +++ b/DigitalData.Core.Authentication/Services/ADService.cs @@ -0,0 +1,129 @@ +using DigitalData.Core.Attributes; +using DigitalData.Core.Contracts.Authentication.Services; +using System.Collections; +using System.DirectoryServices; +using System.Reflection; + +namespace DigitalData.Core.Authentication.Services +{ + /// + /// Provides methods for interacting with Active Directory to perform searches and read data into objects of type . + /// + /// The type into which Active Directory search results will be mapped. + public class ADService : IADService where T : new() + { + /// + /// Gets the used for performing Active Directory searches. + /// + public DirectorySearcher Searcher { get; } + + /// + /// Initializes a new instance of the class. + /// Sets up the directory searcher with the appropriate search scope and size limit, + /// and applies a custom filter if defined on the type . + /// + /// Thrown when not running on Windows. + public ADService() { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform."); + + Searcher = new() + { + SearchScope = SearchScope.Subtree, + SizeLimit = 50000 + }; + + if (AttrHelper.GetFilterAttrOf()?.Query is string filter) + Searcher.Filter = filter; + } + + /// + /// Performs a search in Active Directory using the current filter and returns all matching entries. + /// + /// A containing all search results. + /// Thrown when not running on Windows. + public SearchResultCollection SearchAll() + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform."); + + return Searcher.FindAll(); + } + + /// + /// Reads all search results into a list of objects of type . + /// + /// A list of objects of type that represents all found Active Directory entries. + /// Thrown when not running on Windows. + public IEnumerable ReadAll() + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform."); + + List list = new(); + foreach (SearchResult result in SearchAll()) + { + ResultPropertyCollection rpc = result.Properties; + T obj = MapResultProperty(rpc); + list.Add(obj); + } + return list; + } + + /// + /// Maps properties from a to a new instance of type . + /// + /// The destination type for the properties to be mapped to. + /// The collection of result properties from an Active Directory search result. + /// A new instance of with properties set based on the search result. + /// Thrown when not running on Windows. + public static TDest MapResultProperty(ResultPropertyCollection rpc) where TDest : new() + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The method is only supported on the Windows platform."); + + TDest resultObject = new(); + foreach (string propertyName in rpc.PropertyNames ?? throw new ArgumentNullException("PropertyNames are null")) + { + var propertyValue = rpc[propertyName][0]; + PropertyInfo? pi = typeof(TDest).GetProperty(propertyName, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance); + if (pi != null && propertyValue != null) + { + Type propertyType = pi.PropertyType; + Type underlyingType = Nullable.GetUnderlyingType(propertyType) ?? propertyType; + + if (propertyType != underlyingType) + { + propertyValue = Convert.ChangeType(propertyValue, underlyingType); + pi.SetValue(resultObject, propertyValue); + } + else if (typeof(IEnumerable).IsAssignableFrom(propertyType) && propertyType != typeof(string)) + { + var itemType = propertyType.GetGenericArguments()[0]; + IList list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(itemType)); + list.Add(Convert.ChangeType(propertyValue, itemType)); + pi.SetValue(resultObject, list); + } + else if (propertyValue is byte[] && propertyType == typeof(string)) + { + pi.SetValue(resultObject, Convert.ToBase64String((byte[])propertyValue)); + } + else if (propertyValue is byte[] stBytes && propertyType == typeof(string)) + { + pi.SetValue(resultObject, BitConverter.ToString(stBytes).Replace("-", "")); + } + else if (propertyValue is byte[] guiBytes && propertyType == typeof(Guid)) + { + pi.SetValue(resultObject, new Guid(guiBytes)); + } + else + { + propertyValue = Convert.ChangeType(propertyValue, propertyType); + pi.SetValue(resultObject, propertyValue); + } + } + } + return resultObject; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.dll b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..c05f4e7 Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb new file mode 100644 index 0000000..d1ec938 Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb differ diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.deps.json b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.deps.json new file mode 100644 index 0000000..4406062 --- /dev/null +++ b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.deps.json @@ -0,0 +1,205 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Authentication/1.0.0": { + "dependencies": { + "DigitalData.Core.Attributes": "1.0.0", + "DigitalData.Core.Contracts": "1.0.0", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Authentication.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "runtime": { + "DigitalData.Core.Attributes.dll": {} + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.Authentication/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "path": "system.directoryservices.protocols/7.0.1", + "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.dll b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.dll new file mode 100644 index 0000000..e42ebd6 Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.dll differ diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb new file mode 100644 index 0000000..5c91485 Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb differ diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.Authentication/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Authentication/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfo.cs b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfo.cs new file mode 100644 index 0000000..ed85d99 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Authentication")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Authentication")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Authentication")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfoInputs.cache b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfoInputs.cache new file mode 100644 index 0000000..e16bbf3 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +1d501ea1cd3cc2d768208bf2d6d75ab51b50fb8f diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4f77ee6 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Authentication +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.GlobalUsings.g.cs b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.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/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.assets.cache b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.assets.cache new file mode 100644 index 0000000..71dd13d Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.assets.cache differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.AssemblyReference.cache b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.AssemblyReference.cache new file mode 100644 index 0000000..f4bb34d Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.CopyComplete b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.CoreCompileInputs.cache b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..81743d6 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +87d4215efa661c4de8425667bcb112a6a4f9c86a diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.FileListAbsolute.txt b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..c354aaf --- /dev/null +++ b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.csproj.FileListAbsolute.txt @@ -0,0 +1,17 @@ +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Authentication.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Authentication.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Authentication.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\refint\DigitalData.Core.Authentication.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\DigitalData.Core.Authentication.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\obj\Debug\net7.0\ref\DigitalData.Core.Authentication.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Authentication\bin\Debug\net7.0\DigitalData.Core.Attributes.pdb diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.dll b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.dll new file mode 100644 index 0000000..e42ebd6 Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.dll differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.pdb b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.pdb new file mode 100644 index 0000000..5c91485 Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/DigitalData.Core.Authentication.pdb differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/ref/DigitalData.Core.Authentication.dll b/DigitalData.Core.Authentication/obj/Debug/net7.0/ref/DigitalData.Core.Authentication.dll new file mode 100644 index 0000000..56be9f9 Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/ref/DigitalData.Core.Authentication.dll differ diff --git a/DigitalData.Core.Authentication/obj/Debug/net7.0/refint/DigitalData.Core.Authentication.dll b/DigitalData.Core.Authentication/obj/Debug/net7.0/refint/DigitalData.Core.Authentication.dll new file mode 100644 index 0000000..56be9f9 Binary files /dev/null and b/DigitalData.Core.Authentication/obj/Debug/net7.0/refint/DigitalData.Core.Authentication.dll differ diff --git a/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.dgspec.json b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.dgspec.json new file mode 100644 index 0000000..d02777f --- /dev/null +++ b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.dgspec.json @@ -0,0 +1,225 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "projectName": "DigitalData.Core.Attributes", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "projectName": "DigitalData.Core.Authentication", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj" + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices.Protocols": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.props b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.targets b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/DigitalData.Core.Authentication.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Authentication/obj/project.assets.json b/DigitalData.Core.Authentication/obj/project.assets.json new file mode 100644 index 0000000..292901b --- /dev/null +++ b/DigitalData.Core.Authentication/obj/project.assets.json @@ -0,0 +1,459 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "compile": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "compile": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/7.0.1": { + "sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "type": "package", + "path": "system.directoryservices.protocols/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/net7.0/System.DirectoryServices.Protocols.dll", + "lib/net7.0/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.7.0.1.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj", + "msbuildProject": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Attributes >= 1.0.0", + "DigitalData.Core.Contracts >= 1.0.0", + "System.DirectoryServices.Protocols >= 7.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "projectName": "DigitalData.Core.Authentication", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj" + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices.Protocols": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Authentication/obj/project.nuget.cache b/DigitalData.Core.Authentication/obj/project.nuget.cache new file mode 100644 index 0000000..9af78e8 --- /dev/null +++ b/DigitalData.Core.Authentication/obj/project.nuget.cache @@ -0,0 +1,15 @@ +{ + "version": 2, + "dgSpecHash": "T6SiIBj7ESjBSa1j7axR36My2OBoueetyi/ZR5dUcgZ+sFork3oyCsBnfZfYFNc3Q+RaftYdeQnMEMFsOg18Yw==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/BasicCRUDService.cs b/DigitalData.Core.CleanArchitecture.Application/BasicCRUDService.cs new file mode 100644 index 0000000..fb99898 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/BasicCRUDService.cs @@ -0,0 +1,36 @@ +using AutoMapper; +using DigitalData.Core.Contracts.CleanArchitecture.Application; +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using DigitalData.Core.Contracts.CultureServices; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + /// + /// Provides a concrete implementation of a basic CRUD service that uses a single Data Transfer Object (DTO) for all CRUD operations. + /// This service simplifies the management of entities by utilizing a consistent object model throughout create, read, update, and delete operations. + /// It extends the generic CRUDService by specifying the same DTO type for all generic parameters, facilitating a straightforward mapping between the entity and its data transfer representation. + /// + /// The Data Transfer Object type used for all operations. + /// The entity type being managed by this service. + /// The type of the identifier for the entity. + /// + /// This service is ideal for scenarios where a single DTO is adequate to represent the entity in all operations, + /// reducing the need for multiple DTOs and simplifying the data mapping process. It leverages AutoMapper for object mapping + /// and a culture-specific translation service for any necessary text translations, ensuring a versatile and internationalized approach to CRUD operations. + /// + public class BasicCRUDService : + CRUDService, IBasicCRUDService + where TCRUDRepository : ICRUDRepository where TDto : class where TEntity : class + { + /// + /// Initializes a new instance of the BasicCRUDService with the specified repository, translation service, and AutoMapper configuration. + /// + /// The CRUD repository for accessing and manipulating entity data. + /// The service used for key-based text translations, facilitating localization. + /// The AutoMapper instance for mapping between DTOs and entities. + public BasicCRUDService(TCRUDRepository repository, IKeyTranslationService translationService, IMapper mapper) : + base(repository, translationService, mapper) + { + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/CRUDService.cs b/DigitalData.Core.CleanArchitecture.Application/CRUDService.cs new file mode 100644 index 0000000..625344f --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/CRUDService.cs @@ -0,0 +1,200 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Application; +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using DigitalData.Core.Contracts.CultureServices; +using AutoMapper; +using DigitalData.Core.Exceptions; +using System.Reflection; +using System.ComponentModel.DataAnnotations; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + /// + /// Provides generic CRUD (Create, Read, Update, Delete) operations for a specified type of entity. + /// + /// The DTO type for create operations. + /// The DTO type for read operations. + /// The DTO type for update operations. + /// The entity type. + /// The type of the identifier for the entity. + public class CRUDService : ICRUDService, IServiceReplier + where TCRUDRepository : ICRUDRepository where TCreateDto : class where TReadDto : class where TUpdateDto : class where TEntity : class + { + protected readonly TCRUDRepository _repository; + protected readonly IMapper _mapper; + protected readonly IKeyTranslationService _translationService; + protected readonly PropertyInfo _keyPropertyInfo; + + /// + /// Initializes a new instance of the CRUDService class with the specified repository, translation service, and mapper. + /// + /// The CRUD repository for accessing the database. + /// The service for translating messages based on culture. + /// The AutoMapper instance for mapping between DTOs and entity objects. + public CRUDService(TCRUDRepository repository, IKeyTranslationService translationService, IMapper mapper) + { + _repository = repository; + _translationService = translationService; + _mapper = mapper; + + _keyPropertyInfo = typeof(TEntity).GetProperties() + .FirstOrDefault(prop => Attribute.IsDefined(prop, typeof(KeyAttribute))) + ?? throw new InvalidOperationException($"No property with [Key] attribute found on {typeof(TEntity).Name} entity."); + } + + /// + /// Asynchronously creates an entity based on the provided create DTO. + /// + /// The DTO to create an entity from. + /// A service result indicating success or failure, including the entity DTO. + public virtual async Task> CreateAsync(TCreateDto createDto) + { + var entity = MapOrThrow(createDto); + var createdEntity = await _repository.CreateAsync(entity); + if(createdEntity is null) + return Failed(default); + else + return Successful(KeyValueOf(createdEntity)); + } + + /// + /// Asynchronously reads an entity by its identifier and maps it to a read DTO. + /// + /// The identifier of the entity to read. + /// A service result indicating success or failure, including the read DTO if successful. + public virtual async Task> ReadByIdAsync(TId id) + { + var entity = await _repository.ReadByIdAsync(id); + if (entity is null) + { + var translatedMessage = _translationService.Translate(MessageKey.EntityDoesNotExist); + return FailedResult(); + } + else + return Successful(MapOrThrow(entity)); + } + + /// + /// Asynchronously reads all entities and maps them to read DTOs. + /// + /// A service result including a collection of read DTOs. + public virtual async Task>> ReadAllAsync() + { + var entities = await _repository.ReadAllAsync(); + var readDto = MapOrThrow, IEnumerable>(entities); + return Successful(readDto); + } + + /// + /// Asynchronously updates an entity based on the provided update DTO. + /// + /// The DTO to update an entity from. + /// A service message indicating success or failure. + public virtual async Task UpdateAsync(TUpdateDto updateDto) + { + var entity = MapOrThrow(updateDto); + bool isUpdated = await _repository.UpdateAsync(entity); + if (isUpdated) + return Successful(); + else + { + var translatedMessage = _translationService.Translate(MessageKey.UpdateFailed); + return Failed(translatedMessage); + } + } + + /// + /// Asynchronously deletes an entity by its identifier. + /// + /// The identifier of the entity to delete. + /// A service message indicating success or failure. + public virtual async Task DeleteAsyncById(TId id) + { + TEntity? entity = await _repository.ReadByIdAsync(id); + + if (entity is null) + { + var deletionFailedMessage = _translationService.Translate(MessageKey.DeletionFailed); + var entityDoesNotExistMessage = _translationService.Translate(MessageKey.EntityDoesNotExist); + return new ServiceMessage(isSuccess: false, deletionFailedMessage, entityDoesNotExistMessage); + } + + bool isDeleted = await _repository.DeleteAsync(entity); + + if (isDeleted) + return Successful(); + else + { + var deletionFailedMessage = _translationService.Translate(MessageKey.DeletionFailed); + return Failed(deletionFailedMessage); + } + } + + /// + /// Asynchronously checks if an entity with the specified identifier exists. + /// + /// The identifier of the entity to check. + /// A Task that represents the asynchronous operation. The task result contains a boolean value indicating whether the entity exists. + public virtual async Task HasEntity(TId id) + { + var entity = await _repository.ReadByIdAsync(id); + return entity is not null; + } + + /// + /// Retrieves the ID value of an entity based on the defined [Key] attribute. + /// + /// The entity from which to extract the ID. + /// The ID of the entity. + protected virtual TId KeyValueOf(TEntity entity) + { + object idObj = _keyPropertyInfo.GetValue(entity) ?? throw new InvalidOperationException($"The ID property of {typeof(TEntity).Name} entity cannot be null."); + if (idObj is TId id) + return id; + else + throw new InvalidCastException($"The ID of {typeof(TEntity).Name} entity must be type of {typeof(TId).Name}, but it is type of {idObj.GetType().Name}."); + } + + /// + /// Handles exceptions that occur during CRUD operations, providing a structured string. + /// + /// The exception that was caught during CRUD operations. + /// A containing information about the failure, including a user-friendly error message and additional error details. + public virtual string HandleException(Exception ex) + { + return $"An unexpected error occurred on the server side. Please inform the IT support team.\n{ex.GetType().Name}\n{ex.Message}"; + } + + /// + /// Maps a source object to a destination object, or throws an exception if the mapping result is null. + /// + /// The source object type. + /// The destination object type. + /// The source object to map from. + /// The mapped destination object. + /// Thrown when the mapping result is null. + protected TDestination MapOrThrow(TSource source) + { + return _mapper.Map(source) ?? throw new MappingResultNullException(typeof(TSource), typeof(TDestination)); + } + + public virtual IServiceMessage CreateMessage(bool isSuccess, params string[] messages) + { + return new ServiceMessage(isSuccess, messages); + } + + public virtual IServiceResult CreateResult(TData? data, bool isSuccess = true, params string[] messages) + { + return new ServiceResult(data, isSuccess, messages); + } + + public virtual IServiceMessage Successful() => CreateMessage(true); + + public virtual IServiceMessage Failed(params string[] messages) => CreateMessage(false, messages); + + public virtual IServiceResult Successful(T data) => CreateResult(data); + + public virtual IServiceResult Failed(T? data, params string[] messages) => CreateResult(data, false, messages); + + public virtual IServiceResult FailedResult(params string[] messages) => Failed(default, messages); + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/DIExtensions.cs b/DigitalData.Core.CleanArchitecture.Application/DIExtensions.cs new file mode 100644 index 0000000..500d6b5 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/DIExtensions.cs @@ -0,0 +1,63 @@ +using AutoMapper; +using DigitalData.Core.Contracts.CleanArchitecture.Application; +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using Microsoft.Extensions.DependencyInjection; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + /// + /// Provides extension methods to for registering Clean Architecture CRUD related services and repositories. + /// + public static class DIExtensions + { + /// + /// Adds a basic CRUD service for a specific DTO and entity type to the service collection. + /// + /// The DTO type the service operates on. + /// The entity type corresponding to the DTO. + /// The type of the entity's identifier. + /// The AutoMapper profile type for configuring mappings between the DTO and the entity. + /// The to add the service to. + /// An optional action to configure additional services for the CRUD service. + /// The original instance, allowing further configuration. + public static IServiceCollection AddCleanBasicCRUDService(this IServiceCollection services, Action? configureService = null) + where TCRUDRepository : ICRUDRepository where TDto : class where TEntity : class where TProfile : Profile + { + services.AddScoped, BasicCRUDService>(); + configureService?.Invoke(services); + + services.AddAutoMapper(typeof(TProfile).Assembly); + + return services; + } + + /// + /// Adds a CRUD service for managing create, read, update, and delete operations for a specific set of DTOs and an entity type to the service collection. + /// + /// The repository type that provides CRUD operations for entities of type TEntity. + /// The DTO type used for create operations. + /// The DTO type used for read operations. + /// The DTO type used for update operations. + /// The entity type corresponding to the DTOs. + /// The type of the entity's identifier. + /// The AutoMapper profile type for configuring mappings between the DTOs and the entity. + /// The to add the service to. + /// An optional action to configure additional services for the CRUD service. + /// The original instance, allowing further configuration. + public static IServiceCollection AddCleanCRUDService(this IServiceCollection services, Action? configureService = null) + where TCRUDRepository : ICRUDRepository where TCreateDto : class where TReadDto : class where TUpdateDto : class where TEntity : class where TProfile : Profile + { + services.AddScoped, CRUDService>(); + configureService?.Invoke(services); + + services.AddAutoMapper(typeof(TProfile).Assembly); + + return services; + } + } +} diff --git a/DigitalData.Core.CleanArchitecture.Application/DigitalData.Core.CleanArchitecture.Application.csproj b/DigitalData.Core.CleanArchitecture.Application/DigitalData.Core.CleanArchitecture.Application.csproj new file mode 100644 index 0000000..e63e8ea --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/DigitalData.Core.CleanArchitecture.Application.csproj @@ -0,0 +1,18 @@ + + + + net7.0 + enable + enable + + + + + + + + + + + + diff --git a/DigitalData.Core.CleanArchitecture.Application/MessageKey.cs b/DigitalData.Core.CleanArchitecture.Application/MessageKey.cs new file mode 100644 index 0000000..cf569e6 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/MessageKey.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + public enum MessageKey + { + EntityDoesNotExist, + ReadFailed, + UpdateFailed, + DeletionFailed, + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/ServiceMessage.cs b/DigitalData.Core.CleanArchitecture.Application/ServiceMessage.cs new file mode 100644 index 0000000..51c1d3e --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/ServiceMessage.cs @@ -0,0 +1,33 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Application; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + /// + /// Represents the outcome of a service operation, encapsulating the success or failure status, + /// and any associated messages. + /// + public class ServiceMessage : IServiceMessage + { + /// + /// Initializes a new instance of the ServiceMessage class with specified success status, and messages. + /// + /// Indicates whether the service operation was successful. + /// The data associated with a successful operation. + /// An array of messages related to the operation's outcome. + public ServiceMessage(bool isSuccess, params string[] messages) + { + IsSuccess = isSuccess; + Messages = messages.ToList(); + } + + /// + /// Gets or sets a value indicating whether the service operation was successful. + /// + public bool IsSuccess { get; set; } + + /// + /// Gets or sets a collection of messages associated with the service operation. + /// + public List Messages { get; set; } = new List(); + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/ServiceResult.cs b/DigitalData.Core.CleanArchitecture.Application/ServiceResult.cs new file mode 100644 index 0000000..a51084d --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/ServiceResult.cs @@ -0,0 +1,25 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Application; + +namespace DigitalData.Core.CleanArchitecture.Application +{ + /// + /// Represents the outcome of a service operation, encapsulating the success or failure status, + /// the data returned by the operation, and any associated messages. + /// + /// The type of data returned by the service operation, if any. + public class ServiceResult : ServiceMessage, IServiceResult + { + /// + /// Initializes a new instance of the ServiceResult class with specified success status, data, and messages. + /// + /// The data associated with a successful operation. + /// Indicates whether the service operation was successful. + /// An array of messages related to the operation's outcome. + public ServiceResult(T? data, bool isSuccess, params string[] messages) : base(isSuccess, messages) => Data = data; + + /// + /// Gets or sets the data resulting from the service operation. + /// + public T? Data { get; set; } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.deps.json b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.deps.json new file mode 100644 index 0000000..1a180a4 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.deps.json @@ -0,0 +1,251 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.CleanArchitecture.Application/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1", + "DigitalData.Core.Contracts": "1.0.0", + "DigitalData.Core.Exceptions": "1.0.0" + }, + "runtime": { + "DigitalData.Core.CleanArchitecture.Application.dll": {} + } + }, + "AutoMapper/13.0.1": { + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.0" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + }, + "DigitalData.Core.Exceptions/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1" + }, + "runtime": { + "DigitalData.Core.Exceptions.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.CleanArchitecture.Application/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "path": "automapper/13.0.1", + "hashPath": "automapper.13.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.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.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.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.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DigitalData.Core.Exceptions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll new file mode 100644 index 0000000..9adbbdd Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb new file mode 100644 index 0000000..01e8e37 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll new file mode 100644 index 0000000..bbf1f69 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb new file mode 100644 index 0000000..206fa68 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfo.cs b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfo.cs new file mode 100644 index 0000000..94ba05d --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.CleanArchitecture.Application")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.CleanArchitecture.Application")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.CleanArchitecture.Application")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfoInputs.cache b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfoInputs.cache new file mode 100644 index 0000000..d12c556 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +29481b6f7a973f95145d0c63745be915f7b67045 diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..28558b8 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.CleanArchitecture.Application +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.GlobalUsings.g.cs b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.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/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.assets.cache b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.assets.cache new file mode 100644 index 0000000..7464aac Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.assets.cache differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.AssemblyReference.cache b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0c85f8e Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.CopyComplete b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.CoreCompileInputs.cache b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e9ec42d --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a55184920cbebc280ce704605b3e675ce70537fc diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.FileListAbsolute.txt b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..f48ad60 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.csproj.FileListAbsolute.txt @@ -0,0 +1,34 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.CopyComplete +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\refint\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\ref\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\refint\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\bin\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Application.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Application\obj\Debug\net7.0\ref\DigitalData.Core.CleanArchitecture.Application.dll diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll new file mode 100644 index 0000000..9adbbdd Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb new file mode 100644 index 0000000..01e8e37 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Application.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Application.dll b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Application.dll new file mode 100644 index 0000000..cacf946 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Application.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Application.dll b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Application.dll new file mode 100644 index 0000000..cacf946 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Application/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Application.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.dgspec.json b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.dgspec.json new file mode 100644 index 0000000..02912bb --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.dgspec.json @@ -0,0 +1,231 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj", + "projectName": "DigitalData.Core.CleanArchitecture.Application", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "projectName": "DigitalData.Core.Exceptions", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.props b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.targets b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/DigitalData.Core.CleanArchitecture.Application.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/project.assets.json b/DigitalData.Core.CleanArchitecture.Application/obj/project.assets.json new file mode 100644 index 0000000..c98d23e --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/project.assets.json @@ -0,0 +1,591 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + }, + "DigitalData.Core.Exceptions/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "AutoMapper": "13.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Exceptions.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Exceptions.dll": {} + } + } + } + }, + "libraries": { + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "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.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.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.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.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + }, + "DigitalData.Core.Exceptions/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Exceptions/DigitalData.Core.Exceptions.csproj", + "msbuildProject": "../DigitalData.Core.Exceptions/DigitalData.Core.Exceptions.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "AutoMapper >= 13.0.1", + "DigitalData.Core.Contracts >= 1.0.0", + "DigitalData.Core.Exceptions >= 1.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj", + "projectName": "DigitalData.Core.CleanArchitecture.Application", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Application/obj/project.nuget.cache b/DigitalData.Core.CleanArchitecture.Application/obj/project.nuget.cache new file mode 100644 index 0000000..9cd8c2b --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Application/obj/project.nuget.cache @@ -0,0 +1,19 @@ +{ + "version": 2, + "dgSpecHash": "VekuLDEZ26qke1Njuye1dc/kqEcNJ1Lnm2dQ41plBfJgrwIWB5DXCXI31ms6c3HMMQ8NKmEr8HtRMex130hMaw==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Application\\DigitalData.Core.CleanArchitecture.Application.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/CRUDRepository.cs b/DigitalData.Core.CleanArchitecture.Infrastructure/CRUDRepository.cs new file mode 100644 index 0000000..55fb788 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/CRUDRepository.cs @@ -0,0 +1,82 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using Microsoft.EntityFrameworkCore; + +namespace DigitalData.Core.CleanArchitecture.Infrastructure +{ + /// + /// Provides a generic implementation for CRUD (Create, Read, Update, Delete) operations within a given DbContext. + /// + /// The entity type for which the repository is created. Must be a class. + /// The type of the entity's identifier. + /// The DbContext type associated with the entity. + /// + /// This repository abstracts the common database operations, offering an asynchronous API to work with the entity's data. + /// It leverages the EF Core's DbContext and DbSet to perform these operations. + /// + public class CRUDRepository : ICRUDRepository + where TEntity : class + where TDbContext : DbContext + { + protected readonly TDbContext _dbContext; + protected readonly DbSet _dbSet; + + /// + /// Initializes a new instance of the CRUDRepository with the specified DbContext. + /// + /// The DbContext instance to be used by the repository. + public CRUDRepository(TDbContext dbContext) + { + _dbContext = dbContext; + _dbSet = dbContext.Set(); + } + + /// + /// Asynchronously creates a new entity in the database. + /// + /// The entity to be added. + /// The created entity, or null if the entity cannot be added + public virtual async Task CreateAsync(TEntity entity) + { + await _dbSet.AddAsync(entity); + await _dbContext.SaveChangesAsync(); + return entity; + } + + /// + /// Asynchronously retrieves an entity by its identifier. + /// + /// The identifier of the entity to find. + /// The entity found, or null if no entity is found with the specified identifier. + public virtual async Task ReadByIdAsync(TId id) => await _dbSet.FindAsync(id); + + /// + /// Asynchronously retrieves all entities of type TEntity. + /// + /// An enumerable of all entities in the database. + public virtual async Task> ReadAllAsync() => await _dbSet.ToListAsync(); + + /// + /// Asynchronously updates an existing entity in the repository. + /// + /// The entity to be updated. This entity should already exist in the repository. + /// A task that represents the asynchronous operation. The task result contains a boolean value that indicates whether the update operation was successful. Returns true if one or more entities were successfully updated; otherwise, false. + public virtual async Task UpdateAsync(TEntity entity) + { + _dbContext.Entry(entity).State = EntityState.Modified; + var results = await _dbContext.SaveChangesAsync(); + return results > 0; + } + + /// + /// Asynchronously deletes an entity from the database. + /// + /// The entity to be deleted. + /// If entity is deleted, return true othwerwise return false. + public virtual async Task DeleteAsync(TEntity entity) + { + _dbSet.Remove(entity); + var result = await _dbContext.SaveChangesAsync(); + return result > 0; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/DIExtensions.cs b/DigitalData.Core.CleanArchitecture.Infrastructure/DIExtensions.cs new file mode 100644 index 0000000..24f6ff1 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/DIExtensions.cs @@ -0,0 +1,26 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; + +namespace DigitalData.Core.CleanArchitecture.Infrastructure +{ + public static class DIExtensions + { + /// + /// Adds a CRUD repository for a specific entity type to the service collection. + /// + /// The entity type for which the repository is registered. + /// The type of the entity's identifier. + /// The DbContext type used by the repository. + /// The to add the repository to. + /// An optional action to configure additional services for the repository. + /// The original instance, allowing further configuration. + public static IServiceCollection AddCleanCRUDRepository(this IServiceCollection services, Action? configureRepository = null) + where TCRUDRepository : CRUDRepository where TEntity : class where TDbContext : DbContext + { + services.AddScoped, TCRUDRepository>(); + configureRepository?.Invoke(services); + return services; + } + } +} diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/DigitalData.Core.CleanArchitecture.Infrastructure.csproj b/DigitalData.Core.CleanArchitecture.Infrastructure/DigitalData.Core.CleanArchitecture.Infrastructure.csproj new file mode 100644 index 0000000..ed1f1bf --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/DigitalData.Core.CleanArchitecture.Infrastructure.csproj @@ -0,0 +1,17 @@ + + + + net7.0 + enable + enable + + + + + + + + + + + diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.deps.json b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.deps.json new file mode 100644 index 0000000..6db169d --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.deps.json @@ -0,0 +1,347 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.CleanArchitecture.Infrastructure/1.0.0": { + "dependencies": { + "DigitalData.Core.Contracts": "1.0.0", + "Microsoft.EntityFrameworkCore": "7.0.16" + }, + "runtime": { + "DigitalData.Core.CleanArchitecture.Infrastructure.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/7.0.16": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.16", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.16", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "7.0.16.0", + "fileVersion": "7.0.1624.6616" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.16": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "7.0.16.0", + "fileVersion": "7.0.1624.6616" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.16": {}, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.CleanArchitecture.Infrastructure/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.EntityFrameworkCore/7.0.16": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SbMHFQG7iXgBTUFv5XxVMwpRqDKah4qTraDAGUv4gkaudFAOSuNfNRfCXY282hij79P1oxg/M9Wni+8GXavxQQ==", + "path": "microsoft.entityframeworkcore/7.0.16", + "hashPath": "microsoft.entityframeworkcore.7.0.16.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.16": { + "type": "package", + "serviceable": true, + "sha512": "sha512-emuQo430RBfwZSxwTYKu0/+ohRixXaRNi3njEbzcnaFqc94oU6afcx5KYtk5/lrBQn58Oo0CUmDRhMeFQI4Kgg==", + "path": "microsoft.entityframeworkcore.abstractions/7.0.16", + "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.16.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.16": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DO8M/90nqgq7fFoR4SIty9thhK22RBIwxoJxPIwrATy9FV1QKGPUeG9iMnz1yHv5/NxZWr8xF44oFAsrgcHgXg==", + "path": "microsoft.entityframeworkcore.analyzers/7.0.16", + "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.16.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "path": "microsoft.extensions.caching.memory/7.0.0", + "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "path": "microsoft.extensions.logging/7.0.0", + "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "path": "microsoft.extensions.options/7.0.0", + "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll new file mode 100644 index 0000000..51b95f2 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb new file mode 100644 index 0000000..76a1e75 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfo.cs b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfo.cs new file mode 100644 index 0000000..c375433 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.CleanArchitecture.Infrastructure")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.CleanArchitecture.Infrastructure")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.CleanArchitecture.Infrastructure")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfoInputs.cache b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfoInputs.cache new file mode 100644 index 0000000..07eac14 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8a25aaa1f86570faf2512592288c9bf37c1a4a03 diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d616c28 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.CleanArchitecture.Infrastructure +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.GlobalUsings.g.cs b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.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/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.assets.cache b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.assets.cache new file mode 100644 index 0000000..8e5f4cd Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.assets.cache differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.AssemblyReference.cache b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.AssemblyReference.cache new file mode 100644 index 0000000..59b402a Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CopyComplete b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CoreCompileInputs.cache b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..54887f3 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +1ed514e70b58acd86dd0725532107f0ffa8325ce diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.FileListAbsolute.txt b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e77b4c2 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CopyComplete +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\refint\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\ref\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\refint\DigitalData.Core.CleanArchitecture.Infrastructure.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\DigitalData.Core.CleanArchitecture.Infrastructure.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CleanArchitecture.Infrastructure\obj\Debug\net7.0\ref\DigitalData.Core.CleanArchitecture.Infrastructure.dll diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll new file mode 100644 index 0000000..51b95f2 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb new file mode 100644 index 0000000..76a1e75 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/DigitalData.Core.CleanArchitecture.Infrastructure.pdb differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Infrastructure.dll b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Infrastructure.dll new file mode 100644 index 0000000..d8f6c00 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.CleanArchitecture.Infrastructure.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Infrastructure.dll b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Infrastructure.dll new file mode 100644 index 0000000..d8f6c00 Binary files /dev/null and b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.CleanArchitecture.Infrastructure.dll differ diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.dgspec.json b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3a84a91 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.dgspec.json @@ -0,0 +1,156 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", + "projectName": "DigitalData.Core.CleanArchitecture.Infrastructure", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.16, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.props b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.props new file mode 100644 index 0000000..e255299 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.props @@ -0,0 +1,21 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.targets b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.targets new file mode 100644 index 0000000..47636c2 --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/DigitalData.Core.CleanArchitecture.Infrastructure.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.assets.json b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.assets.json new file mode 100644 index 0000000..533f6fa --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.assets.json @@ -0,0 +1,880 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.EntityFrameworkCore/7.0.16": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.16", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.16", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.16": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.16": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.EntityFrameworkCore/7.0.16": { + "sha512": "SbMHFQG7iXgBTUFv5XxVMwpRqDKah4qTraDAGUv4gkaudFAOSuNfNRfCXY282hij79P1oxg/M9Wni+8GXavxQQ==", + "type": "package", + "path": "microsoft.entityframeworkcore/7.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.7.0.16.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.16": { + "sha512": "emuQo430RBfwZSxwTYKu0/+ohRixXaRNi3njEbzcnaFqc94oU6afcx5KYtk5/lrBQn58Oo0CUmDRhMeFQI4Kgg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/7.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.7.0.16.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.16": { + "sha512": "DO8M/90nqgq7fFoR4SIty9thhK22RBIwxoJxPIwrATy9FV1QKGPUeG9iMnz1yHv5/NxZWr8xF44oFAsrgcHgXg==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/7.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.7.0.16.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/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.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "type": "package", + "path": "microsoft.extensions.caching.memory/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/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.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/7.0.0": { + "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "type": "package", + "path": "microsoft.extensions.logging/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/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.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/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.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/7.0.0": { + "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "type": "package", + "path": "microsoft.extensions.options/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/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.7.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "type": "package", + "path": "microsoft.extensions.primitives/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Contracts >= 1.0.0", + "Microsoft.EntityFrameworkCore >= 7.0.16" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", + "projectName": "DigitalData.Core.CleanArchitecture.Infrastructure", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.16, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.nuget.cache b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.nuget.cache new file mode 100644 index 0000000..0937b0f --- /dev/null +++ b/DigitalData.Core.CleanArchitecture.Infrastructure/obj/project.nuget.cache @@ -0,0 +1,25 @@ +{ + "version": 2, + "dgSpecHash": "KmLYtPa+FpOW2RlJYaQLlOO9M2T5Z654ZPmZv5tzn9gafmsTCQb2SXCuywvaVYDqcLsnkkM7w4fB4gyPcrslaA==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CleanArchitecture.Infrastructure\\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.16\\microsoft.entityframeworkcore.7.0.16.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.16\\microsoft.entityframeworkcore.abstractions.7.0.16.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.16\\microsoft.entityframeworkcore.analyzers.7.0.16.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Console/ADGroup.cs b/DigitalData.Core.Console/ADGroup.cs new file mode 100644 index 0000000..8bb95e9 --- /dev/null +++ b/DigitalData.Core.Console/ADGroup.cs @@ -0,0 +1,31 @@ +using DigitalData.Core.Attributes; + +namespace DigitalData.Core.ConsoleApp +{ + [ADFilter("(&(objectClass=group) (samAccountName=*))")] + public class ADGroup + { + public string ObjectSid { get; set; } + public string ObjectCategory { get; set; } + public int SamAccountType { get; set; } + public string DistinguishedName { get; set; } + public int InstanceType { get; set; } + public string Name { get; set; } + public string CN { get; set; } + public List ObjectClass { get; set; } = new(); + public DateTime WhenChanged { get; set; } + public Guid ObjectGuid { get; set; } + public long UsnCreated { get; set; } + public string SAMAccountName { get; set; } + public int? GroupType { get; set; } + public DateTime? DsCorePropagationData { get; set; } + public int? AdminCount { get; set; } + public int? SystemFlags { get; set; } + public List Member { get; set; } = new(); + public string AdsPath { get; set; } + public long UsnChanged { get; set; } + public DateTime WhenCreated { get; set; } + public string Description { get; set; } + public bool? IsCriticalSystemObject { get; set; } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/DigitalData.Core.ConsoleApp.csproj b/DigitalData.Core.Console/DigitalData.Core.ConsoleApp.csproj new file mode 100644 index 0000000..ddcfb09 --- /dev/null +++ b/DigitalData.Core.Console/DigitalData.Core.ConsoleApp.csproj @@ -0,0 +1,20 @@ + + + + Exe + net7.0 + enable + enable + + + + + + + + + + + + + diff --git a/DigitalData.Core.Console/DirectoryService.cs b/DigitalData.Core.Console/DirectoryService.cs new file mode 100644 index 0000000..518d458 --- /dev/null +++ b/DigitalData.Core.Console/DirectoryService.cs @@ -0,0 +1,145 @@ +using System.DirectoryServices; +using System.Collections; +using Microsoft.VisualBasic.CompilerServices; +using System.Reflection; + +namespace DigitalData.Core.ConsoleApp +{ + public class DirectoryService + { + public static T MapResultProperty(ResultPropertyCollection rpc) where T : new() + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The method is only supported on the Windows platform."); + + T resultObject = new(); + foreach (string propertyName in rpc.PropertyNames ?? throw new ArgumentNullException("PropertyNames are null")) + { + var propertyValue = rpc[propertyName][0]; + PropertyInfo? pi = typeof(T).GetProperty(propertyName, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance); + if (pi != null && propertyValue != null) + { + Type propertyType = pi.PropertyType; + Type underlyingType = Nullable.GetUnderlyingType(propertyType) ?? propertyType; + + if (propertyType != underlyingType) + { + propertyValue = Convert.ChangeType(propertyValue, underlyingType); + pi.SetValue(resultObject, propertyValue); + } + else if (typeof(IEnumerable).IsAssignableFrom(propertyType) && propertyType != typeof(string)) + { + var itemType = propertyType.GetGenericArguments()[0]; + IList list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(itemType)); + list.Add(Convert.ChangeType(propertyValue, itemType)); + pi.SetValue(resultObject, list); + } + else if (propertyValue is byte[] && propertyType == typeof(string)) + { + pi.SetValue(resultObject, Convert.ToBase64String((byte[])propertyValue)); + } + else if (propertyValue is byte[] stBytes && propertyType == typeof(string)) + { + pi.SetValue(resultObject, BitConverter.ToString(stBytes).Replace("-", "")); + } + else if (propertyValue is byte[] guiBytes && propertyType == typeof(Guid)) + { + pi.SetValue(resultObject, new Guid(guiBytes)); + } + else + { + propertyValue = Convert.ChangeType(propertyValue, propertyType); + pi.SetValue(resultObject, propertyValue); + } + } + } + return resultObject; + } + + public static SearchResultCollection Search(string filter) + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform."); + + DirectorySearcher directorySearcher = new() + { + SearchScope = SearchScope.Subtree, + SizeLimit = 50000, + Filter = filter, + }; + + return directorySearcher.FindAll(); + } + + public static IEnumerable Search(string filter) where T: new() + { + List list = new(); + foreach(SearchResult result in Search(filter)) + { + if (!OperatingSystem.IsWindows()) + throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform."); + + ResultPropertyCollection rpc = result.Properties; + T obj = MapResultProperty(rpc); + list.Add(obj); + } + return list; + } + public List ListGroups(string query) + { + if (OperatingSystem.IsWindows()) + { + DirectorySearcher directorySearcher = new() + { + SearchScope = SearchScope.Subtree, + SizeLimit = 50000, + Filter = query + }; + + SearchResultCollection result = directorySearcher.FindAll(); + + + return GroupResultsToList(result); + } + + throw new PlatformNotSupportedException("The ListGroups method is only supported on the Windows platform."); + } + + private List GroupResultsToList(SearchResultCollection results) + { + List list = new(); + + foreach(SearchResult result in results) + { + list.Add(new ADGroup + { + Name = TryGetProperty(result, "name"), + SAMAccountName = TryGetProperty(result, "samaccountname"), + CN = TryGetProperty(result, "cn"), + Description = TryGetProperty(result, "description"), + DistinguishedName = TryGetProperty(result, "distinguishedName"), + ObjectCategory = TryGetProperty(result, "objectCategory"), + //ObjectClass = TryGetProperty(result, "objectClass") + }); + } + + return list; + } + + private string TryGetProperty(SearchResult Result, string PropertyName) + { + var messages = new List(); + try + { + return Conversions.ToString(Result.Properties[PropertyName][0]); + } + catch (Exception ex) + { + Exception ex2 = ex; + messages.Add(String.Format("Property {0} not found", PropertyName)); + string empty = string.Empty; + return empty; + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/Program.cs b/DigitalData.Core.Console/Program.cs new file mode 100644 index 0000000..f870499 --- /dev/null +++ b/DigitalData.Core.Console/Program.cs @@ -0,0 +1,16 @@ +using DigitalData.Core.ConsoleApp; +using System.DirectoryServices; +using System.DirectoryServices.ActiveDirectory; + + +string AdRootPath = "LDAP://DD-GAN"; +string groupFilter = "(&(objectClass=group) (samAccountName=*))"; +string userFilter = "(&(objectClass=user)(samAccountName=@SAMACCOUNTNAME)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))"; +DirectoryService service = new (); + +var groups = DirectoryService.Search(groupFilter); + +foreach (var g in groups) +{ + Console.WriteLine(g.Name); +} \ No newline at end of file diff --git a/DigitalData.Core.Console/Properties/launchSettings.json b/DigitalData.Core.Console/Properties/launchSettings.json new file mode 100644 index 0000000..8aa9e54 --- /dev/null +++ b/DigitalData.Core.Console/Properties/launchSettings.json @@ -0,0 +1,8 @@ +{ + "profiles": { + "WSL": { + "commandName": "WSL2", + "distributionName": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.dll b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..ccc4bf0 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb new file mode 100644 index 0000000..1390bb5 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.deps.json b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.deps.json new file mode 100644 index 0000000..f696fe2 --- /dev/null +++ b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.deps.json @@ -0,0 +1,290 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Console/1.0.0": { + "dependencies": { + "Microsoft.VisualBasic": "10.3.0", + "System.DirectoryServices": "7.0.1", + "System.DirectoryServices.AccountManagement": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Console.dll": {} + } + }, + "Microsoft.VisualBasic/10.3.0": {}, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Diagnostics.EventLog/7.0.0": { + "runtime": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0", + "System.DirectoryServices": "7.0.1", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.1123.42427" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.1123.42427" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "DigitalData.Core.Console/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==", + "path": "microsoft.visualbasic/10.3.0", + "hashPath": "microsoft.visualbasic.10.3.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "path": "system.configuration.configurationmanager/7.0.0", + "hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "path": "system.diagnostics.eventlog/7.0.0", + "hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==", + "path": "system.directoryservices.accountmanagement/7.0.1", + "hashPath": "system.directoryservices.accountmanagement.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "path": "system.directoryservices.protocols/7.0.1", + "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "path": "system.security.cryptography.protecteddata/7.0.0", + "hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.dll b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.dll new file mode 100644 index 0000000..4d8d4c6 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.exe b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.exe new file mode 100644 index 0000000..a54d694 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.exe differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.pdb b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.pdb new file mode 100644 index 0000000..b00fe15 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.pdb differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.runtimeconfig.json b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.runtimeconfig.json new file mode 100644 index 0000000..f78f3ba --- /dev/null +++ b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.Console.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.deps.json b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.deps.json new file mode 100644 index 0000000..10b4009 --- /dev/null +++ b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.deps.json @@ -0,0 +1,301 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.ConsoleApp/1.0.0": { + "dependencies": { + "DigitalData.Core.Attributes": "1.0.0", + "Microsoft.VisualBasic": "10.3.0", + "System.DirectoryServices": "7.0.1", + "System.DirectoryServices.AccountManagement": "7.0.1" + }, + "runtime": { + "DigitalData.Core.ConsoleApp.dll": {} + } + }, + "Microsoft.VisualBasic/10.3.0": {}, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Diagnostics.EventLog/7.0.0": { + "runtime": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0", + "System.DirectoryServices": "7.0.1", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.1123.42427" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.1123.42427" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "runtime": { + "DigitalData.Core.Attributes.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.ConsoleApp/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==", + "path": "microsoft.visualbasic/10.3.0", + "hashPath": "microsoft.visualbasic.10.3.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "path": "system.configuration.configurationmanager/7.0.0", + "hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "path": "system.diagnostics.eventlog/7.0.0", + "hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==", + "path": "system.directoryservices.accountmanagement/7.0.1", + "hashPath": "system.directoryservices.accountmanagement.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "path": "system.directoryservices.protocols/7.0.1", + "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "path": "system.security.cryptography.protecteddata/7.0.0", + "hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.dll b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.dll new file mode 100644 index 0000000..ab46f62 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.exe b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.exe new file mode 100644 index 0000000..5925a0d Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.exe differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb new file mode 100644 index 0000000..0fcd38d Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.runtimeconfig.json b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.runtimeconfig.json new file mode 100644 index 0000000..f78f3ba --- /dev/null +++ b/DigitalData.Core.Console/bin/Debug/net7.0/DigitalData.Core.ConsoleApp.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/DigitalData.Core.Console/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..4f50adb Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..e610807 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Diagnostics.EventLog.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..74b4f9d Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Diagnostics.EventLog.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.AccountManagement.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..52fd84f Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..4d2da59 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.dll new file mode 100644 index 0000000..1d2b5f4 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.DirectoryServices.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Drawing.Common.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..310d5e8 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Drawing.Common.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..93e0dd0 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Permissions.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Permissions.dll new file mode 100644 index 0000000..9d8e76c Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Security.Permissions.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/System.Windows.Extensions.dll b/DigitalData.Core.Console/bin/Debug/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..23a5f31 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/System.Windows.Extensions.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..f535812 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..1b4c830 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d40a926 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..3b971e3 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..eb0f2aa Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll new file mode 100644 index 0000000..3bdf6a9 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..951a113 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll new file mode 100644 index 0000000..991a3ee Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..39493b4 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a441e38 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..a881c26 Binary files /dev/null and b/DigitalData.Core.Console/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Console/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfo.cs b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfo.cs new file mode 100644 index 0000000..413e1b9 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Console")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Console")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Console")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfoInputs.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfoInputs.cache new file mode 100644 index 0000000..883ec4d --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e6e582ccafc8145db251e2e74c6cd3ddfb2dfe8e diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..256fb48 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Console +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.GlobalUsings.g.cs b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.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/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.assets.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.assets.cache new file mode 100644 index 0000000..afae41e Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.assets.cache differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.AssemblyReference.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.AssemblyReference.cache new file mode 100644 index 0000000..2a87cb0 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.CopyComplete b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.CoreCompileInputs.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..d9185d4 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +43f49f8e96b0ad16e1973ffc64abbc5f638fad49 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.FileListAbsolute.txt b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5164bb5 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.csproj.FileListAbsolute.txt @@ -0,0 +1,37 @@ +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.exe +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.runtimeconfig.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Diagnostics.EventLog.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.AccountManagement.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Permissions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.AccountManagement.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\refint\DigitalData.Core.Console.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.genruntimeconfig.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\ref\DigitalData.Core.Console.dll diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.dll b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.dll new file mode 100644 index 0000000..4d8d4c6 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.genruntimeconfig.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.genruntimeconfig.cache new file mode 100644 index 0000000..0144a88 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.genruntimeconfig.cache @@ -0,0 +1 @@ +ebeba68baeed69063e55f7e5e86f852019e53575 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.pdb b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.pdb new file mode 100644 index 0000000..b00fe15 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.Console.pdb differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfo.cs b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfo.cs new file mode 100644 index 0000000..9922bed --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.ConsoleApp")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.ConsoleApp")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.ConsoleApp")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfoInputs.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfoInputs.cache new file mode 100644 index 0000000..16826cf --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0ccd0b2c6f62ba81d4d6c1a3f453a06be17e8a1f diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..a352360 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.ConsoleApp +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.GlobalUsings.g.cs b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.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/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.assets.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.assets.cache new file mode 100644 index 0000000..43f2a8c Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.assets.cache differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.AssemblyReference.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cb5e960 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.CopyComplete b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.CoreCompileInputs.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5f8d323 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +24036e25a4431bf3c86e4163114d38b7b6cb73ad diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.FileListAbsolute.txt b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..dc3f6cf --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.csproj.FileListAbsolute.txt @@ -0,0 +1,39 @@ +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.exe +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.runtimeconfig.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Diagnostics.EventLog.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.AccountManagement.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Permissions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.AccountManagement.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\refint\DigitalData.Core.ConsoleApp.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.genruntimeconfig.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\ref\DigitalData.Core.ConsoleApp.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Attributes.pdb diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.dll b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.dll new file mode 100644 index 0000000..ab46f62 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.genruntimeconfig.cache b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.genruntimeconfig.cache new file mode 100644 index 0000000..0144a88 --- /dev/null +++ b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.genruntimeconfig.cache @@ -0,0 +1 @@ +ebeba68baeed69063e55f7e5e86f852019e53575 diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb new file mode 100644 index 0000000..0fcd38d Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/DigitalData.Core.ConsoleApp.pdb differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/apphost.exe b/DigitalData.Core.Console/obj/Debug/net7.0/apphost.exe new file mode 100644 index 0000000..5925a0d Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/apphost.exe differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.Console.dll b/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.Console.dll new file mode 100644 index 0000000..a90f0ac Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.Console.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.ConsoleApp.dll b/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.ConsoleApp.dll new file mode 100644 index 0000000..46d6fe7 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/ref/DigitalData.Core.ConsoleApp.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.Console.dll b/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.Console.dll new file mode 100644 index 0000000..a90f0ac Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.Console.dll differ diff --git a/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.ConsoleApp.dll b/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.ConsoleApp.dll new file mode 100644 index 0000000..46d6fe7 Binary files /dev/null and b/DigitalData.Core.Console/obj/Debug/net7.0/refint/DigitalData.Core.ConsoleApp.dll differ diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.dgspec.json b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.dgspec.json new file mode 100644 index 0000000..52178c5 --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.dgspec.json @@ -0,0 +1,88 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj", + "projectName": "DigitalData.Core.Console", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.VisualBasic": { + "target": "Package", + "version": "[10.3.0, )" + }, + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.DirectoryServices.AccountManagement": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.props b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.targets b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.Console.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.dgspec.json b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ca91afa --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.dgspec.json @@ -0,0 +1,158 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "projectName": "DigitalData.Core.Attributes", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj", + "projectName": "DigitalData.Core.ConsoleApp", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.VisualBasic": { + "target": "Package", + "version": "[10.3.0, )" + }, + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.DirectoryServices.AccountManagement": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.props b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.targets b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Console/obj/DigitalData.Core.ConsoleApp.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/project.assets.json b/DigitalData.Core.Console/obj/project.assets.json new file mode 100644 index 0000000..02eff96 --- /dev/null +++ b/DigitalData.Core.Console/obj/project.assets.json @@ -0,0 +1,731 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.VisualBasic/10.3.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0", + "System.DirectoryServices": "7.0.1", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "compile": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "compile": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.VisualBasic/10.3.0": { + "sha512": "AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==", + "type": "package", + "path": "microsoft.visualbasic/10.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netcore50/Microsoft.VisualBasic.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.VisualBasic.dll", + "lib/netstandard2.0/Microsoft.VisualBasic.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "microsoft.visualbasic.10.3.0.nupkg.sha512", + "microsoft.visualbasic.nuspec", + "ref/net45/_._", + "ref/netcore50/Microsoft.VisualBasic.dll", + "ref/netcore50/Microsoft.VisualBasic.xml", + "ref/netcore50/de/Microsoft.VisualBasic.xml", + "ref/netcore50/es/Microsoft.VisualBasic.xml", + "ref/netcore50/fr/Microsoft.VisualBasic.xml", + "ref/netcore50/it/Microsoft.VisualBasic.xml", + "ref/netcore50/ja/Microsoft.VisualBasic.xml", + "ref/netcore50/ko/Microsoft.VisualBasic.xml", + "ref/netcore50/ru/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hans/Microsoft.VisualBasic.xml", + "ref/netcore50/zh-hant/Microsoft.VisualBasic.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/Microsoft.VisualBasic.dll", + "ref/netstandard1.1/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/de/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/es/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/fr/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/it/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ja/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ko/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/ru/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml", + "ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml", + "ref/netstandard2.0/Microsoft.VisualBasic.dll", + "ref/netstandard2.0/Microsoft.VisualBasic.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "sha512": "WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "type": "package", + "path": "system.configuration.configurationmanager/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.7.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/7.0.0": { + "sha512": "eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "type": "package", + "path": "system.diagnostics.eventlog/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.7.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.AccountManagement/7.0.1": { + "sha512": "UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==", + "type": "package", + "path": "system.directoryservices.accountmanagement/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "lib/net7.0/System.DirectoryServices.AccountManagement.dll", + "lib/net7.0/System.DirectoryServices.AccountManagement.xml", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll", + "lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.xml", + "system.directoryservices.accountmanagement.7.0.1.nupkg.sha512", + "system.directoryservices.accountmanagement.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/7.0.1": { + "sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "type": "package", + "path": "system.directoryservices.protocols/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/net7.0/System.DirectoryServices.Protocols.dll", + "lib/net7.0/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.7.0.1.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "sha512": "xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj", + "msbuildProject": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Attributes >= 1.0.0", + "Microsoft.VisualBasic >= 10.3.0", + "System.DirectoryServices >= 7.0.1", + "System.DirectoryServices.AccountManagement >= 7.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj", + "projectName": "DigitalData.Core.ConsoleApp", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.VisualBasic": { + "target": "Package", + "version": "[10.3.0, )" + }, + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + }, + "System.DirectoryServices.AccountManagement": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Console/obj/project.nuget.cache b/DigitalData.Core.Console/obj/project.nuget.cache new file mode 100644 index 0000000..9776f96 --- /dev/null +++ b/DigitalData.Core.Console/obj/project.nuget.cache @@ -0,0 +1,20 @@ +{ + "version": 2, + "dgSpecHash": "hF9IgStgjE2a0F5CxLUV49DOS/Hi1ibpTaDXXmah6tEC0dqegJdV0pIiwEgRIIA/jO/4jKkW01tSZT5UXIFHtA==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.visualbasic\\10.3.0\\microsoft.visualbasic.10.3.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.configuration.configurationmanager\\7.0.0\\system.configuration.configurationmanager.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.diagnostics.eventlog\\7.0.0\\system.diagnostics.eventlog.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.accountmanagement\\7.0.1\\system.directoryservices.accountmanagement.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.cryptography.protecteddata\\7.0.0\\system.security.cryptography.protecteddata.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/Authentication/Services/IADService.cs b/DigitalData.Core.Contracts/Authentication/Services/IADService.cs new file mode 100644 index 0000000..a91501f --- /dev/null +++ b/DigitalData.Core.Contracts/Authentication/Services/IADService.cs @@ -0,0 +1,28 @@ +using System.DirectoryServices; + +namespace DigitalData.Core.Contracts.Authentication.Services +{ + /// + /// Defines the contract for a service that interacts with Active Directory (AD) to search and read AD entries into objects of type . + /// + /// The type of the objects to which AD entries will be mapped. + public interface IADService where T : new() + { + /// + /// Performs a search in Active Directory and returns all matching entries. + /// + /// A collection of search results containing all matching Active Directory entries. + public SearchResultCollection SearchAll(); + + /// + /// Reads all search results and maps them to a collection of objects of type . + /// + /// An enumerable collection of objects of type , each representing an Active Directory entry. + public IEnumerable ReadAll(); + + /// + /// Gets the instance used for executing searches against Active Directory. + /// + public DirectorySearcher Searcher { get; } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Application/IBasicCRUDService.cs b/DigitalData.Core.Contracts/CleanArchitecture/Application/IBasicCRUDService.cs new file mode 100644 index 0000000..fc37537 --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Application/IBasicCRUDService.cs @@ -0,0 +1,23 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; + +namespace DigitalData.Core.Contracts.CleanArchitecture.Application +{ + /// + /// Implements a simplified CRUD service interface that uses a single Data Transfer Object (DTO) type for all CRUD operations, + /// streamlining the process for entities where the same DTO can be used for creating, reading, updating, and deleting entities. + /// This interface inherits from the ICRUDService interface, applying the same DTO type for all generic type parameters, + /// thereby simplifying the usage for cases where a single DTO is sufficient for all operations on an entity. + /// + /// The repository type that provides CRUD operations for entities of type TEntity. + /// The type of the Data Transfer Object used for all CRUD operations. + /// The type of the entity this service maps to. + /// The type of the identifier for the entity. + /// + /// This interface is useful for entities that do not require different DTOs for different operations, + /// allowing for a more concise and maintainable codebase when implementing services for such entities. + /// + public interface IBasicCRUDService : ICRUDService + where TCRUDRepository : ICRUDRepository where TDto : class where TEntity : class + { + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Application/ICRUDService.cs b/DigitalData.Core.Contracts/CleanArchitecture/Application/ICRUDService.cs new file mode 100644 index 0000000..037535d --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Application/ICRUDService.cs @@ -0,0 +1,75 @@ +using DigitalData.Core.Contracts.CleanArchitecture.Infrastructure; + +namespace DigitalData.Core.Contracts.CleanArchitecture.Application +{ + /// + /// Defines the contract for CRUD operations at the service level using Data Transfer Objects (DTOs) for entities of type TEntity, + /// wrapped in an IServiceResult to encapsulate the outcome of the operation, including success, data, and error messages. + /// + /// The repository type that provides CRUD operations for entities of type TEntity. + /// The type of the Data Transfer Object this service works with to create new entity. + /// The type of the Data Transfer Object this service works with to read new entity. + /// The type of the Data Transfer Object this service works with to update new entity. + /// The type of the entity this service maps to. + /// The type of the identifier for the entity. + public interface ICRUDService + where TCRUDRepository : ICRUDRepository where TCreateDto : class where TReadDto : class where TUpdateDto : class where TEntity : class + { + /// + /// Creates a new entity based on the provided DTO and returns the result wrapped in an IServiceResult, + /// including the created entity on success or an error message on failure. + /// + /// The createDto to create a new entity from. + /// An IServiceResult containing the id of created entity or an error message. + Task> CreateAsync(TCreateDto createDto); + + /// + /// Retrieves an entity by its identifier and returns its readDTO representation wrapped in an IServiceResult, + /// including the readDTO on success or null and an error message on failure. + /// + /// The identifier of the entity to retrieve. + /// An IServiceResult containing the readDTO representing the found entity or null, with an appropriate message. + Task> ReadByIdAsync(TId id); + + /// + /// Retrieves all entities and returns their readDTO representations wrapped in an IServiceResult, + /// including a collection of readDTOs on success or an error message on failure. + /// + /// An IServiceResult containing a collection of readDTOs representing all entities or an error message. + Task>> ReadAllAsync(); + + /// + /// Updates an existing entity based on the provided updateDTO and returns the result wrapped in an IServiceMessage, + /// indicating the success or failure of the operation, including the error messages on failure. + /// + /// The updateDTO with updated values for the entity. + /// An IServiceMessage indicating the outcome of the update operation, with an appropriate message. + Task UpdateAsync(TUpdateDto updateDto); + + /// + /// Deletes an entity by its identifier and returns the result wrapped in an IServiceMessage, + /// indicating the success or failure of the operation, including the error messages on failure. + /// + /// The identifier of the entity to delete. + /// An IServiceMessage indicating the outcome of the delete operation, with an appropriate message. + Task DeleteAsyncById(TId id); + + /// + /// Asynchronously checks if an entity with the specified identifier exists within the data store. + /// + /// The identifier of the entity to check. + /// A task that represents the asynchronous operation. The task result contains a boolean value indicating whether the entity exists. + Task HasEntity(TId id); + + /// + /// Handles exceptions that occur within service actions. This method should log the exception + /// and return an String that contains information about the error, which can then be sent to the client. + /// The implementation should determine the appropriate level of detail to include in the error message + /// based on security and usability considerations. + /// + /// The exception that occurred during the controller action. + /// An string instance representing the outcome of the error handling process. + /// This includes a flag indicating the operation was unsuccessful and any relevant error messages. + string HandleException(Exception ex); + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceMessage.cs b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceMessage.cs new file mode 100644 index 0000000..0edab57 --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceMessage.cs @@ -0,0 +1,21 @@ +namespace DigitalData.Core.Contracts.CleanArchitecture.Application +{ + /// + /// Defines a basic structure for service messages, including a success flag and a collection of messages. + /// This interface is intended to be a base for more specific service result types, offering a way to communicate + /// operation outcomes (success or failure) along with relevant messages. + /// + public interface IServiceMessage + { + /// + /// Gets or sets a value indicating whether the service operation was successful. + /// + bool IsSuccess { get; set; } + + /// + /// Gets or sets a collection of messages associated with the service operation. These messages can be error descriptions, + /// success notifications, or other relevant information related to the operation's outcome. + /// + List Messages { get; set; } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceReplier.cs b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceReplier.cs new file mode 100644 index 0000000..d5136d5 --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceReplier.cs @@ -0,0 +1,19 @@ +namespace DigitalData.Core.Contracts.CleanArchitecture.Application +{ + public interface IServiceReplier + { + IServiceMessage CreateMessage(bool isSuccess, params string[] messages); + + IServiceResult CreateResult(T? data, bool isSuccess = true, params string[] messages); + + IServiceMessage Successful() => CreateMessage(true); + + IServiceMessage Failed(params string[] messages) => CreateMessage(false, messages); + + IServiceResult Successful(T data) => CreateResult(data); + + IServiceResult Failed(T? data, params string[] messages) => CreateResult(data, false, messages); + + IServiceResult FailedResult(params string[] messages) => Failed(default, messages); + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceResult.cs b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceResult.cs new file mode 100644 index 0000000..9e85d51 --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Application/IServiceResult.cs @@ -0,0 +1,19 @@ +namespace DigitalData.Core.Contracts.CleanArchitecture.Application +{ + /// + /// Represents the outcome of a service operation, extending IServiceMessage with the addition of a data payload. + /// This interface is generic, allowing for the specification of the type of data returned by the service operation. + /// It is used to communicate not just the success or failure of an operation, but also to return any relevant data + /// along with the operation's outcome. + /// + /// The type of the data associated with the service operation's outcome. This could be a model, + /// a collection of models, or any other type relevant to the operation. + public interface IServiceResult : IServiceMessage + { + /// + /// Gets or sets the data resulting from the service operation. This property is nullable to accommodate operations + /// that might not return data upon failure. + /// + T? Data { get; set; } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CleanArchitecture/Infrastructure/ICRUDRepository.cs b/DigitalData.Core.Contracts/CleanArchitecture/Infrastructure/ICRUDRepository.cs new file mode 100644 index 0000000..0dd5d7d --- /dev/null +++ b/DigitalData.Core.Contracts/CleanArchitecture/Infrastructure/ICRUDRepository.cs @@ -0,0 +1,44 @@ +namespace DigitalData.Core.Contracts.CleanArchitecture.Infrastructure +{ + /// + /// Defines the contract for CRUD operations on a repository for entities of type TEntity. + /// + /// The type of the entity this repository works with. + /// The type of the identifier for the entity. + public interface ICRUDRepository where TEntity : class + { + /// + /// Adds a new entity to the repository. + /// + /// The entity to add. + /// The added entity, or null if the entity cannot be added. + Task CreateAsync(TEntity entity); + + /// + /// Retrieves an entity by its identifier from the repository. + /// + /// The identifier of the entity to retrieve. + /// The entity found, or null if no entity is found. + Task ReadByIdAsync(TId id); + + /// + /// Retrieves all entities from the repository. + /// + /// A collection of all entities. + Task> ReadAllAsync(); + + /// + /// Updates an existing entity in the repository. + /// + /// The entity to update. + /// The updated entity. + Task UpdateAsync(TEntity entity); + + /// + /// Deletes an entity from the repository. + /// + /// The entity to delete. + /// If entity is deleted, return true othwerwise return false. + Task DeleteAsync(TEntity entity); + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/CultureServices/IKeyTranslationService.cs b/DigitalData.Core.Contracts/CultureServices/IKeyTranslationService.cs new file mode 100644 index 0000000..f75ed63 --- /dev/null +++ b/DigitalData.Core.Contracts/CultureServices/IKeyTranslationService.cs @@ -0,0 +1,54 @@ +namespace DigitalData.Core.Contracts.CultureServices +{ + /// + /// Defines the interface for string localization, allowing retrieval of localized strings based on keys and arguments. + /// This service facilitates internationalization by providing an easy way to manage and access localized text strings + /// within an application, supporting dynamic content translation according to the current culture settings. + /// + public interface IKeyTranslationService + { + /// + /// Retrieves the localized string associated with the specified key. This method is used + /// when no additional formatting is required for the localized string. + /// + /// The key identifying the localized string in the resource files. + /// The localized string associated with the specified key. If the key does not exist, + /// a fallback mechanism may return the key itself or a default message indicating the missing localization. + string Translate(string key); + + /// + /// Retrieves the localized string for the specified enum key. This method simplifies localization + /// by allowing direct use of enum values as keys for retrieving localized strings. + /// + /// The enum value used as the key for the localized string. + /// The localized string associated with the specified enum key. If the corresponding string does not exist, + /// a fallback mechanism may return the enum name itself or a default message indicating the missing localization. + string Translate(Enum key) => Translate(key.ToString()); + + /// + /// Retrieves the formatted localized string for the specified key, using the provided arguments to format + /// the string. This method is useful for localizing strings that require dynamic content insertion, such as + /// names, dates, or numbers, which may vary in placement or format based on the culture. + /// + /// The key identifying the localized string in the resource files. + /// An object array that contains zero or more objects to format into the localized string. + /// These objects are inserted into the localized string based on the current culture's formatting rules. + /// The formatted localized string associated with the specified key. If the key does not exist, + /// a fallback mechanism may return a formatted string using the key and arguments, or a default message indicating + /// the missing localization. + string Translate(string key, params object[] arguments); + + /// + /// Retrieves the formatted localized string for the specified enum key, using the provided arguments to format + /// the string. This method extends the localization capabilities to enums, facilitating the use of enums as keys + /// for retrieving formatted localized strings with dynamic content. + /// + /// The enum value used as the key for the localized string. + /// An object array that contains zero or more objects to format into the localized string. + /// These objects are inserted into the localized string based on the current culture's formatting rules. + /// The formatted localized string associated with the specified enum key. If the corresponding string does not exist, + /// a fallback mechanism may return a formatted string using the enum name and arguments, or a default message indicating + /// the missing localization. + string Translate(Enum key, params object[] arguments) => Translate(key.ToString(), arguments); + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj b/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj new file mode 100644 index 0000000..c0c5e46 --- /dev/null +++ b/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj @@ -0,0 +1,13 @@ + + + + net7.0 + enable + enable + + + + + + + diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.deps.json b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.deps.json new file mode 100644 index 0000000..c9220bb --- /dev/null +++ b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.deps.json @@ -0,0 +1,145 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Contracts/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..ee3cb87 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1f9fcd4 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +06ec6b8e37e720c08a2d2c89dcb041839b30e345 diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b056b91 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Contracts +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GlobalUsings.g.cs b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.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/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.assets.cache b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.assets.cache new file mode 100644 index 0000000..c075480 Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.assets.cache differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache new file mode 100644 index 0000000..865f21c Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..e94f4d9 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a9db3a54a7e18da1629a72e8f69d5767988bd276 diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9b7c2c1 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\refint\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\ref\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\refint\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Contracts\obj\Debug\net7.0\ref\DigitalData.Core.Contracts.dll diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..c1974be Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..c1974be Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e9967a1 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,80 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.props b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.targets b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8ca5db2 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json @@ -0,0 +1,80 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[7.0.16, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets new file mode 100644 index 0000000..686b874 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/project.assets.json b/DigitalData.Core.Contracts/obj/project.assets.json new file mode 100644 index 0000000..533b3f0 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/project.assets.json @@ -0,0 +1,351 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + } + } + }, + "libraries": { + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "System.DirectoryServices >= 7.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Contracts/obj/project.nuget.cache b/DigitalData.Core.Contracts/obj/project.nuget.cache new file mode 100644 index 0000000..9c21a58 --- /dev/null +++ b/DigitalData.Core.Contracts/obj/project.nuget.cache @@ -0,0 +1,14 @@ +{ + "version": 2, + "dgSpecHash": "LhXjWCBkD7ZqHljLXpoxQD80daqn64odiqo6JBZqWjR5hUon3ccAg54C7m68NXLJomkN+h/xY/DHLYQWOPd/bg==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/DIExtensions.cs b/DigitalData.Core.CultureServices/DIExtensions.cs new file mode 100644 index 0000000..4b518b4 --- /dev/null +++ b/DigitalData.Core.CultureServices/DIExtensions.cs @@ -0,0 +1,20 @@ +using DigitalData.Common.CultureServices; +using DigitalData.Core.Contracts.CultureServices; +using Microsoft.Extensions.DependencyInjection; + +namespace DigitalData.Core.CultureServices +{ + public static class DIExtensions + { + /// + /// Registers the KeyTranslationService and its dependencies in the dependency injection container. + /// + /// The IServiceCollection instance to register the services with. + public static IServiceCollection AddKeyTranslationService(this IServiceCollection services) + { + services.AddTransient(); + return services; + } + } + +} diff --git a/DigitalData.Core.CultureServices/DigitalData.Core.CultureServices.csproj b/DigitalData.Core.CultureServices/DigitalData.Core.CultureServices.csproj new file mode 100644 index 0000000..c30c64f --- /dev/null +++ b/DigitalData.Core.CultureServices/DigitalData.Core.CultureServices.csproj @@ -0,0 +1,17 @@ + + + + net7.0 + enable + enable + + + + + + + + + + + diff --git a/DigitalData.Core.CultureServices/KeyTranslationService.cs b/DigitalData.Core.CultureServices/KeyTranslationService.cs new file mode 100644 index 0000000..bd0a9f7 --- /dev/null +++ b/DigitalData.Core.CultureServices/KeyTranslationService.cs @@ -0,0 +1,26 @@ +using DigitalData.Core.Contracts.CultureServices; + +namespace DigitalData.Common.CultureServices +{ + public class KeyTranslationService : IKeyTranslationService + { + //private readonly IStringLocalizer _localizer; + + public KeyTranslationService(/*IStringLocalizer localizer*/) + { + //_localizer = localizer; + } + + public string Translate(string key) + { + //return _localizer[key]; + return key; + } + + public string Translate(string key, params object[] arguments) + { + //return _localizer[key, arguments]; + return key; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/MockStringLocalizer.cs b/DigitalData.Core.CultureServices/MockStringLocalizer.cs new file mode 100644 index 0000000..f2a9d36 --- /dev/null +++ b/DigitalData.Core.CultureServices/MockStringLocalizer.cs @@ -0,0 +1,79 @@ +using Microsoft.Extensions.Localization; +using System.Globalization; + +internal class MockStringLocalizer : IStringLocalizer +{ + private readonly Dictionary> _localizations; + + public MockStringLocalizer() + { + // Initialize your mock data here + _localizations = new Dictionary> + { + {"en", new Dictionary + { + {"Hello", "Hello"}, + {"Goodbye", "Goodbye"} + } + }, + {"fr", new Dictionary + { + {"Hello", "Bonjour"}, + {"Goodbye", "Au revoir"} + } + } + // Add more languages as needed + }; + } + + public LocalizedString this[string name] + { + get + { + var value = GetString(name); + return new LocalizedString(name, value ?? name, resourceNotFound: value == null); + } + } + + public LocalizedString this[string name, params object[] arguments] + { + get + { + var format = GetString(name); + var value = string.Format(format ?? name, arguments); + return new LocalizedString(name, value, resourceNotFound: format == null); + } + } + + private string GetString(string name) + { + var culture = CultureInfo.CurrentUICulture.Name; + if (_localizations.ContainsKey(culture) && _localizations[culture].ContainsKey(name)) + { + return _localizations[culture][name]; + } + + // Fallback to English if specific culture not found + return _localizations["en"].ContainsKey(name) ? _localizations["en"][name] : null; + } + + public IEnumerable GetAllStrings(bool includeParentCultures) + { + var culture = CultureInfo.CurrentUICulture.Name; + if (!_localizations.ContainsKey(culture)) + { + culture = "en"; // Default to English + } + + foreach (var localization in _localizations[culture]) + { + yield return new LocalizedString(localization.Key, localization.Value); + } + } + + public IStringLocalizer WithCulture(CultureInfo culture) + { + // This method is obsolete and not recommended for use in .NET Core 3.0+ applications. + throw new NotImplementedException(); + } +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json new file mode 100644 index 0000000..cdd6eda --- /dev/null +++ b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json @@ -0,0 +1,259 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.CultureServices/1.0.0": { + "dependencies": { + "DigitalData.Core.Contracts": "1.0.0", + "Microsoft.Extensions.Localization": "7.0.16" + }, + "runtime": { + "DigitalData.Core.CultureServices.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Localization/7.0.16": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Localization.Abstractions": "7.0.16", + "Microsoft.Extensions.Logging.Abstractions": "7.0.1", + "Microsoft.Extensions.Options": "7.0.1" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.1624.6815" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/7.0.16": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.1624.6815" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.1": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.723.27404" + } + } + }, + "Microsoft.Extensions.Options/7.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.CultureServices/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/7.0.16": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JpTQ/El4m/Yfup+sgwvp8qtYAoxEYe9wXy63gw/KXep8bzUdA1wfReed0rL2UqR9Uk7hDnjfYFCz190B2fBYdA==", + "path": "microsoft.extensions.localization/7.0.16", + "hashPath": "microsoft.extensions.localization.7.0.16.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/7.0.16": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wUwfDVcOMRUZv+zX45Vyh/MkXpdOy7nIvRRf3n2iiYoh76M0Dr/wx8Ppxk3v9H556z2e0QwLVQqqkd+oj+CGRQ==", + "path": "microsoft.extensions.localization.abstractions/7.0.16", + "hashPath": "microsoft.extensions.localization.abstractions.7.0.16.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pkeBFx0vqMW/A3aUVHh7MPu3WkBhaVlezhSZeb1c9XD0vUReYH1TLFSy5MxJgZfmz5LZzYoErMorlYZiwpOoNA==", + "path": "microsoft.extensions.logging.abstractions/7.0.1", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pZRDYdN1FpepOIfHU62QoBQ6zdAoTvnjxFfqAzEd9Jhb2dfhA5i6jeTdgGgcgTWFRC7oT0+3XrbQu4LjvgX1Nw==", + "path": "microsoft.extensions.options/7.0.1", + "hashPath": "microsoft.extensions.options.7.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll new file mode 100644 index 0000000..d70bff3 Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll differ diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb new file mode 100644 index 0000000..0164670 Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.CultureServices/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs new file mode 100644 index 0000000..dab0a0b --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.CultureServices")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.CultureServices")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.CultureServices")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache new file mode 100644 index 0000000..37eec31 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +30066f38fa614bd30c64a68c223ae0cbdeb884f2 diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd254df --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.CultureServices +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GlobalUsings.g.cs b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.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/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.assets.cache b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.assets.cache new file mode 100644 index 0000000..55c6c82 Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.assets.cache differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache new file mode 100644 index 0000000..efc6fce Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CopyComplete b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..20fc3d7 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +46da143cda000d06f1b01a1aa44d3852089bc12e diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..47faa88 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt @@ -0,0 +1,30 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CopyComplete +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\refint\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\ref\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\refint\DigitalData.Core.CultureServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.CultureServices\obj\Debug\net7.0\ref\DigitalData.Core.CultureServices.dll diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll new file mode 100644 index 0000000..d70bff3 Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb new file mode 100644 index 0000000..0164670 Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll new file mode 100644 index 0000000..7ee42cf Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll differ diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll new file mode 100644 index 0000000..7ee42cf Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll differ diff --git a/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json new file mode 100644 index 0000000..a9eb887 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json @@ -0,0 +1,156 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "projectName": "DigitalData.Core.CultureServices", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[7.0.16, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets new file mode 100644 index 0000000..686b874 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.g.targets @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/obj/project.assets.json b/DigitalData.Core.CultureServices/obj/project.assets.json new file mode 100644 index 0000000..1908b1c --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/project.assets.json @@ -0,0 +1,667 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Localization/7.0.16": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Localization.Abstractions": "7.0.16", + "Microsoft.Extensions.Logging.Abstractions": "7.0.1", + "Microsoft.Extensions.Options": "7.0.1" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Localization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Localization.Abstractions/7.0.16": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.1": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "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/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Localization/7.0.16": { + "sha512": "JpTQ/El4m/Yfup+sgwvp8qtYAoxEYe9wXy63gw/KXep8bzUdA1wfReed0rL2UqR9Uk7hDnjfYFCz190B2fBYdA==", + "type": "package", + "path": "microsoft.extensions.localization/7.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.dll", + "lib/net462/Microsoft.Extensions.Localization.xml", + "lib/net7.0/Microsoft.Extensions.Localization.dll", + "lib/net7.0/Microsoft.Extensions.Localization.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.xml", + "microsoft.extensions.localization.7.0.16.nupkg.sha512", + "microsoft.extensions.localization.nuspec" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/7.0.16": { + "sha512": "wUwfDVcOMRUZv+zX45Vyh/MkXpdOy7nIvRRf3n2iiYoh76M0Dr/wx8Ppxk3v9H556z2e0QwLVQqqkd+oj+CGRQ==", + "type": "package", + "path": "microsoft.extensions.localization.abstractions/7.0.16", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Localization.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Localization.Abstractions.xml", + "microsoft.extensions.localization.abstractions.7.0.16.nupkg.sha512", + "microsoft.extensions.localization.abstractions.nuspec" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.1": { + "sha512": "pkeBFx0vqMW/A3aUVHh7MPu3WkBhaVlezhSZeb1c9XD0vUReYH1TLFSy5MxJgZfmz5LZzYoErMorlYZiwpOoNA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/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.7.0.1.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/7.0.1": { + "sha512": "pZRDYdN1FpepOIfHU62QoBQ6zdAoTvnjxFfqAzEd9Jhb2dfhA5i6jeTdgGgcgTWFRC7oT0+3XrbQu4LjvgX1Nw==", + "type": "package", + "path": "microsoft.extensions.options/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/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.7.0.1.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "type": "package", + "path": "microsoft.extensions.primitives/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Contracts >= 1.0.0", + "Microsoft.Extensions.Localization >= 7.0.16" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "projectName": "DigitalData.Core.CultureServices", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.Extensions.Localization": { + "target": "Package", + "version": "[7.0.16, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.CultureServices/obj/project.nuget.cache b/DigitalData.Core.CultureServices/obj/project.nuget.cache new file mode 100644 index 0000000..50fb511 --- /dev/null +++ b/DigitalData.Core.CultureServices/obj/project.nuget.cache @@ -0,0 +1,20 @@ +{ + "version": 2, + "dgSpecHash": "+ZnQvqtgqghMdgIAs35Phsx8uA96YH0DNVnUL3DkWoM596FR08pyvSRiU2Vgo/j6nnzKsH1JRnGj0aO7Tg5zGw==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.localization\\7.0.16\\microsoft.extensions.localization.7.0.16.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\7.0.16\\microsoft.extensions.localization.abstractions.7.0.16.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.1\\microsoft.extensions.logging.abstractions.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.options\\7.0.1\\microsoft.extensions.options.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/DigitalData.Core.Exceptions.csproj b/DigitalData.Core.Exceptions/DigitalData.Core.Exceptions.csproj new file mode 100644 index 0000000..bf0397a --- /dev/null +++ b/DigitalData.Core.Exceptions/DigitalData.Core.Exceptions.csproj @@ -0,0 +1,13 @@ + + + + net7.0 + enable + enable + + + + + + + diff --git a/DigitalData.Core.Exceptions/MappingResultNullException.cs b/DigitalData.Core.Exceptions/MappingResultNullException.cs new file mode 100644 index 0000000..c0172de --- /dev/null +++ b/DigitalData.Core.Exceptions/MappingResultNullException.cs @@ -0,0 +1,36 @@ +using AutoMapper; +using AutoMapper.Internal; + +namespace DigitalData.Core.Exceptions +{ + /// + /// Represents errors that occur during mapping when the result is unexpectedly null. + /// This exception is specifically used to indicate that an AutoMapper mapping operation + /// resulted in a null object, which may suggest a misconfiguration or an issue with the source data. + /// + public class MappingResultNullException : AutoMapperMappingException + { + /// + /// Initializes a new instance of the class with the source and destination types causing the error. + /// + /// The source type of the mapping operation. + /// The destination type of the mapping operation. + /// The exception that is the cause of the current exception, or a null reference if no inner exception is specified. + public MappingResultNullException(Type sourceType, Type destinationType, Exception? innerException = null) + : base(FormatMessage(sourceType, destinationType), innerException, new TypePair(sourceType, destinationType)) + { + } + + /// + /// Formats the exception message to include detailed information about the mapping operation that failed. + /// + /// The source type involved in the mapping operation. + /// The destination type involved in the mapping operation. + /// A formatted string containing the error message. + private static string FormatMessage(Type sourceType, Type destinationType) + { + return $"Mapping from {sourceType.FullName} to {destinationType.FullName} resulted in a null object. " + + "Hint: Ensure that the AutoMapper profile configuration for this mapping is correct."; + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.deps.json b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.deps.json new file mode 100644 index 0000000..423c35e --- /dev/null +++ b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.deps.json @@ -0,0 +1,104 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Exceptions/1.0.0": { + "dependencies": { + "AutoMapper": "13.0.1" + }, + "runtime": { + "DigitalData.Core.Exceptions.dll": {} + } + }, + "AutoMapper/13.0.1": { + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.0" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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/net6.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {} + } + }, + "libraries": { + "DigitalData.Core.Exceptions/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AutoMapper/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "path": "automapper/13.0.1", + "hashPath": "automapper.13.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.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" + }, + "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" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll new file mode 100644 index 0000000..bbf1f69 Binary files /dev/null and b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.dll differ diff --git a/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb new file mode 100644 index 0000000..206fa68 Binary files /dev/null and b/DigitalData.Core.Exceptions/bin/Debug/net7.0/DigitalData.Core.Exceptions.pdb differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Exceptions/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfo.cs b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfo.cs new file mode 100644 index 0000000..d17a957 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Exceptions")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Exceptions")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Exceptions")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfoInputs.cache b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfoInputs.cache new file mode 100644 index 0000000..15e8272 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +accdcb61a5b1fdb1db91708d87ca98249a1ba9b2 diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7871182 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Exceptions +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.GlobalUsings.g.cs b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.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/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.assets.cache b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.assets.cache new file mode 100644 index 0000000..9bfae9a Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.assets.cache differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.AssemblyReference.cache b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c88a8cc Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.CoreCompileInputs.cache b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..7343d00 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5b842fb4cfecd7d85c546a3083f7a20f9cd069d3 diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.FileListAbsolute.txt b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..8722f52 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.csproj.FileListAbsolute.txt @@ -0,0 +1,24 @@ +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.deps.json +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.AssemblyInfo.cs +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\refint\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DigitalData\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\ref\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\bin\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\refint\DigitalData.Core.Exceptions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\DigitalData.Core.Exceptions.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Exceptions\obj\Debug\net7.0\ref\DigitalData.Core.Exceptions.dll diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.dll b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.dll new file mode 100644 index 0000000..bbf1f69 Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.dll differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.pdb b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.pdb new file mode 100644 index 0000000..206fa68 Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/DigitalData.Core.Exceptions.pdb differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/ref/DigitalData.Core.Exceptions.dll b/DigitalData.Core.Exceptions/obj/Debug/net7.0/ref/DigitalData.Core.Exceptions.dll new file mode 100644 index 0000000..0f14b7d Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/ref/DigitalData.Core.Exceptions.dll differ diff --git a/DigitalData.Core.Exceptions/obj/Debug/net7.0/refint/DigitalData.Core.Exceptions.dll b/DigitalData.Core.Exceptions/obj/Debug/net7.0/refint/DigitalData.Core.Exceptions.dll new file mode 100644 index 0000000..0f14b7d Binary files /dev/null and b/DigitalData.Core.Exceptions/obj/Debug/net7.0/refint/DigitalData.Core.Exceptions.dll differ diff --git a/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.dgspec.json b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.dgspec.json new file mode 100644 index 0000000..8a96127 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.dgspec.json @@ -0,0 +1,80 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "projectName": "DigitalData.Core.Exceptions", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.props b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.props new file mode 100644 index 0000000..ca6a4ed --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.targets b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.targets new file mode 100644 index 0000000..35a7576 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/DigitalData.Core.Exceptions.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/obj/project.assets.json b/DigitalData.Core.Exceptions/obj/project.assets.json new file mode 100644 index 0000000..9bf0858 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/project.assets.json @@ -0,0 +1,287 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "AutoMapper/13.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Options": "6.0.0" + }, + "compile": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/AutoMapper.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Primitives/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + } + } + }, + "libraries": { + "AutoMapper/13.0.1": { + "sha512": "/Fx1SbJ16qS7dU4i604Sle+U9VLX+WSNVJggk6MupKVkYvvBm4XqYaeFuf67diHefHKHs50uQIS2YEDFhPCakQ==", + "type": "package", + "path": "automapper/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "automapper.13.0.1.nupkg.sha512", + "automapper.nuspec", + "icon.png", + "lib/net6.0/AutoMapper.dll", + "lib/net6.0/AutoMapper.xml" + ] + }, + "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.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" + ] + }, + "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" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "AutoMapper >= 13.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "projectName": "DigitalData.Core.Exceptions", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "AutoMapper": { + "target": "Package", + "version": "[13.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Exceptions/obj/project.nuget.cache b/DigitalData.Core.Exceptions/obj/project.nuget.cache new file mode 100644 index 0000000..90d7b10 --- /dev/null +++ b/DigitalData.Core.Exceptions/obj/project.nuget.cache @@ -0,0 +1,14 @@ +{ + "version": 2, + "dgSpecHash": "ihK+H6VTTAgJDUXTEFa+rudu89bPjDwQwvm+YGP9HEzkYjXNbj7T+Dm2oJqIoM5YMTGek4Gw3/EqQxn8VtlgXg==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Exceptions\\DigitalData.Core.Exceptions.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\automapper\\13.0.1\\automapper.13.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.Tests/ADServiceTests.cs b/DigitalData.Core.Tests/ADServiceTests.cs new file mode 100644 index 0000000..f7ec324 --- /dev/null +++ b/DigitalData.Core.Tests/ADServiceTests.cs @@ -0,0 +1,18 @@ +namespace DigitalData.Core.Tests +{ + [TestFixture] + public class ADServiceTests + { + [SetUp] + public void Setup() + { + + } + + [Test] + public void ValidateUser_CorrectCredentials_ReturnsTrue() + { + + } + } +} diff --git a/DigitalData.Core.Tests/DigitalData.Core.Tests.csproj b/DigitalData.Core.Tests/DigitalData.Core.Tests.csproj new file mode 100644 index 0000000..f224fe1 --- /dev/null +++ b/DigitalData.Core.Tests/DigitalData.Core.Tests.csproj @@ -0,0 +1,25 @@ + + + + net7.0 + enable + enable + + false + true + + + + + + + + + + + + + + + + diff --git a/DigitalData.Core.Tests/Usings.cs b/DigitalData.Core.Tests/Usings.cs new file mode 100644 index 0000000..cefced4 --- /dev/null +++ b/DigitalData.Core.Tests/Usings.cs @@ -0,0 +1 @@ +global using NUnit.Framework; \ No newline at end of file diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Castle.Core.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Castle.Core.dll new file mode 100644 index 0000000..eb7fd3b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Castle.Core.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping b/DigitalData.Core.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping new file mode 100644 index 0000000..75a10fa Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/CoverletSourceRootsMapping differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.dll new file mode 100644 index 0000000..c05f4e7 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb new file mode 100644 index 0000000..d1ec938 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Attributes.pdb differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.dll new file mode 100644 index 0000000..e42ebd6 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb new file mode 100644 index 0000000..5c91485 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Authentication.pdb differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.dll new file mode 100644 index 0000000..b3f82a0 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb new file mode 100644 index 0000000..8ae4b5d Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.deps.json b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.deps.json new file mode 100644 index 0000000..f1b3e22 --- /dev/null +++ b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.deps.json @@ -0,0 +1,1252 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "DigitalData.Core.Tests/1.0.0": { + "dependencies": { + "DigitalData.Core.Authentication": "1.0.0", + "Microsoft.NET.Test.Sdk": "17.3.2", + "Moq": "4.20.70", + "NUnit": "3.13.3", + "NUnit.Analyzers": "3.5.0", + "NUnit3TestAdapter": "4.3.0", + "coverlet.collector": "3.1.2" + }, + "runtime": { + "DigitalData.Core.Tests.dll": {} + } + }, + "Castle.Core/5.1.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.1.1.0" + } + } + }, + "coverlet.collector/3.1.2": {}, + "Microsoft.CodeCoverage/17.3.2": { + "runtime": { + "lib/netcoreapp1.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.300.622.32707" + } + } + }, + "Microsoft.CSharp/4.0.1": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "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.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "Microsoft.NET.Test.Sdk/17.3.2": { + "dependencies": { + "Microsoft.CodeCoverage": "17.3.2", + "Microsoft.TestPlatform.TestHost": "17.3.2" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Targets/1.0.1": {}, + "Microsoft.TestPlatform.ObjectModel/17.3.2": { + "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.3.2": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.3.2", + "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.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Moq/4.20.70": { + "dependencies": { + "Castle.Core": "5.1.1" + }, + "runtime": { + "lib/net6.0/Moq.dll": { + "assemblyVersion": "4.20.70.0", + "fileVersion": "4.20.70.0" + } + } + }, + "NETStandard.Library/2.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/9.0.1": { + "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" + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.1.19813" + } + } + }, + "NuGet.Frameworks/5.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "5.11.0.10", + "fileVersion": "5.11.0.10" + } + } + }, + "NUnit/3.13.3": { + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "assemblyVersion": "3.13.3.0", + "fileVersion": "3.13.3.0" + } + } + }, + "NUnit.Analyzers/3.5.0": {}, + "NUnit3TestAdapter/4.3.0": {}, + "System.Collections/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Diagnostics.Debug/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Diagnostics.Tools/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.DirectoryServices/7.0.1": { + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.323.6910" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "linux", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "osx", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.1", + "fileVersion": "7.0.723.27404" + } + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Dynamic.Runtime/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Globalization/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.IO/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.IO.FileSystem/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "dependencies": { + "System.Runtime": "4.1.0" + } + }, + "System.Linq/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + } + }, + "System.Linq.Expressions/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.ObjectModel/4.0.12": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Reflection/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Emit/4.0.1": { + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Extensions/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.Metadata/1.6.0": {}, + "System.Reflection.Primitives/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Resources.ResourceManager/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1" + } + }, + "System.Runtime.Extensions/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime.Handles/4.0.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Runtime.InteropServices/4.1.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + } + }, + "System.Runtime.Serialization.Primitives/4.1.1": { + "dependencies": { + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Text.Encoding/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + } + }, + "System.Text.RegularExpressions/4.1.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + } + }, + "System.Threading/4.0.11": { + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Threading.Tasks/4.0.11": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + } + }, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + } + }, + "System.Xml.XDocument/4.0.11": { + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "runtime": { + "DigitalData.Core.Attributes.dll": {} + } + }, + "DigitalData.Core.Authentication/1.0.0": { + "dependencies": { + "DigitalData.Core.Attributes": "1.0.0", + "DigitalData.Core.Contracts": "1.0.0", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Authentication.dll": {} + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "runtime": { + "DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "DigitalData.Core.Tests/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Castle.Core/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "path": "castle.core/5.1.1", + "hashPath": "castle.core.5.1.1.nupkg.sha512" + }, + "coverlet.collector/3.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==", + "path": "coverlet.collector/3.1.2", + "hashPath": "coverlet.collector.3.1.2.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+CeYNY9hYNRgv1wAID5koeDVob1ZOrOYfRRTLxU9Zm5ZMDMkMZ8wzXgakxVv+jtk8tPdE8Ze9vVE+czMKapv/Q==", + "path": "microsoft.codecoverage/17.3.2", + "hashPath": "microsoft.codecoverage.17.3.2.nupkg.sha512" + }, + "Microsoft.CSharp/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "path": "microsoft.csharp/4.0.1", + "hashPath": "microsoft.csharp.4.0.1.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-apR0ha1T8FujBwq1P8i/DOZjbI5XhcP/i8As4NnVztVSpZG8GtWRPCstcmgkUkBpvEfcrrDPlJWbuZY+Hl1hSg==", + "path": "microsoft.net.test.sdk/17.3.2", + "hashPath": "microsoft.net.test.sdk.17.3.2.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.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "path": "microsoft.netcore.targets/1.0.1", + "hashPath": "microsoft.netcore.targets.1.0.1.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DJEIfSA2GDC+2m42vKGNR2hm+Uhta4SpCsLZVVvYIiYMjxtk7GzNnv82qvE4SCW3kIYllMg2D0rr8juuj/f7AA==", + "path": "microsoft.testplatform.objectmodel/17.3.2", + "hashPath": "microsoft.testplatform.objectmodel.17.3.2.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.3.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-113J19v31pIx+PzmdEw67cWTZWh/YApnprbclFeat6szNbnpKOKG7Ap4PX5LT6E5Da+xONyilxvx2HZPpEaXPQ==", + "path": "microsoft.testplatform.testhost/17.3.2", + "hashPath": "microsoft.testplatform.testhost.17.3.2.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "Moq/4.20.70": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4rNnAwdpXJBuxqrOCzCyICXHSImOTRktCgCWXWykuF1qwoIsVvEnR7PjbMk/eLOxWvhmj5Kwt+kDV3RGUYcNwg==", + "path": "moq/4.20.70", + "hashPath": "moq.4.20.70.nupkg.sha512" + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "path": "netstandard.library/2.0.0", + "hashPath": "netstandard.library.2.0.0.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" + }, + "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" + }, + "NUnit/3.13.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==", + "path": "nunit/3.13.3", + "hashPath": "nunit.3.13.3.nupkg.sha512" + }, + "NUnit.Analyzers/3.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uvYCAqtZrY9RZc1ErVREvcYr828uy4RmTZYfMPN5FrahvJp/b2+QEgsJISzU3cbxLc9IBBlEOBa9d4t6ejFM2Q==", + "path": "nunit.analyzers/3.5.0", + "hashPath": "nunit.analyzers.3.5.0.nupkg.sha512" + }, + "NUnit3TestAdapter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oXlDbkGW01VPPgI8P/XQ+PZHqaJoWtV90WuAkR0yN8HC3hiPivy2AaBZP3lqOql4RFqdxvF5qYSuaeWI+7/wGg==", + "path": "nunit3testadapter/4.3.0", + "hashPath": "nunit3testadapter.4.3.0.nupkg.sha512" + }, + "System.Collections/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "path": "system.collections/4.0.11", + "hashPath": "system.collections.4.0.11.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "path": "system.diagnostics.debug/4.0.11", + "hashPath": "system.diagnostics.debug.4.0.11.nupkg.sha512" + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "path": "system.diagnostics.tools/4.0.1", + "hashPath": "system.diagnostics.tools.4.0.1.nupkg.sha512" + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "path": "system.directoryservices/7.0.1", + "hashPath": "system.directoryservices.7.0.1.nupkg.sha512" + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "path": "system.directoryservices.protocols/7.0.1", + "hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "path": "system.dynamic.runtime/4.0.11", + "hashPath": "system.dynamic.runtime.4.0.11.nupkg.sha512" + }, + "System.Globalization/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "path": "system.globalization/4.0.11", + "hashPath": "system.globalization.4.0.11.nupkg.sha512" + }, + "System.IO/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "path": "system.io/4.1.0", + "hashPath": "system.io.4.1.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "path": "system.io.filesystem/4.0.1", + "hashPath": "system.io.filesystem.4.0.1.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "path": "system.io.filesystem.primitives/4.0.1", + "hashPath": "system.io.filesystem.primitives.4.0.1.nupkg.sha512" + }, + "System.Linq/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "path": "system.linq/4.1.0", + "hashPath": "system.linq.4.1.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "path": "system.linq.expressions/4.1.0", + "hashPath": "system.linq.expressions.4.1.0.nupkg.sha512" + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "path": "system.objectmodel/4.0.12", + "hashPath": "system.objectmodel.4.0.12.nupkg.sha512" + }, + "System.Reflection/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "path": "system.reflection/4.1.0", + "hashPath": "system.reflection.4.1.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "path": "system.reflection.emit/4.0.1", + "hashPath": "system.reflection.emit.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "hashPath": "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "path": "system.reflection.emit.lightweight/4.0.1", + "hashPath": "system.reflection.emit.lightweight.4.0.1.nupkg.sha512" + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "path": "system.reflection.extensions/4.0.1", + "hashPath": "system.reflection.extensions.4.0.1.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.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "path": "system.reflection.primitives/4.0.1", + "hashPath": "system.reflection.primitives.4.0.1.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "path": "system.reflection.typeextensions/4.1.0", + "hashPath": "system.reflection.typeextensions.4.1.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "path": "system.resources.resourcemanager/4.0.1", + "hashPath": "system.resources.resourcemanager.4.0.1.nupkg.sha512" + }, + "System.Runtime/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "path": "system.runtime/4.1.0", + "hashPath": "system.runtime.4.1.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "path": "system.runtime.extensions/4.1.0", + "hashPath": "system.runtime.extensions.4.1.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "path": "system.runtime.handles/4.0.1", + "hashPath": "system.runtime.handles.4.0.1.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "path": "system.runtime.interopservices/4.1.0", + "hashPath": "system.runtime.interopservices.4.1.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.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "path": "system.text.encoding/4.0.11", + "hashPath": "system.text.encoding.4.0.11.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "path": "system.text.encoding.extensions/4.0.11", + "hashPath": "system.text.encoding.extensions.4.0.11.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "path": "system.text.regularexpressions/4.1.0", + "hashPath": "system.text.regularexpressions.4.1.0.nupkg.sha512" + }, + "System.Threading/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "path": "system.threading/4.0.11", + "hashPath": "system.threading.4.0.11.nupkg.sha512" + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "path": "system.threading.tasks/4.0.11", + "hashPath": "system.threading.tasks.4.0.11.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "path": "system.threading.tasks.extensions/4.0.0", + "hashPath": "system.threading.tasks.extensions.4.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "path": "system.xml.readerwriter/4.0.11", + "hashPath": "system.xml.readerwriter.4.0.11.nupkg.sha512" + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "path": "system.xml.xdocument/4.0.11", + "hashPath": "system.xml.xdocument.4.0.11.nupkg.sha512" + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DigitalData.Core.Authentication/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll new file mode 100644 index 0000000..b38508b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb new file mode 100644 index 0000000..5d5be9f Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.runtimeconfig.json b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.runtimeconfig.json new file mode 100644 index 0000000..f78f3ba --- /dev/null +++ b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.runtimeconfig.json @@ -0,0 +1,9 @@ +{ + "runtimeOptions": { + "tfm": "net7.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.12832.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.12832.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.13924.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.13924.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.17280.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.17280.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.1804.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.1804.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.28088.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.28088.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.28168.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.28168.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.29588.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.29588.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.7608.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.7608.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.9756.log b/DigitalData.Core.Tests/bin/Debug/net7.0/InternalTrace.9756.log new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..40e2919 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CoreUtilities.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..a30de7f Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..e64fb8e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..448b077 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..e19bbe4 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..985c275 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..7d4a405 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..7a44de4 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..4f50adb Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll new file mode 100644 index 0000000..3c9679c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.dll new file mode 100644 index 0000000..6f49746 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.pdb new file mode 100644 index 0000000..1661db6 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.pdb differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..5f2336e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..0fabf0c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.Diagnostics.EventLog.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..8a65e71 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Diagnostics.EventLog.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..4d2da59 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.dll new file mode 100644 index 0000000..1d2b5f4 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.DirectoryServices.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.Drawing.Common.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..310d5e8 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Drawing.Common.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.Security.Permissions.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Security.Permissions.dll new file mode 100644 index 0000000..9d8e76c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Security.Permissions.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/System.Windows.Extensions.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..23a5f31 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/System.Windows.Extensions.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..f2c4135 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..1287ed5 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..ba61c4a Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..7f0484a Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..2bed770 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..b0827ee Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..ab7a45c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..399b510 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..8868e95 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..bf674cf Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..115b76c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..38e8614 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..461b084 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..0cb9970 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..792e526 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e76875c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..f92ee4d Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..e69b8a0 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..955fe96 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..3cda34e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..694c729 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..85d7ebf Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..2c63703 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..588af59 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..31acf99 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e9f26ac Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..52f2290 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..481b9f3 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4910b5c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..38345c3 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..6cb6d07 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..d1c72b2 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..0d5982e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..bddeafd Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..0bd64f8 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.api.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.api.dll new file mode 100644 index 0000000..73179bb Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.api.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.core.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.core.dll new file mode 100644 index 0000000..3bbfeed Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.core.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.dll new file mode 100644 index 0000000..85e47f6 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.framework.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.framework.dll new file mode 100644 index 0000000..16e3f3b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.framework.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit_random_seed.tmp b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit_random_seed.tmp new file mode 100644 index 0000000..9f1e7f9 --- /dev/null +++ b/DigitalData.Core.Tests/bin/Debug/net7.0/nunit_random_seed.tmp @@ -0,0 +1 @@ +1780473306 \ No newline at end of file diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..4d7d267 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..71f4b9d Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..4bb52ee Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..4455672 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..879efac Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..8e0360b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..f536cb8 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..568848d Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..b5992fc Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..031f40e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..2e54f9b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..168f8c1 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..c842e4a Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..c999231 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..1ce5331 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..f535812 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..1b4c830 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll new file mode 100644 index 0000000..bc23526 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..03b44f1 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d40a926 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll new file mode 100644 index 0000000..951a113 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll new file mode 100644 index 0000000..991a3ee Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.DirectoryServices.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..39493b4 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..a881c26 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/testcentric.engine.metadata.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/testcentric.engine.metadata.dll new file mode 100644 index 0000000..b982b6b Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/testcentric.engine.metadata.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll new file mode 100644 index 0000000..9ac5a6f Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe new file mode 100644 index 0000000..e699551 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..79cfbe1 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..eecada0 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..94a6b2f Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..6df103a Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..ce71271 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..5bbdc6e Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..06fa906 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..9a09739 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..ff5fa37 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..218aa55 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..cc18480 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..b8fc4e3 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..05a61a5 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..802001c Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..e3b72f3 Binary files /dev/null and b/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Tests/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..a9058da --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfo.cs b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfo.cs new file mode 100644 index 0000000..f92d144 --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// 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("DigitalData.Core.Tests")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Tests")] +[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Tests")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfoInputs.cache b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfoInputs.cache new file mode 100644 index 0000000..5c082aa --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b060ed60135dee050694ddaa69c137631d3110cf diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d57b46d --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,11 @@ +is_global = true +build_property.TargetFramework = net7.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 = DigitalData.Core.Tests +build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GlobalUsings.g.cs b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GlobalUsings.g.cs new file mode 100644 index 0000000..ac22929 --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.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/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.assets.cache b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.assets.cache new file mode 100644 index 0000000..90a609a Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.assets.cache differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.AssemblyReference.cache b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.AssemblyReference.cache new file mode 100644 index 0000000..0fcb520 Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.AssemblyReference.cache differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.BuildWithSkipAnalyzers b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CopyComplete b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CoreCompileInputs.cache b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ba996cb --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +5eed2a4478526725b8ffd128c49ed4fd0090b773 diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.FileListAbsolute.txt b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..411c714 --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.FileListAbsolute.txt @@ -0,0 +1,124 @@ +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\CoverletSourceRootsMapping +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.AssemblyReference.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.AssemblyInfoInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.AssemblyInfo.cs +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.CoreCompileInputs.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\testhost.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\testhost.exe +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\NUnit3.TestAdapter.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\NUnit3.TestAdapter.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.api.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.core.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\testcentric.engine.metadata.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.deps.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.runtimeconfig.json +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CoreUtilities.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.PlatformAbstractions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CommunicationUtilities.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CrossPlatEngine.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.Utilities.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.TestPlatform.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Newtonsoft.Json.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\NuGet.Frameworks.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.framework.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Authentication.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Contracts.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Authentication.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.CopyComplete +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\refint\DigitalData.Core.Tests.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.genruntimeconfig.cache +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\obj\Debug\net7.0\ref\DigitalData.Core.Tests.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.Security.Permissions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Attributes.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Attributes.pdb +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Castle.Core.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\Moq.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\System.Diagnostics.EventLog.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll +E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll new file mode 100644 index 0000000..b38508b Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.genruntimeconfig.cache b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.genruntimeconfig.cache new file mode 100644 index 0000000..a4250ca --- /dev/null +++ b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.genruntimeconfig.cache @@ -0,0 +1 @@ +462065f6ccdf2059d210f6a5bd9dbd7b07e97cff diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb new file mode 100644 index 0000000..5d5be9f Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/ref/DigitalData.Core.Tests.dll b/DigitalData.Core.Tests/obj/Debug/net7.0/ref/DigitalData.Core.Tests.dll new file mode 100644 index 0000000..18b608c Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/ref/DigitalData.Core.Tests.dll differ diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/refint/DigitalData.Core.Tests.dll b/DigitalData.Core.Tests/obj/Debug/net7.0/refint/DigitalData.Core.Tests.dll new file mode 100644 index 0000000..18b608c Binary files /dev/null and b/DigitalData.Core.Tests/obj/Debug/net7.0/refint/DigitalData.Core.Tests.dll differ diff --git a/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json new file mode 100644 index 0000000..e3cb6c2 --- /dev/null +++ b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json @@ -0,0 +1,321 @@ +{ + "format": 1, + "restore": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj": {} + }, + "projects": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "projectName": "DigitalData.Core.Attributes", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "projectName": "DigitalData.Core.Authentication", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj" + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices.Protocols": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "projectName": "DigitalData.Core.Contracts", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Contracts\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "System.DirectoryServices": { + "target": "Package", + "version": "[7.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + }, + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj", + "projectName": "DigitalData.Core.Tests", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.3.2, )" + }, + "Moq": { + "target": "Package", + "version": "[4.20.70, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.13.3, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.5.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.3.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.1.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.props b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.props new file mode 100644 index 0000000..7cdde13 --- /dev/null +++ b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.props @@ -0,0 +1,29 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder + PackageReference + 6.5.0 + + + + + + + + + + + + + + + + C:\Users\tekh\.nuget\packages\nunit.analyzers\3.5.0 + C:\Users\tekh\.nuget\packages\newtonsoft.json\9.0.1 + + \ No newline at end of file diff --git a/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.targets b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.targets new file mode 100644 index 0000000..e39b807 --- /dev/null +++ b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/DigitalData.Core.Tests/obj/project.assets.json b/DigitalData.Core.Tests/obj/project.assets.json new file mode 100644 index 0000000..8561a0d --- /dev/null +++ b/DigitalData.Core.Tests/obj/project.assets.json @@ -0,0 +1,4576 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "Castle.Core/5.1.1": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "compile": { + "lib/net6.0/Castle.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "related": ".xml" + } + } + }, + "coverlet.collector/3.1.2": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "Microsoft.CodeCoverage/17.3.2": { + "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.0.1": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Dynamic.Runtime": "4.0.11", + "System.Globalization": "4.0.11", + "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.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.0/Microsoft.CSharp.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CSharp.dll": {} + } + }, + "Microsoft.NET.Test.Sdk/17.3.2": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.3.2", + "Microsoft.TestPlatform.TestHost": "17.3.2" + }, + "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.0.1": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.3.2": { + "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.3.2": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.3.2", + "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": { + "related": ".deps.json" + } + }, + "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": { + "related": ".deps.json" + } + }, + "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.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Moq/4.20.70": { + "type": "package", + "dependencies": { + "Castle.Core": "5.1.1" + }, + "compile": { + "lib/net6.0/Moq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Moq.dll": { + "related": ".xml" + } + } + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NuGet.Frameworks/5.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "related": ".xml" + } + } + }, + "NUnit/3.13.3": { + "type": "package", + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit.Analyzers/3.5.0": { + "type": "package" + }, + "NUnit3TestAdapter/4.3.0": { + "type": "package", + "build": { + "build/netcoreapp2.1/NUnit3TestAdapter.props": {} + } + }, + "System.Collections/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Collections.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.Debug/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Diagnostics.Debug.dll": { + "related": ".xml" + } + } + }, + "System.Diagnostics.EventLog/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Diagnostics.Tools/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + } + }, + "System.DirectoryServices/7.0.1": { + "type": "package", + "dependencies": { + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.DirectoryServices.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.DirectoryServices.Protocols/7.0.1": { + "type": "package", + "compile": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.DirectoryServices.Protocols.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "linux" + }, + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "osx" + }, + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Dynamic.Runtime/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.Linq": "4.1.0", + "System.Linq.Expressions": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Dynamic.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Dynamic.Runtime.dll": {} + } + }, + "System.Globalization/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Globalization.dll": { + "related": ".xml" + } + } + }, + "System.IO/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.5/System.IO.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0" + }, + "compile": { + "ref/netstandard1.6/System.Linq.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.dll": {} + } + }, + "System.Linq.Expressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Linq": "4.1.0", + "System.ObjectModel": "4.0.12", + "System.Reflection": "4.1.0", + "System.Reflection.Emit": "4.0.1", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Emit.Lightweight": "4.0.1", + "System.Reflection.Extensions": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Linq.Expressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Linq.Expressions.dll": {} + } + }, + "System.ObjectModel/4.0.12": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.ObjectModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.ObjectModel.dll": {} + } + }, + "System.Reflection/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.IO": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Reflection.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Emit/4.0.1": { + "type": "package", + "dependencies": { + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.1/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.dll": {} + } + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll": {} + } + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Reflection.Emit.ILGeneration": "4.0.1", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll": {} + } + }, + "System.Reflection.Extensions/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Primitives/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Reflection.Primitives.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.TypeExtensions/4.1.0": { + "type": "package", + "dependencies": { + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.5/System.Reflection.TypeExtensions.dll": {} + } + }, + "System.Resources.ResourceManager/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Globalization": "4.0.11", + "System.Reflection": "4.1.0", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.0/System.Resources.ResourceManager.dll": { + "related": ".xml" + } + } + }, + "System.Runtime/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Extensions/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.5/System.Runtime.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Runtime.Handles/4.0.1": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/_._": { + "related": ".xml" + } + } + }, + "System.Runtime.InteropServices/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Reflection": "4.1.0", + "System.Reflection.Primitives": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Handles": "4.0.1" + }, + "compile": { + "ref/netstandard1.5/_._": { + "related": ".xml" + } + } + }, + "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": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Text.Encoding/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0", + "System.Text.Encoding": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Text.RegularExpressions/4.1.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Globalization": "4.0.11", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Threading": "4.0.11" + }, + "compile": { + "ref/netstandard1.6/System.Text.RegularExpressions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.6/System.Text.RegularExpressions.dll": {} + } + }, + "System.Threading/4.0.11": { + "type": "package", + "dependencies": { + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Threading.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Threading.dll": {} + } + }, + "System.Threading.Tasks/4.0.11": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.NETCore.Targets": "1.0.1", + "System.Runtime": "4.1.0" + }, + "compile": { + "ref/netstandard1.3/System.Threading.Tasks.dll": { + "related": ".xml" + } + } + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Runtime": "4.1.0", + "System.Threading.Tasks": "4.0.11" + }, + "compile": { + "lib/netstandard1.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll": { + "related": ".xml" + } + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Xml.ReaderWriter/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem": "4.0.1", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.InteropServices": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Tasks.Extensions": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Xml.ReaderWriter.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.ReaderWriter.dll": {} + } + }, + "System.Xml.XDocument/4.0.11": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.Tools": "4.0.1", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Xml.ReaderWriter": "4.0.11" + }, + "compile": { + "ref/netstandard1.3/System.Xml.XDocument.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.3/System.Xml.XDocument.dll": {} + } + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "compile": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Attributes.dll": {} + } + }, + "DigitalData.Core.Authentication/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "DigitalData.Core.Attributes": "1.0.0", + "DigitalData.Core.Contracts": "1.0.0", + "System.DirectoryServices.Protocols": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Authentication.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Authentication.dll": {} + } + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v7.0", + "dependencies": { + "System.DirectoryServices": "7.0.1" + }, + "compile": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/DigitalData.Core.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Castle.Core/5.1.1": { + "sha512": "rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "type": "package", + "path": "castle.core/5.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle-logo.png", + "castle.core.5.1.1.nupkg.sha512", + "castle.core.nuspec", + "lib/net462/Castle.Core.dll", + "lib/net462/Castle.Core.xml", + "lib/net6.0/Castle.Core.dll", + "lib/net6.0/Castle.Core.xml", + "lib/netstandard2.0/Castle.Core.dll", + "lib/netstandard2.0/Castle.Core.xml", + "lib/netstandard2.1/Castle.Core.dll", + "lib/netstandard2.1/Castle.Core.xml", + "readme.txt" + ] + }, + "coverlet.collector/3.1.2": { + "sha512": "wuLDIDKD5XMt0A7lE31JPenT7QQwZPFkP5rRpdJeblyXZ9MGLI8rYjvm5fvAKln+2/X+4IxxQDxBtwdrqKNLZw==", + "type": "package", + "path": "coverlet.collector/3.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.CSharp.dll", + "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard1.0/Mono.Cecil.Mdb.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.Rocks.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/Newtonsoft.Json.dll", + "build/netstandard1.0/NuGet.Frameworks.dll", + "build/netstandard1.0/System.AppContext.dll", + "build/netstandard1.0/System.Collections.Immutable.dll", + "build/netstandard1.0/System.Dynamic.Runtime.dll", + "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", + "build/netstandard1.0/System.Linq.Expressions.dll", + "build/netstandard1.0/System.Linq.dll", + "build/netstandard1.0/System.ObjectModel.dll", + "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "build/netstandard1.0/System.Reflection.Emit.dll", + "build/netstandard1.0/System.Reflection.Metadata.dll", + "build/netstandard1.0/System.Reflection.TypeExtensions.dll", + "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "build/netstandard1.0/System.Text.RegularExpressions.dll", + "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard1.0/System.Threading.dll", + "build/netstandard1.0/System.Xml.ReaderWriter.dll", + "build/netstandard1.0/System.Xml.XDocument.dll", + "build/netstandard1.0/coverlet.collector.deps.json", + "build/netstandard1.0/coverlet.collector.dll", + "build/netstandard1.0/coverlet.collector.pdb", + "build/netstandard1.0/coverlet.collector.targets", + "build/netstandard1.0/coverlet.core.dll", + "build/netstandard1.0/coverlet.core.pdb", + "coverlet-icon.png", + "coverlet.collector.3.1.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.CodeCoverage/17.3.2": { + "sha512": "+CeYNY9hYNRgv1wAID5koeDVob1ZOrOYfRRTLxU9Zm5ZMDMkMZ8wzXgakxVv+jtk8tPdE8Ze9vVE+czMKapv/Q==", + "type": "package", + "path": "microsoft.codecoverage/17.3.2", + "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/arm64/VanguardInstrumentationProfiler_arm64.config", + "build/netstandard1.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard1.0/CodeCoverage/arm64/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/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "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.Core.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard1.0/Microsoft.CodeCoverage.props", + "build/netstandard1.0/Microsoft.CodeCoverage.targets", + "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.3.2.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.CSharp/4.0.1": { + "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "type": "package", + "path": "microsoft.csharp/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.0.1.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/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/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.NET.Test.Sdk/17.3.2": { + "sha512": "apR0ha1T8FujBwq1P8i/DOZjbI5XhcP/i8As4NnVztVSpZG8GtWRPCstcmgkUkBpvEfcrrDPlJWbuZY+Hl1hSg==", + "type": "package", + "path": "microsoft.net.test.sdk/17.3.2", + "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.3.2.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.0.1": { + "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "type": "package", + "path": "microsoft.netcore.targets/1.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.targets.1.0.1.nupkg.sha512", + "microsoft.netcore.targets.nuspec", + "runtime.json" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.3.2": { + "sha512": "DJEIfSA2GDC+2m42vKGNR2hm+Uhta4SpCsLZVVvYIiYMjxtk7GzNnv82qvE4SCW3kIYllMg2D0rr8juuj/f7AA==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.3.2", + "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.3.2.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.3.2": { + "sha512": "113J19v31pIx+PzmdEw67cWTZWh/YApnprbclFeat6szNbnpKOKG7Ap4PX5LT6E5Da+xONyilxvx2HZPpEaXPQ==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.3.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_NET.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp1.0/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp1.0/x64/testhost.dll", + "build/netcoreapp1.0/x64/testhost.exe", + "build/netcoreapp1.0/x86/testhost.x86.dll", + "build/netcoreapp1.0/x86/testhost.x86.exe", + "build/netcoreapp2.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp2.1/x64/testhost.dll", + "build/netcoreapp2.1/x64/testhost.exe", + "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.3.2.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Moq/4.20.70": { + "sha512": "4rNnAwdpXJBuxqrOCzCyICXHSImOTRktCgCWXWykuF1qwoIsVvEnR7PjbMk/eLOxWvhmj5Kwt+kDV3RGUYcNwg==", + "type": "package", + "path": "moq/4.20.70", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net462/Moq.dll", + "lib/net462/Moq.xml", + "lib/net6.0/Moq.dll", + "lib/net6.0/Moq.xml", + "lib/netstandard2.0/Moq.dll", + "lib/netstandard2.0/Moq.xml", + "lib/netstandard2.1/Moq.dll", + "lib/netstandard2.1/Moq.xml", + "moq.4.20.70.nupkg.sha512", + "moq.nuspec", + "readme.md" + ] + }, + "NETStandard.Library/2.0.0": { + "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "type": "package", + "path": "netstandard.library/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/NETStandard.Library.targets", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.0.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" + ] + }, + "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" + ] + }, + "NUnit/3.13.3": { + "sha512": "KNPDpls6EfHwC3+nnA67fh5wpxeLb3VLFAfLxrug6JMYDLHH6InaQIWR7Sc3y75d/9IKzMksH/gi08W7XWbmnQ==", + "type": "package", + "path": "nunit/3.13.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "build/NUnit.props", + "icon.png", + "lib/net35/nunit.framework.dll", + "lib/net35/nunit.framework.xml", + "lib/net40/nunit.framework.dll", + "lib/net40/nunit.framework.xml", + "lib/net45/nunit.framework.dll", + "lib/net45/nunit.framework.xml", + "lib/netstandard2.0/nunit.framework.dll", + "lib/netstandard2.0/nunit.framework.xml", + "nunit.3.13.3.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit.Analyzers/3.5.0": { + "sha512": "uvYCAqtZrY9RZc1ErVREvcYr828uy4RmTZYfMPN5FrahvJp/b2+QEgsJISzU3cbxLc9IBBlEOBa9d4t6ejFM2Q==", + "type": "package", + "path": "nunit.analyzers/3.5.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/nunit.analyzers.dll", + "docs/README.md", + "images/nunit_256.png", + "license.txt", + "nunit.analyzers.3.5.0.nupkg.sha512", + "nunit.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "NUnit3TestAdapter/4.3.0": { + "sha512": "oXlDbkGW01VPPgI8P/XQ+PZHqaJoWtV90WuAkR0yN8HC3hiPivy2AaBZP3lqOql4RFqdxvF5qYSuaeWI+7/wGg==", + "type": "package", + "path": "nunit3testadapter/4.3.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net35/NUnit3.TestAdapter.dll", + "build/net35/NUnit3.TestAdapter.pdb", + "build/net35/NUnit3TestAdapter.props", + "build/net35/nunit.engine.api.dll", + "build/net35/nunit.engine.core.dll", + "build/net35/nunit.engine.dll", + "build/net35/testcentric.engine.metadata.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.dll", + "build/netcoreapp2.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp2.1/NUnit3TestAdapter.props", + "build/netcoreapp2.1/nunit.engine.api.dll", + "build/netcoreapp2.1/nunit.engine.core.dll", + "build/netcoreapp2.1/nunit.engine.dll", + "build/netcoreapp2.1/testcentric.engine.metadata.dll", + "nunit3testadapter.4.3.0.nupkg.sha512", + "nunit3testadapter.nuspec" + ] + }, + "System.Collections/4.0.11": { + "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "type": "package", + "path": "system.collections/4.0.11", + "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.0.11.nupkg.sha512", + "system.collections.nuspec" + ] + }, + "System.Diagnostics.Debug/4.0.11": { + "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "type": "package", + "path": "system.diagnostics.debug/4.0.11", + "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.0.11.nupkg.sha512", + "system.diagnostics.debug.nuspec" + ] + }, + "System.Diagnostics.EventLog/6.0.0": { + "sha512": "lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "type": "package", + "path": "system.diagnostics.eventlog/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.EventLog.dll", + "lib/net461/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/netcoreapp3.1/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.Tools/4.0.1": { + "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "type": "package", + "path": "system.diagnostics.tools/4.0.1", + "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.0.1.nupkg.sha512", + "system.diagnostics.tools.nuspec" + ] + }, + "System.DirectoryServices/7.0.1": { + "sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==", + "type": "package", + "path": "system.directoryservices/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.dll", + "lib/net6.0/System.DirectoryServices.xml", + "lib/net7.0/System.DirectoryServices.dll", + "lib/net7.0/System.DirectoryServices.xml", + "lib/netstandard2.0/System.DirectoryServices.dll", + "lib/netstandard2.0/System.DirectoryServices.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.xml", + "system.directoryservices.7.0.1.nupkg.sha512", + "system.directoryservices.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.DirectoryServices.Protocols/7.0.1": { + "sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==", + "type": "package", + "path": "system.directoryservices.protocols/7.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets", + "lib/net462/_._", + "lib/net6.0/System.DirectoryServices.Protocols.dll", + "lib/net6.0/System.DirectoryServices.Protocols.xml", + "lib/net7.0/System.DirectoryServices.Protocols.dll", + "lib/net7.0/System.DirectoryServices.Protocols.xml", + "lib/netstandard2.0/System.DirectoryServices.Protocols.dll", + "lib/netstandard2.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll", + "runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml", + "system.directoryservices.protocols.7.0.1.nupkg.sha512", + "system.directoryservices.protocols.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Dynamic.Runtime/4.0.11": { + "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "type": "package", + "path": "system.dynamic.runtime/4.0.11", + "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.0.11.nupkg.sha512", + "system.dynamic.runtime.nuspec" + ] + }, + "System.Globalization/4.0.11": { + "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "type": "package", + "path": "system.globalization/4.0.11", + "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.0.11.nupkg.sha512", + "system.globalization.nuspec" + ] + }, + "System.IO/4.1.0": { + "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "type": "package", + "path": "system.io/4.1.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.1.0.nupkg.sha512", + "system.io.nuspec" + ] + }, + "System.IO.FileSystem/4.0.1": { + "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "type": "package", + "path": "system.io.filesystem/4.0.1", + "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.0.1.nupkg.sha512", + "system.io.filesystem.nuspec" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1": { + "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "type": "package", + "path": "system.io.filesystem.primitives/4.0.1", + "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.0.1.nupkg.sha512", + "system.io.filesystem.primitives.nuspec" + ] + }, + "System.Linq/4.1.0": { + "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "type": "package", + "path": "system.linq/4.1.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.1.0.nupkg.sha512", + "system.linq.nuspec" + ] + }, + "System.Linq.Expressions/4.1.0": { + "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "type": "package", + "path": "system.linq.expressions/4.1.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.1.0.nupkg.sha512", + "system.linq.expressions.nuspec" + ] + }, + "System.ObjectModel/4.0.12": { + "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "type": "package", + "path": "system.objectmodel/4.0.12", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.12.nupkg.sha512", + "system.objectmodel.nuspec" + ] + }, + "System.Reflection/4.1.0": { + "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "type": "package", + "path": "system.reflection/4.1.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.1.0.nupkg.sha512", + "system.reflection.nuspec" + ] + }, + "System.Reflection.Emit/4.0.1": { + "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "type": "package", + "path": "system.reflection.emit/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.dll", + "lib/netstandard1.3/System.Reflection.Emit.dll", + "lib/xamarinmac20/_._", + "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.0.1.nupkg.sha512", + "system.reflection.emit.nuspec" + ] + }, + "System.Reflection.Emit.ILGeneration/4.0.1": { + "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "type": "package", + "path": "system.reflection.emit.ilgeneration/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.ILGeneration.dll", + "lib/netstandard1.3/System.Reflection.Emit.ILGeneration.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "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/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "system.reflection.emit.ilgeneration.nuspec" + ] + }, + "System.Reflection.Emit.Lightweight/4.0.1": { + "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "type": "package", + "path": "system.reflection.emit.lightweight/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net45/_._", + "lib/netcore50/System.Reflection.Emit.Lightweight.dll", + "lib/netstandard1.3/System.Reflection.Emit.Lightweight.dll", + "lib/portable-net45+wp8/_._", + "lib/wp80/_._", + "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/_._", + "runtimes/aot/lib/netcore50/_._", + "system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "system.reflection.emit.lightweight.nuspec" + ] + }, + "System.Reflection.Extensions/4.0.1": { + "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "type": "package", + "path": "system.reflection.extensions/4.0.1", + "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.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.0.1.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.0.1": { + "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "type": "package", + "path": "system.reflection.primitives/4.0.1", + "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.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.0.1.nupkg.sha512", + "system.reflection.primitives.nuspec" + ] + }, + "System.Reflection.TypeExtensions/4.1.0": { + "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "type": "package", + "path": "system.reflection.typeextensions/4.1.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.1.0.nupkg.sha512", + "system.reflection.typeextensions.nuspec" + ] + }, + "System.Resources.ResourceManager/4.0.1": { + "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "type": "package", + "path": "system.resources.resourcemanager/4.0.1", + "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.0.1.nupkg.sha512", + "system.resources.resourcemanager.nuspec" + ] + }, + "System.Runtime/4.1.0": { + "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "type": "package", + "path": "system.runtime/4.1.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.1.0.nupkg.sha512", + "system.runtime.nuspec" + ] + }, + "System.Runtime.Extensions/4.1.0": { + "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "type": "package", + "path": "system.runtime.extensions/4.1.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.1.0.nupkg.sha512", + "system.runtime.extensions.nuspec" + ] + }, + "System.Runtime.Handles/4.0.1": { + "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "type": "package", + "path": "system.runtime.handles/4.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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.0.1.nupkg.sha512", + "system.runtime.handles.nuspec" + ] + }, + "System.Runtime.InteropServices/4.1.0": { + "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "type": "package", + "path": "system.runtime.interopservices/4.1.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/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/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/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.1.0.nupkg.sha512", + "system.runtime.interopservices.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.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encoding/4.0.11": { + "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "type": "package", + "path": "system.text.encoding/4.0.11", + "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.0.11.nupkg.sha512", + "system.text.encoding.nuspec" + ] + }, + "System.Text.Encoding.Extensions/4.0.11": { + "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "type": "package", + "path": "system.text.encoding.extensions/4.0.11", + "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.0.11.nupkg.sha512", + "system.text.encoding.extensions.nuspec" + ] + }, + "System.Text.RegularExpressions/4.1.0": { + "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "type": "package", + "path": "system.text.regularexpressions/4.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/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.1.0.nupkg.sha512", + "system.text.regularexpressions.nuspec" + ] + }, + "System.Threading/4.0.11": { + "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "type": "package", + "path": "system.threading/4.0.11", + "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.0.11.nupkg.sha512", + "system.threading.nuspec" + ] + }, + "System.Threading.Tasks/4.0.11": { + "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "type": "package", + "path": "system.threading.tasks/4.0.11", + "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.0.11.nupkg.sha512", + "system.threading.tasks.nuspec" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0": { + "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "type": "package", + "path": "system.threading.tasks.extensions/4.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.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", + "system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "system.threading.tasks.extensions.nuspec" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Xml.ReaderWriter/4.0.11": { + "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "type": "package", + "path": "system.xml.readerwriter/4.0.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "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/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.0.11.nupkg.sha512", + "system.xml.readerwriter.nuspec" + ] + }, + "System.Xml.XDocument/4.0.11": { + "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "type": "package", + "path": "system.xml.xdocument/4.0.11", + "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.0.11.nupkg.sha512", + "system.xml.xdocument.nuspec" + ] + }, + "DigitalData.Core.Attributes/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj", + "msbuildProject": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj" + }, + "DigitalData.Core.Authentication/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Authentication/DigitalData.Core.Authentication.csproj", + "msbuildProject": "../DigitalData.Core.Authentication/DigitalData.Core.Authentication.csproj" + }, + "DigitalData.Core.Contracts/1.0.0": { + "type": "project", + "path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj", + "msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "DigitalData.Core.Authentication >= 1.0.0", + "Microsoft.NET.Test.Sdk >= 17.3.2", + "Moq >= 4.20.70", + "NUnit >= 3.13.3", + "NUnit.Analyzers >= 3.5.0", + "NUnit3TestAdapter >= 4.3.0", + "coverlet.collector >= 3.1.2" + ] + }, + "packageFolders": { + "C:\\Users\\tekh\\.nuget\\packages\\": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {}, + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj", + "projectName": "DigitalData.Core.Tests", + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj", + "packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\", + "outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages", + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages", + "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + ], + "configFilePaths": [ + "C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config", + "C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {}, + "D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": { + "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj": { + "projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Authentication\\DigitalData.Core.Authentication.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.3.2, )" + }, + "Moq": { + "target": "Package", + "version": "[4.20.70, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.13.3, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.5.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.3.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[3.1.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/DigitalData.Core.Tests/obj/project.nuget.cache b/DigitalData.Core.Tests/obj/project.nuget.cache new file mode 100644 index 0000000..9433d0f --- /dev/null +++ b/DigitalData.Core.Tests/obj/project.nuget.cache @@ -0,0 +1,65 @@ +{ + "version": 2, + "dgSpecHash": "Dqx7mhLnvvIic2DuBMKBcmjDRX5O6zpxv09WWT3ZjJB9TlAJxm08V133bauFnS8PI2apHTWAlfj4pqkB/I3fQw==", + "success": true, + "projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj", + "expectedPackageFiles": [ + "C:\\Users\\tekh\\.nuget\\packages\\castle.core\\5.1.1\\castle.core.5.1.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\coverlet.collector\\3.1.2\\coverlet.collector.3.1.2.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.codecoverage\\17.3.2\\microsoft.codecoverage.17.3.2.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.csharp\\4.0.1\\microsoft.csharp.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.net.test.sdk\\17.3.2\\microsoft.net.test.sdk.17.3.2.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.netcore.targets\\1.0.1\\microsoft.netcore.targets.1.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.3.2\\microsoft.testplatform.objectmodel.17.3.2.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.testplatform.testhost\\17.3.2\\microsoft.testplatform.testhost.17.3.2.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\moq\\4.20.70\\moq.4.20.70.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\newtonsoft.json\\9.0.1\\newtonsoft.json.9.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\nuget.frameworks\\5.11.0\\nuget.frameworks.5.11.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\nunit\\3.13.3\\nunit.3.13.3.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\nunit.analyzers\\3.5.0\\nunit.analyzers.3.5.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\nunit3testadapter\\4.3.0\\nunit3testadapter.4.3.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.collections\\4.0.11\\system.collections.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.diagnostics.debug\\4.0.11\\system.diagnostics.debug.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.diagnostics.eventlog\\6.0.0\\system.diagnostics.eventlog.6.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.diagnostics.tools\\4.0.1\\system.diagnostics.tools.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.dynamic.runtime\\4.0.11\\system.dynamic.runtime.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.globalization\\4.0.11\\system.globalization.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.io\\4.1.0\\system.io.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.io.filesystem\\4.0.1\\system.io.filesystem.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.io.filesystem.primitives\\4.0.1\\system.io.filesystem.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.linq\\4.1.0\\system.linq.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.linq.expressions\\4.1.0\\system.linq.expressions.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.objectmodel\\4.0.12\\system.objectmodel.4.0.12.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection\\4.1.0\\system.reflection.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.emit\\4.0.1\\system.reflection.emit.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.0.1\\system.reflection.emit.ilgeneration.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.emit.lightweight\\4.0.1\\system.reflection.emit.lightweight.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.extensions\\4.0.1\\system.reflection.extensions.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.primitives\\4.0.1\\system.reflection.primitives.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.reflection.typeextensions\\4.1.0\\system.reflection.typeextensions.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.resources.resourcemanager\\4.0.1\\system.resources.resourcemanager.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime\\4.1.0\\system.runtime.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.extensions\\4.1.0\\system.runtime.extensions.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.handles\\4.0.1\\system.runtime.handles.4.0.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.interopservices\\4.1.0\\system.runtime.interopservices.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.runtime.serialization.primitives\\4.1.1\\system.runtime.serialization.primitives.4.1.1.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.text.encoding\\4.0.11\\system.text.encoding.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.text.encoding.extensions\\4.0.11\\system.text.encoding.extensions.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.text.regularexpressions\\4.1.0\\system.text.regularexpressions.4.1.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.threading\\4.0.11\\system.threading.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.threading.tasks\\4.0.11\\system.threading.tasks.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.threading.tasks.extensions\\4.0.0\\system.threading.tasks.extensions.4.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.xml.readerwriter\\4.0.11\\system.xml.readerwriter.4.0.11.nupkg.sha512", + "C:\\Users\\tekh\\.nuget\\packages\\system.xml.xdocument\\4.0.11\\system.xml.xdocument.4.0.11.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/DigitalData.Core.sln b/DigitalData.Core.sln new file mode 100644 index 0000000..7457173 --- /dev/null +++ b/DigitalData.Core.sln @@ -0,0 +1,73 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.5.33516.290 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.Contracts", "DigitalData.Core.Contracts\DigitalData.Core.Contracts.csproj", "{F70CFAA2-1BE6-4216-8281-C6EF846296A3}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.CleanArchitecture.Infrastructure", "DigitalData.Core.CleanArchitecture.Infrastructure\DigitalData.Core.CleanArchitecture.Infrastructure.csproj", "{A765EBEA-3D1E-4F36-869B-6D72F87FF3F6}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.CultureServices", "DigitalData.Core.CultureServices\DigitalData.Core.CultureServices.csproj", "{F7F64DA1-B001-4E0F-A075-62B7BF925869}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.CleanArchitecture.Application", "DigitalData.Core.CleanArchitecture.Application\DigitalData.Core.CleanArchitecture.Application.csproj", "{DB404CD9-CBB8-4771-AB1B-FD4FDE2C28CC}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.Exceptions", "DigitalData.Core.Exceptions\DigitalData.Core.Exceptions.csproj", "{08684C17-C9F8-40FE-BBA5-0D9D5B703777}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.API", "DigitalData.Core.API\DigitalData.Core.API.csproj", "{C57B2480-F632-4691-9C4C-8CC01237203C}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.Authentication", "DigitalData.Core.Authentication\DigitalData.Core.Authentication.csproj", "{C5CAA59E-1680-4C52-B4AF-7D540861937C}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.Tests", "DigitalData.Core.Tests\DigitalData.Core.Tests.csproj", "{B54DEF90-C30C-44EA-9875-76F1B330CBB7}" +EndProject +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DigitalData.Core.Attributes", "DigitalData.Core.Attributes\DigitalData.Core.Attributes.csproj", "{049D0ACF-B1B6-468C-BD20-5E7584DF6FE2}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {F70CFAA2-1BE6-4216-8281-C6EF846296A3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F70CFAA2-1BE6-4216-8281-C6EF846296A3}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F70CFAA2-1BE6-4216-8281-C6EF846296A3}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F70CFAA2-1BE6-4216-8281-C6EF846296A3}.Release|Any CPU.Build.0 = Release|Any CPU + {A765EBEA-3D1E-4F36-869B-6D72F87FF3F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {A765EBEA-3D1E-4F36-869B-6D72F87FF3F6}.Debug|Any CPU.Build.0 = Debug|Any CPU + {A765EBEA-3D1E-4F36-869B-6D72F87FF3F6}.Release|Any CPU.ActiveCfg = Release|Any CPU + {A765EBEA-3D1E-4F36-869B-6D72F87FF3F6}.Release|Any CPU.Build.0 = Release|Any CPU + {F7F64DA1-B001-4E0F-A075-62B7BF925869}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {F7F64DA1-B001-4E0F-A075-62B7BF925869}.Debug|Any CPU.Build.0 = Debug|Any CPU + {F7F64DA1-B001-4E0F-A075-62B7BF925869}.Release|Any CPU.ActiveCfg = Release|Any CPU + {F7F64DA1-B001-4E0F-A075-62B7BF925869}.Release|Any CPU.Build.0 = Release|Any CPU + {DB404CD9-CBB8-4771-AB1B-FD4FDE2C28CC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DB404CD9-CBB8-4771-AB1B-FD4FDE2C28CC}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DB404CD9-CBB8-4771-AB1B-FD4FDE2C28CC}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DB404CD9-CBB8-4771-AB1B-FD4FDE2C28CC}.Release|Any CPU.Build.0 = Release|Any CPU + {08684C17-C9F8-40FE-BBA5-0D9D5B703777}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {08684C17-C9F8-40FE-BBA5-0D9D5B703777}.Debug|Any CPU.Build.0 = Debug|Any CPU + {08684C17-C9F8-40FE-BBA5-0D9D5B703777}.Release|Any CPU.ActiveCfg = Release|Any CPU + {08684C17-C9F8-40FE-BBA5-0D9D5B703777}.Release|Any CPU.Build.0 = Release|Any CPU + {C57B2480-F632-4691-9C4C-8CC01237203C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C57B2480-F632-4691-9C4C-8CC01237203C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C57B2480-F632-4691-9C4C-8CC01237203C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C57B2480-F632-4691-9C4C-8CC01237203C}.Release|Any CPU.Build.0 = Release|Any CPU + {C5CAA59E-1680-4C52-B4AF-7D540861937C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C5CAA59E-1680-4C52-B4AF-7D540861937C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C5CAA59E-1680-4C52-B4AF-7D540861937C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C5CAA59E-1680-4C52-B4AF-7D540861937C}.Release|Any CPU.Build.0 = Release|Any CPU + {B54DEF90-C30C-44EA-9875-76F1B330CBB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B54DEF90-C30C-44EA-9875-76F1B330CBB7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B54DEF90-C30C-44EA-9875-76F1B330CBB7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B54DEF90-C30C-44EA-9875-76F1B330CBB7}.Release|Any CPU.Build.0 = Release|Any CPU + {049D0ACF-B1B6-468C-BD20-5E7584DF6FE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {049D0ACF-B1B6-468C-BD20-5E7584DF6FE2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {049D0ACF-B1B6-468C-BD20-5E7584DF6FE2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {049D0ACF-B1B6-468C-BD20-5E7584DF6FE2}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8E2C3187-F848-493A-9E79-56D20DDCAC94} + EndGlobalSection +EndGlobal diff --git a/README.md b/README.md new file mode 100644 index 0000000..ea1dea3 --- /dev/null +++ b/README.md @@ -0,0 +1,49 @@ +# DigitalData.Core Bibliothek + +Die `DigitalData.Core` Bibliothek bietet eine Reihe von Diensten, Repositories und Hilfsklassen zur Unterstützung der Entwicklung sauberer Architektur in .NET-Anwendungen. Diese Bibliothek umfasst Implementierungen für CRUD-Operationen, Active Directory-Dienste und Ausnahmebehandlung. + +## Komponenten + +### CRUD-Operationen + +- `ICRUDRepository`: Definiert einen Vertrag für CRUD-Operationen auf einer Entität des Typs `TEntity` mit dem Identifikator des Typs `TId`. + +- `CRUDRepository`: Bietet eine generische Implementierung für CRUD-Operationen innerhalb eines gegebenen `DbContext`. + +- `ICRUDService`: Definiert einen Vertrag für CRUD-Operationen auf der Dienstebene unter Verwendung von Datenübertragungsobjekten (DTOs). + +- `CRUDService`: Bietet generische CRUD-Operationen für einen bestimmten Entitätstyp. + +### Active Directory-Dienste + +- `ADService`: Ermöglicht die Interaktion mit dem Active Directory, um Suchvorgänge durchzuführen und Daten in Objekte des Typs `T` zu lesen. + +- `ADFilterAttribute`: Spezifiziert die Filterabfrage für Active Directory (AD)-Operationen. Dieses Attribut kann auf Klassen angewendet werden, um benutzerdefinierte Filterabfragen während AD-Operationen zu definieren. + +### Ausnahmebehandlung + +- `MappingResultNullException`: Repräsentiert Fehler, die während der Zuordnung auftreten, wenn das Ergebnis unerwartet `null` ist. Diese Ausnahme wird speziell verwendet, um anzugeben, dass eine AutoMapper-Zuordnungsoperation ein `null`-Objekt ergab. + +### Hilfsklassen + +- `AttrHelper`: Bietet Hilfsmethoden zum Arbeiten mit Attributen. + +### API-Controller + +- `CRUDControllerBase`: Eine Basiskontrollerklasse, die generische CRUD-Operationen für einen bestimmten Entitätstyp bereitstellt. + +- `ADControllerBase`: Ein Basiskontroller für die Interaktion mit dem Active Directory-Dienst. + +## Anwendung + +Diese Bibliothek ist für Entwickler konzipiert, die saubere Architekturprinzipien in ihren .NET-Anwendungen implementieren möchten. Sie bietet eine robuste Grundlage für die Entwicklung von Repositories, Diensten und API-Controllern mit Fokus auf Wartbarkeit, Testbarkeit und Erweiterbarkeit. + +## Hinweise + +- Die Verwendung von `IMapper` und `IServiceResult` ermöglicht eine flexible Datenübertragung und Fehlerbehandlung. + +- Die Implementierung der Active Directory-Dienste setzt voraus, dass die Anwendung auf der Windows-Plattform ausgeführt wird, aufgrund der Verwendung von `DirectorySearcher`. + +- Die Ausnahmebehandlungsklassen helfen bei der Identifizierung von Konfigurations- oder Datenquelleproblemen, die während der Automapper-Zuordnung auftreten können. + +Für weitere Details zur Implementierung und Nutzung dieser Bibliothek, prüfen Sie die Dokumentation und Beispiele im Code. \ No newline at end of file