diff --git a/.vs/DigitalData.Core/v17/.suo b/.vs/DigitalData.Core/v17/.suo
index 32f1e7b..b92c62b 100644
Binary files a/.vs/DigitalData.Core/v17/.suo and b/.vs/DigitalData.Core/v17/.suo differ
diff --git a/DigitalData.Core.Application/Flag.cs b/DigitalData.Core.Application/Flag.cs
index 3f63070..e3facc6 100644
--- a/DigitalData.Core.Application/Flag.cs
+++ b/DigitalData.Core.Application/Flag.cs
@@ -6,11 +6,6 @@
///
public enum Flag
{
- ///
- /// Indicates that no specific condition or status is associated with the service operation.
- ///
- Null,
-
///
/// Indicates a security breach or vulnerability has been detected during the service operation.
///
@@ -25,7 +20,7 @@
///
/// Indicates that either a security breach, a data integrity issue, or both have been detected during the service operation.
- /// This flag is used when one or both types of issues are present, requiring heightened attention to both security and data accuracy.
+ /// This flag is used when it is not sure whether the problem is security or data integrity. In this case, data integrity should be checked first.
///
SecurityBreachOrDataIntegrity
}
diff --git a/DigitalData.Core.Application/ServiceMessageExtensions.cs b/DigitalData.Core.Application/ServiceMessageExtensions.cs
index 8704451..072d8bb 100644
--- a/DigitalData.Core.Application/ServiceMessageExtensions.cs
+++ b/DigitalData.Core.Application/ServiceMessageExtensions.cs
@@ -23,6 +23,28 @@ namespace DigitalData.Core.Application
return serviceMessage;
}
+ ///
+ /// Determines whether the service message has a flag indicating a security breach.
+ ///
+ /// The service message instance to check.
+ /// True if the service message has the security breach flag; otherwise, false.
+ public static bool HasSecurityBreachFlag(this IServiceMessage serviceMessage) => serviceMessage.HasFlag(Flag.SecurityBreach);
+
+ ///
+ /// Determines whether the service message has a flag indicating a data integrity issue.
+ ///
+ /// The service message instance to check.
+ /// True if the service message has the data integrity issue flag; otherwise, false.
+ public static bool HasDataIntegrityIssueFlag(this IServiceMessage serviceMessage) => serviceMessage.HasFlag(Flag.DataIntegrityIssue);
+
+ ///
+ /// Determines whether the service message has a flag indicating either a security breach or a data integrity issue, or both.
+ /// This flag is used when it is not sure whether the problem is security or data integrity. In this case, data integrity should be checked first.
+ ///
+ /// The service message instance to check.
+ /// True if the service message has the flag indicating either or both issues; otherwise, false.
+ public static bool HasSecurityBreachOrDataIntegrityFlag(this IServiceMessage serviceMessage) => serviceMessage.HasFlag(Flag.SecurityBreachOrDataIntegrity);
+
#region ClientMessage
///
/// Adds a single client message to the service message.
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.deps.json b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.deps.json
deleted file mode 100644
index ec43b1f..0000000
--- a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.deps.json
+++ /dev/null
@@ -1,642 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.Application/1.0.0": {
- "dependencies": {
- "AutoMapper": "13.0.1",
- "Microsoft.Extensions.Caching.Abstractions": "7.0.0",
- "Microsoft.Extensions.Configuration": "7.0.0",
- "Microsoft.Extensions.Logging": "7.0.0",
- "System.DirectoryServices.AccountManagement": "7.0.1",
- "System.IdentityModel.Tokens.Jwt": "7.5.1",
- "System.Security.Cryptography.Cng": "5.0.0",
- "WebCore.Contracts": "1.0.1",
- "DigitalData.Core.Contracts": "1.0.1.0"
- },
- "runtime": {
- "DigitalData.Core.Application.dll": {}
- }
- },
- "AutoMapper/13.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Options": "7.0.0"
- },
- "runtime": {
- "lib/net6.0/AutoMapper.dll": {
- "assemblyVersion": "13.0.0.0",
- "fileVersion": "13.0.1.0"
- }
- }
- },
- "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.Configuration/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0",
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.423.11508"
- }
- }
- },
- "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.IdentityModel.Abstractions/7.5.1": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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.Formats.Asn1/5.0.0": {},
- "System.IdentityModel.Tokens.Jwt/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "dependencies": {
- "System.Formats.Asn1": "5.0.0"
- }
- },
- "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"
- }
- }
- },
- "WebCore.Contracts/1.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.Configuration.Binder": "7.0.4",
- "System.DirectoryServices": "7.0.1",
- "System.DirectoryServices.AccountManagement": "7.0.1",
- "System.IdentityModel.Tokens.Jwt": "7.5.1"
- },
- "runtime": {
- "DigitalData.Core.Contracts.dll": {}
- }
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "runtime": {
- "DigitalData.Core.Contracts.dll": {
- "assemblyVersion": "1.0.1.0",
- "fileVersion": "1.0.1.0"
- }
- }
- }
- }
- },
- "libraries": {
- "DigitalData.Core.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.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.Configuration/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==",
- "path": "microsoft.extensions.configuration/7.0.0",
- "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8+XPvJnHZsYgHOQlcMuQe7QNF5KdVKHH1F/wW3nd8/u81Gk/XFAYMDP0Lpz18h7/AM95M662vvqMorcYxCBB4w==",
- "path": "microsoft.extensions.configuration.binder/7.0.4",
- "hashPath": "microsoft.extensions.configuration.binder.7.0.4.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.IdentityModel.Abstractions/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
- "path": "microsoft.identitymodel.abstractions/7.5.1",
- "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
- "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
- "path": "microsoft.identitymodel.logging/7.5.1",
- "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
- "path": "microsoft.identitymodel.tokens/7.5.1",
- "hashPath": "microsoft.identitymodel.tokens.7.5.1.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.Formats.Asn1/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-MTvUIktmemNB+El0Fgw9egyqT9AYSIk6DTJeoDSpc3GIHxHCMo8COqkWT1mptX5tZ1SlQ6HJZ0OsSvMth1c12w==",
- "path": "system.formats.asn1/5.0.0",
- "hashPath": "system.formats.asn1.5.0.0.nupkg.sha512"
- },
- "System.IdentityModel.Tokens.Jwt/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
- "path": "system.identitymodel.tokens.jwt/7.5.1",
- "hashPath": "system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512"
- },
- "System.Security.Cryptography.Cng/5.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
- "path": "system.security.cryptography.cng/5.0.0",
- "hashPath": "system.security.cryptography.cng.5.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"
- },
- "WebCore.Contracts/1.0.1": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "type": "reference",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll
deleted file mode 100644
index 087fab0..0000000
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll and /dev/null differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb
deleted file mode 100644
index 03a9f76..0000000
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb and /dev/null differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
deleted file mode 100644
index a47e067..0000000
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and /dev/null differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
deleted file mode 100644
index 154946b..0000000
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfo.cs b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfo.cs
deleted file mode 100644
index b7a56e2..0000000
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.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.Application")]
-[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Application")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache
deleted file mode 100644
index f873012..0000000
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-07702634e271f37711fc7057b2e2d525a4d37394
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 51aa66c..0000000
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-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.Application
-build_property.ProjectDir = E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.assets.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.assets.cache
index 7e0941d..c08502b 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.assets.cache and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.assets.cache differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache
deleted file mode 100644
index 55cf191..0000000
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CopyComplete b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 121fff9..0000000
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-cab2f6eb8a1a8332777e30db94aff8080085a4c2
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt
index 51fc073..7760b19 100644
--- a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt
+++ b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt
@@ -45,18 +45,3 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Application\obj\Debu
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\refint\DigitalData.Core.Application.dll
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\ref\DigitalData.Core.Application.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.deps.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.csproj.AssemblyReference.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.AssemblyInfoInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.AssemblyInfo.cs
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.csproj.CoreCompileInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.csproj.CopyComplete
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\refint\DigitalData.Core.Application.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\DigitalData.Core.Application.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Debug\net7.0\ref\DigitalData.Core.Application.dll
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll
deleted file mode 100644
index 087fab0..0000000
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb
deleted file mode 100644
index 03a9f76..0000000
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll
deleted file mode 100644
index 703d8f9..0000000
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll
deleted file mode 100644
index 703d8f9..0000000
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll and /dev/null differ
diff --git a/DigitalData.Core.Application/obj/project.nuget.cache b/DigitalData.Core.Application/obj/project.nuget.cache
deleted file mode 100644
index f129c99..0000000
--- a/DigitalData.Core.Application/obj/project.nuget.cache
+++ /dev/null
@@ -1,46 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "Qyy0ewwX8b7BiqESSzh2Ry+6wOCVtTdArIjIXLb/4jI8jc7qKyoxNQrtrO0Gs5rATfA0WGd8VD4I03sDyI89NA==",
- "success": true,
- "projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Application\\DigitalData.Core.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.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.configuration\\7.0.0\\microsoft.extensions.configuration.7.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\microsoft.extensions.configuration.binder.7.0.4.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.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.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.formats.asn1\\5.0.0\\system.formats.asn1.5.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\system.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.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",
- "C:\\Users\\tekh\\.nuget\\packages\\webcore.contracts\\1.0.1\\webcore.contracts.1.0.1.nupkg.sha512"
- ],
- "logs": [
- {
- "code": "NU1803",
- "level": "Warning",
- "warningLevel": 1,
- "message": "You are running the 'restore' operation with an 'HTTP' source, 'http://localhost:5000/v3/index.json'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source."
- }
- ]
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/Application/IServiceMessage.cs b/DigitalData.Core.Contracts/Application/IServiceMessage.cs
index 3b8b67a..faf94d5 100644
--- a/DigitalData.Core.Contracts/Application/IServiceMessage.cs
+++ b/DigitalData.Core.Contracts/Application/IServiceMessage.cs
@@ -27,7 +27,7 @@ namespace DigitalData.Core.Contracts.Application
///
/// The flag to check against the current service message's flag.
/// true if the flags match; otherwise, false.
- public bool HasFlag(Enum flag) => Flag.ToString() == flag.ToString();
+ public bool HasFlag(Enum flag) => Flag?.ToString() == flag.ToString();
///
/// [Obsolete("Deprecated: Use ClientMessages instead.")]
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
deleted file mode 100644
index 28651fc..0000000
--- a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.deps.json
+++ /dev/null
@@ -1,512 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.Contracts/1.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.Configuration.Binder": "7.0.4",
- "System.DirectoryServices": "7.0.1",
- "System.DirectoryServices.AccountManagement": "7.0.1",
- "System.IdentityModel.Tokens.Jwt": "7.5.1"
- },
- "runtime": {
- "DigitalData.Core.Contracts.dll": {}
- }
- },
- "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.Configuration.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.423.11508"
- }
- }
- },
- "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.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.IdentityModel.Abstractions/7.5.1": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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.IdentityModel.Tokens.Jwt/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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.Contracts/1.0.1": {
- "type": "project",
- "serviceable": false,
- "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.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8+XPvJnHZsYgHOQlcMuQe7QNF5KdVKHH1F/wW3nd8/u81Gk/XFAYMDP0Lpz18h7/AM95M662vvqMorcYxCBB4w==",
- "path": "microsoft.extensions.configuration.binder/7.0.4",
- "hashPath": "microsoft.extensions.configuration.binder.7.0.4.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.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.IdentityModel.Abstractions/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
- "path": "microsoft.identitymodel.abstractions/7.5.1",
- "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
- "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
- "path": "microsoft.identitymodel.logging/7.5.1",
- "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
- "path": "microsoft.identitymodel.tokens/7.5.1",
- "hashPath": "microsoft.identitymodel.tokens.7.5.1.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.IdentityModel.Tokens.Jwt/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
- "path": "system.identitymodel.tokens.jwt/7.5.1",
- "hashPath": "system.identitymodel.tokens.jwt.7.5.1.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.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
deleted file mode 100644
index a47e067..0000000
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and /dev/null 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
deleted file mode 100644
index 154946b..0000000
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and /dev/null differ
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
deleted file mode 100644
index 7a4856e..0000000
--- a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs
+++ /dev/null
@@ -1,24 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("Digital Data")]
-[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyDescriptionAttribute("The interfaces of DigitalData.Core projects.")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.1.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.1")]
-[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Contracts")]
-[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Contracts")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.1.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
deleted file mode 100644
index 72bf5bd..0000000
--- a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-a02e6c7e1e3f519a3498e0e732665b8cbb10eaa5
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
deleted file mode 100644
index a119e9e..0000000
--- a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-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\WebCoreModules\DigitalData.Core.Contracts\
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
index c978ba1..3917ac0 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.assets.cache 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
deleted file mode 100644
index 1141ac5..0000000
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache and /dev/null differ
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
deleted file mode 100644
index 05774ce..0000000
--- a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-30adcb1154d9d366ef2a2a6cfc4dbd6de768d782
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
index 4e6bdd9..4927885 100644
--- 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
@@ -34,15 +34,3 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\refint\DigitalData.Core.Contracts.dll
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\ref\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.deps.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.AssemblyReference.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfoInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.AssemblyInfo.cs
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\refint\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Debug\net7.0\DigitalData.Core.Contracts.pdb
-E:\TekH\Visual Studio\WebCoreModules\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
deleted file mode 100644
index a47e067..0000000
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll and /dev/null 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
deleted file mode 100644
index 154946b..0000000
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb and /dev/null 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
deleted file mode 100644
index 51d641f..0000000
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll and /dev/null 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
deleted file mode 100644
index 51d641f..0000000
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll and /dev/null differ
diff --git a/DigitalData.Core.Contracts/obj/project.nuget.cache b/DigitalData.Core.Contracts/obj/project.nuget.cache
deleted file mode 100644
index d206303..0000000
--- a/DigitalData.Core.Contracts/obj/project.nuget.cache
+++ /dev/null
@@ -1,39 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "02U0PR8NBcnoVyCOtS355+ca1hy+m5C6Df5RJqFK+V7XcnKKCTV0gnsDepsjsHAzFssdetEStzxtBkXRCHqiVw==",
- "success": true,
- "projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "expectedPackageFiles": [
- "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.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\microsoft.extensions.configuration.binder.7.0.4.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.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.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.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.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.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": [
- {
- "code": "NU1803",
- "level": "Warning",
- "warningLevel": 1,
- "message": "You are running the 'restore' operation with an 'HTTP' source, 'http://localhost:5000/v3/index.json'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source."
- }
- ]
-}
\ 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
deleted file mode 100644
index a47e067..0000000
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and /dev/null 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
deleted file mode 100644
index 154946b..0000000
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and /dev/null 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
deleted file mode 100644
index db86e2d..0000000
--- a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json
+++ /dev/null
@@ -1,576 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.CultureServices/1.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Localization": "7.0.16",
- "WebCore.Contracts": "1.0.1",
- "DigitalData.Core.Contracts": "1.0.1.0"
- },
- "runtime": {
- "DigitalData.Core.CultureServices.dll": {}
- }
- },
- "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.1",
- "Microsoft.Extensions.Options": "7.0.1",
- "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.Configuration.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.423.11508"
- }
- }
- },
- "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.IdentityModel.Abstractions/7.5.1": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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.IdentityModel.Tokens.Jwt/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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"
- }
- }
- },
- "WebCore.Contracts/1.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.Configuration.Binder": "7.0.4",
- "System.DirectoryServices": "7.0.1",
- "System.DirectoryServices.AccountManagement": "7.0.1",
- "System.IdentityModel.Tokens.Jwt": "7.5.1"
- },
- "runtime": {
- "DigitalData.Core.Contracts.dll": {}
- }
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "runtime": {
- "DigitalData.Core.Contracts.dll": {
- "assemblyVersion": "1.0.1.0",
- "fileVersion": "1.0.1.0"
- }
- }
- }
- }
- },
- "libraries": {
- "DigitalData.Core.CultureServices/1.0.0": {
- "type": "project",
- "serviceable": false,
- "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.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8+XPvJnHZsYgHOQlcMuQe7QNF5KdVKHH1F/wW3nd8/u81Gk/XFAYMDP0Lpz18h7/AM95M662vvqMorcYxCBB4w==",
- "path": "microsoft.extensions.configuration.binder/7.0.4",
- "hashPath": "microsoft.extensions.configuration.binder.7.0.4.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.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.IdentityModel.Abstractions/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
- "path": "microsoft.identitymodel.abstractions/7.5.1",
- "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
- "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
- "path": "microsoft.identitymodel.logging/7.5.1",
- "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
- "path": "microsoft.identitymodel.tokens/7.5.1",
- "hashPath": "microsoft.identitymodel.tokens.7.5.1.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.IdentityModel.Tokens.Jwt/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
- "path": "system.identitymodel.tokens.jwt/7.5.1",
- "hashPath": "system.identitymodel.tokens.jwt.7.5.1.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"
- },
- "WebCore.Contracts/1.0.1": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "type": "reference",
- "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
deleted file mode 100644
index 35dfbfb..0000000
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll and /dev/null 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
deleted file mode 100644
index 8830a65..0000000
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb and /dev/null differ
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
deleted file mode 100644
index dab0a0b..0000000
--- a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("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
deleted file mode 100644
index 37eec31..0000000
--- a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-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
deleted file mode 100644
index 591ea3d..0000000
--- a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-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\WebCoreModules\DigitalData.Core.CultureServices\
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
index b2400c9..0f06e9e 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.assets.cache 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
deleted file mode 100644
index 8ee8542..0000000
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache and /dev/null differ
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
deleted file mode 100644
index e69de29..0000000
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
deleted file mode 100644
index 136a698..0000000
--- a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-e394eaa95731097c006477b6392d482696693a7b
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
index 6ced654..e9207e8 100644
--- 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
@@ -43,18 +43,3 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.CultureServices\obj\
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\refint\DigitalData.Core.CultureServices.dll
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\ref\DigitalData.Core.CultureServices.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.deps.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.CultureServices.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.AssemblyReference.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfoInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.AssemblyInfo.cs
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.csproj.CopyComplete
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\refint\DigitalData.Core.CultureServices.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Debug\net7.0\DigitalData.Core.CultureServices.pdb
-E:\TekH\Visual Studio\WebCoreModules\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
deleted file mode 100644
index 35dfbfb..0000000
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll and /dev/null 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
deleted file mode 100644
index 8830a65..0000000
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb and /dev/null 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
deleted file mode 100644
index 05bb92c..0000000
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll and /dev/null 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
deleted file mode 100644
index 05bb92c..0000000
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll and /dev/null differ
diff --git a/DigitalData.Core.CultureServices/obj/project.nuget.cache b/DigitalData.Core.CultureServices/obj/project.nuget.cache
deleted file mode 100644
index 2597fcd..0000000
--- a/DigitalData.Core.CultureServices/obj/project.nuget.cache
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "LnEbXTKol+ItknIOkltLRQjYYsTRbx4L1MenlpGFqiAJDmykJWQ+ZPLnd8KK4Ju/B3GurS6Zdx6iF34xYZyYwQ==",
- "success": true,
- "projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj",
- "expectedPackageFiles": [
- "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.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\microsoft.extensions.configuration.binder.7.0.4.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.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.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.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.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.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",
- "C:\\Users\\tekh\\.nuget\\packages\\webcore.contracts\\1.0.1\\webcore.contracts.1.0.1.nupkg.sha512"
- ],
- "logs": [
- {
- "code": "NU1803",
- "level": "Warning",
- "warningLevel": 1,
- "message": "You are running the 'restore' operation with an 'HTTP' source, 'http://localhost:5000/v3/index.json'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source."
- }
- ]
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
deleted file mode 100644
index a47e067..0000000
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
deleted file mode 100644
index 154946b..0000000
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.deps.json b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.deps.json
deleted file mode 100644
index 0e8dd0b..0000000
--- a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.deps.json
+++ /dev/null
@@ -1,624 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.Infrastructure/1.0.0": {
- "dependencies": {
- "Microsoft.EntityFrameworkCore": "7.0.16",
- "WebCore.Contracts": "1.0.1",
- "DigitalData.Core.Contracts": "1.0.1.0"
- },
- "runtime": {
- "DigitalData.Core.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.Configuration.Abstractions/7.0.0": {
- "dependencies": {
- "Microsoft.Extensions.Primitives": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.22.51805"
- }
- }
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "dependencies": {
- "Microsoft.Extensions.Configuration.Abstractions": "7.0.0"
- },
- "runtime": {
- "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll": {
- "assemblyVersion": "7.0.0.0",
- "fileVersion": "7.0.423.11508"
- }
- }
- },
- "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.IdentityModel.Abstractions/7.5.1": {
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Abstractions": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Logging.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.Logging": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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.IdentityModel.Tokens.Jwt/7.5.1": {
- "dependencies": {
- "Microsoft.IdentityModel.JsonWebTokens": "7.5.1",
- "Microsoft.IdentityModel.Tokens": "7.5.1"
- },
- "runtime": {
- "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": {
- "assemblyVersion": "7.5.1.0",
- "fileVersion": "7.5.1.50405"
- }
- }
- },
- "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"
- }
- }
- },
- "WebCore.Contracts/1.0.1": {
- "dependencies": {
- "Microsoft.Extensions.Caching.Memory": "7.0.0",
- "Microsoft.Extensions.Configuration.Binder": "7.0.4",
- "System.DirectoryServices": "7.0.1",
- "System.DirectoryServices.AccountManagement": "7.0.1",
- "System.IdentityModel.Tokens.Jwt": "7.5.1"
- },
- "runtime": {
- "DigitalData.Core.Contracts.dll": {}
- }
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "runtime": {
- "DigitalData.Core.Contracts.dll": {
- "assemblyVersion": "1.0.1.0",
- "fileVersion": "1.0.1.0"
- }
- }
- }
- }
- },
- "libraries": {
- "DigitalData.Core.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.Configuration.Abstractions/7.0.0": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==",
- "path": "microsoft.extensions.configuration.abstractions/7.0.0",
- "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512"
- },
- "Microsoft.Extensions.Configuration.Binder/7.0.4": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-8+XPvJnHZsYgHOQlcMuQe7QNF5KdVKHH1F/wW3nd8/u81Gk/XFAYMDP0Lpz18h7/AM95M662vvqMorcYxCBB4w==",
- "path": "microsoft.extensions.configuration.binder/7.0.4",
- "hashPath": "microsoft.extensions.configuration.binder.7.0.4.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.IdentityModel.Abstractions/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PT16ZFbPIiMsYv07oy3zOjqUOJ7xutGBkJTOX0+IbNyU6+O6X7aIxjq9EaSSRLWbekRgamgtmfg8Xjw6A6Ua9g==",
- "path": "microsoft.identitymodel.abstractions/7.5.1",
- "hashPath": "microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.JsonWebTokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-93CGSa8RPdZU8zfvA3nf9NGKUqEnQrE12VzYlMqKh72ddhzusosqLNEUgH/YhFWBLRFOnY1RCgHMV7pR+sAx2w==",
- "path": "microsoft.identitymodel.jsonwebtokens/7.5.1",
- "hashPath": "microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Logging/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-PnpAQX20BAiDIPYmWUyQSlEaWD8BLXzHpiDGTCT568Cs0ReOeyzNe401LzCeiv6ilug/KefVeV1CeqtCHTo8dw==",
- "path": "microsoft.identitymodel.logging/7.5.1",
- "hashPath": "microsoft.identitymodel.logging.7.5.1.nupkg.sha512"
- },
- "Microsoft.IdentityModel.Tokens/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-Q3DKpyFViP84IUlTFKH/zIkswIrmSh2Vd/eFDo4wlOHy4DYxoweZEEw4kDEiKt9VCX6o7SddK3HK2xDYyFpexA==",
- "path": "microsoft.identitymodel.tokens/7.5.1",
- "hashPath": "microsoft.identitymodel.tokens.7.5.1.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.IdentityModel.Tokens.Jwt/7.5.1": {
- "type": "package",
- "serviceable": true,
- "sha512": "sha512-UUw+E0R73lZLlXgneYIJQxNs1kfbcxjVzw64JQyiwjqCd4HMpAbjn+xRo86QZT84uHq8/MkqvfH82tgjgPzpuw==",
- "path": "system.identitymodel.tokens.jwt/7.5.1",
- "hashPath": "system.identitymodel.tokens.jwt.7.5.1.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"
- },
- "WebCore.Contracts/1.0.1": {
- "type": "project",
- "serviceable": false,
- "sha512": ""
- },
- "DigitalData.Core.Contracts/1.0.1.0": {
- "type": "reference",
- "serviceable": false,
- "sha512": ""
- }
- }
-}
\ No newline at end of file
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll
deleted file mode 100644
index 7a3bc69..0000000
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb
deleted file mode 100644
index a3eee48..0000000
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs
deleted file mode 100644
index 1a0fdbb..0000000
--- a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.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.Infrastructure")]
-[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Infrastructure")]
-[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
-
-// Generated by the MSBuild WriteCodeFragment class.
-
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
deleted file mode 100644
index 4c9759e..0000000
--- a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-1b80180705cd22a594c6aa591c3de1d54a855132
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 3b86002..0000000
--- a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-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.Infrastructure
-build_property.ProjectDir = E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.assets.cache b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.assets.cache
index cdf0b22..716acba 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.assets.cache and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.assets.cache differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache
deleted file mode 100644
index a38d578..0000000
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.CopyComplete b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.CopyComplete
deleted file mode 100644
index e69de29..0000000
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 2386ab8..0000000
--- a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-aac57e7843f2a76ad077c410001b0e3deab56dce
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt
index cac9bda..237d9ff 100644
--- a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt
+++ b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt
@@ -43,18 +43,3 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Infrastructure\obj\D
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\refint\DigitalData.Core.Infrastructure.dll
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\ref\DigitalData.Core.Infrastructure.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Infrastructure.deps.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Infrastructure.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Infrastructure.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.AssemblyInfo.cs
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.csproj.CopyComplete
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\refint\DigitalData.Core.Infrastructure.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\DigitalData.Core.Infrastructure.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Debug\net7.0\ref\DigitalData.Core.Infrastructure.dll
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll
deleted file mode 100644
index 7a3bc69..0000000
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb
deleted file mode 100644
index a3eee48..0000000
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.Infrastructure.dll
deleted file mode 100644
index d1e62a8..0000000
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.Infrastructure.dll and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.Infrastructure.dll
deleted file mode 100644
index d1e62a8..0000000
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.Infrastructure.dll and /dev/null differ
diff --git a/DigitalData.Core.Infrastructure/obj/project.nuget.cache b/DigitalData.Core.Infrastructure/obj/project.nuget.cache
deleted file mode 100644
index 7a1a2ca..0000000
--- a/DigitalData.Core.Infrastructure/obj/project.nuget.cache
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "5qUwo8zAbWVacBGEqNmTmJUDNCMRbarNbAuEw8hetOs7TEp+YmgyTXvm6yB/RdXtncEwbwklXmwR8/2gmz1GyA==",
- "success": true,
- "projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Infrastructure\\DigitalData.Core.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.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.extensions.configuration.binder\\7.0.4\\microsoft.extensions.configuration.binder.7.0.4.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.identitymodel.abstractions\\7.5.1\\microsoft.identitymodel.abstractions.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\7.5.1\\microsoft.identitymodel.jsonwebtokens.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.logging\\7.5.1\\microsoft.identitymodel.logging.7.5.1.nupkg.sha512",
- "C:\\Users\\tekh\\.nuget\\packages\\microsoft.identitymodel.tokens\\7.5.1\\microsoft.identitymodel.tokens.7.5.1.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.identitymodel.tokens.jwt\\7.5.1\\system.identitymodel.tokens.jwt.7.5.1.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",
- "C:\\Users\\tekh\\.nuget\\packages\\webcore.contracts\\1.0.1\\webcore.contracts.1.0.1.nupkg.sha512"
- ],
- "logs": [
- {
- "code": "NU1803",
- "level": "Warning",
- "warningLevel": 1,
- "message": "You are running the 'restore' operation with an 'HTTP' source, 'http://localhost:5000/v3/index.json'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source."
- }
- ]
-}
\ 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
deleted file mode 100644
index eb7fd3b..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Castle.Core.dll and /dev/null 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
deleted file mode 100644
index 115056d..0000000
--- a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.deps.json
+++ /dev/null
@@ -1,1059 +0,0 @@
-{
- "runtimeTarget": {
- "name": ".NETCoreApp,Version=v7.0",
- "signature": ""
- },
- "compilationOptions": {},
- "targets": {
- ".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.Tests/1.0.0": {
- "dependencies": {
- "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"
- }
- }
- },
- "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.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.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.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"
- }
- }
- }
- },
- "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"
- },
- "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.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.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.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"
- }
- }
-}
\ 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
deleted file mode 100644
index 2ee3c59..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll and /dev/null 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
deleted file mode 100644
index 40ae8b4..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb and /dev/null 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
deleted file mode 100644
index f78f3ba..0000000
--- a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "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/Microsoft.TestPlatform.CommunicationUtilities.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CommunicationUtilities.dll
deleted file mode 100644
index 40e2919..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CommunicationUtilities.dll and /dev/null 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
deleted file mode 100644
index a30de7f..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CoreUtilities.dll and /dev/null 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
deleted file mode 100644
index e64fb8e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.CrossPlatEngine.dll and /dev/null 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
deleted file mode 100644
index 448b077..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.PlatformAbstractions.dll and /dev/null 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
deleted file mode 100644
index e19bbe4..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.TestPlatform.Utilities.dll and /dev/null 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
deleted file mode 100644
index 985c275..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll and /dev/null 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
deleted file mode 100644
index 7d4a405..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.Common.dll and /dev/null 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
deleted file mode 100644
index 7a44de4..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll and /dev/null differ
diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll
deleted file mode 100644
index 3c9679c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Moq.dll and /dev/null 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
deleted file mode 100644
index 6f49746..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.dll and /dev/null 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
deleted file mode 100644
index 1661db6..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/NUnit3.TestAdapter.pdb and /dev/null 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
deleted file mode 100644
index 5f2336e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/Newtonsoft.Json.dll and /dev/null 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
deleted file mode 100644
index 0fabf0c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/NuGet.Frameworks.dll and /dev/null 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
deleted file mode 100644
index 8a65e71..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/System.Diagnostics.EventLog.dll and /dev/null 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
deleted file mode 100644
index f2c4135..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 1287ed5..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index ba61c4a..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 7f0484a..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 2bed770..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index b0827ee..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index ab7a45c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 399b510..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 8868e95..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index bf674cf..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 115b76c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 38e8614..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 461b084..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 0cb9970..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 792e526..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index e76875c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index f92ee4d..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index e69b8a0..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 955fe96..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 3cda34e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 694c729..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 85d7ebf..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 2c63703..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 588af59..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 31acf99..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index e9f26ac..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 52f2290..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 481b9f3..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 4910b5c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 38345c3..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 6cb6d07..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index d1c72b2..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 0d5982e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index bddeafd..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 0bd64f8..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 73179bb..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.api.dll and /dev/null 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
deleted file mode 100644
index 3bbfeed..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.core.dll and /dev/null 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
deleted file mode 100644
index 85e47f6..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.engine.dll and /dev/null 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
deleted file mode 100644
index 16e3f3b..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/nunit.framework.dll and /dev/null differ
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
deleted file mode 100644
index 4d7d267..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 71f4b9d..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 4bb52ee..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 4455672..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 879efac..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 8e0360b..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index f536cb8..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 568848d..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index b5992fc..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 031f40e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 2e54f9b..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 168f8c1..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index c842e4a..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index c999231..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 1ce5331..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index bc23526..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll and /dev/null 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
deleted file mode 100644
index 03b44f1..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll and /dev/null 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
deleted file mode 100644
index b982b6b..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/testcentric.engine.metadata.dll and /dev/null differ
diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll
deleted file mode 100644
index 9ac5a6f..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.dll and /dev/null differ
diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe b/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe
deleted file mode 100644
index e699551..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/testhost.exe and /dev/null 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
deleted file mode 100644
index 79cfbe1..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index eecada0..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 94a6b2f..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 6df103a..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index ce71271..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index 5bbdc6e..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 06fa906..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 9a09739..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index ff5fa37..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index 218aa55..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null 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
deleted file mode 100644
index cc18480..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index b8fc4e3..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll and /dev/null 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
deleted file mode 100644
index 05a61a5..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll and /dev/null 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
deleted file mode 100644
index 802001c..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll and /dev/null 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
deleted file mode 100644
index e3b72f3..0000000
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll and /dev/null differ
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
deleted file mode 100644
index f92d144..0000000
--- a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
-//
-// Changes to this file may cause incorrect behavior and will be lost if
-// the code is regenerated.
-//
-//------------------------------------------------------------------------------
-
-using System;
-using System.Reflection;
-
-[assembly: System.Reflection.AssemblyCompanyAttribute("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
deleted file mode 100644
index 5c082aa..0000000
--- a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-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
deleted file mode 100644
index 5a28b12..0000000
--- a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,11 +0,0 @@
-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\WebCoreModules\DigitalData.Core.Tests\
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
index a00de21..8d4ae7f 100644
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.assets.cache 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
deleted file mode 100644
index 57fbe11..0000000
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.AssemblyReference.cache and /dev/null differ
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
deleted file mode 100644
index e69de29..0000000
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
deleted file mode 100644
index 6cee938..0000000
--- a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-801efbd755a0845da52d0e5fc39ad52571bfbcfb
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
index d53a012..3c771ff 100644
--- 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
@@ -206,107 +206,3 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.genruntimeconfig.cache
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\ref\DigitalData.Core.Tests.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\testhost.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\testhost.exe
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\NUnit3.TestAdapter.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\NUnit3.TestAdapter.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.api.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.engine.core.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\testcentric.engine.metadata.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.deps.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.runtimeconfig.json
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\DigitalData.Core.Tests.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Castle.Core.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CoreUtilities.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.PlatformAbstractions.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CommunicationUtilities.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.CrossPlatEngine.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.TestPlatform.Utilities.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Microsoft.VisualStudio.TestPlatform.Common.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Moq.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\Newtonsoft.Json.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\NuGet.Frameworks.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\nunit.framework.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\System.Diagnostics.EventLog.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.Messages.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\bin\Debug\net7.0\runtimes\win\lib\net6.0\System.Diagnostics.EventLog.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.AssemblyReference.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.GeneratedMSBuildEditorConfig.editorconfig
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.AssemblyInfoInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.AssemblyInfo.cs
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.CoreCompileInputs.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.csproj.CopyComplete
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\refint\DigitalData.Core.Tests.dll
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.pdb
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\DigitalData.Core.Tests.genruntimeconfig.cache
-E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Tests\obj\Debug\net7.0\ref\DigitalData.Core.Tests.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
deleted file mode 100644
index 2ee3c59..0000000
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll and /dev/null 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
deleted file mode 100644
index 743d27b..0000000
--- a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-e0ef96e9982c4eed9574cba00a13315898d20375
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
deleted file mode 100644
index 40ae8b4..0000000
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb and /dev/null 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
deleted file mode 100644
index 18b608c..0000000
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/ref/DigitalData.Core.Tests.dll and /dev/null 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
deleted file mode 100644
index 18b608c..0000000
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/refint/DigitalData.Core.Tests.dll and /dev/null differ
diff --git a/DigitalData.Core.Tests/obj/project.nuget.cache b/DigitalData.Core.Tests/obj/project.nuget.cache
deleted file mode 100644
index 8ac7dab..0000000
--- a/DigitalData.Core.Tests/obj/project.nuget.cache
+++ /dev/null
@@ -1,66 +0,0 @@
-{
- "version": 2,
- "dgSpecHash": "xTGpZ2U2zE+QXg7jUU0GFlSL7CR3Mu2EFXtu7DijgdM2aMTKt9zgEIAuM69jrrIYih32F9uw43EioiyuvEh7yw==",
- "success": true,
- "projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\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\\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.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.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.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": [
- {
- "code": "NU1803",
- "level": "Warning",
- "warningLevel": 1,
- "message": "You are running the 'restore' operation with an 'HTTP' source, 'http://localhost:5000/v3/index.json'. Non-HTTPS access will be removed in a future version. Consider migrating to an 'HTTPS' source."
- }
- ]
-}
\ No newline at end of file