diff --git a/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2
index 5f31158..aa5a6c6 100644
Binary files a/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 and b/.vs/DigitalData.Core/DesignTimeBuild/.dtbcache.v2 differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/12099b60-cf1e-4d29-9b7e-d6d9d59d85cc.vsidx b/.vs/DigitalData.Core/FileContentIndex/12099b60-cf1e-4d29-9b7e-d6d9d59d85cc.vsidx
new file mode 100644
index 0000000..1181d32
Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/12099b60-cf1e-4d29-9b7e-d6d9d59d85cc.vsidx differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/17c86516-fd82-4bf2-a66a-1dfb570c1dbd.vsidx b/.vs/DigitalData.Core/FileContentIndex/17c86516-fd82-4bf2-a66a-1dfb570c1dbd.vsidx
new file mode 100644
index 0000000..118ee7e
Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/17c86516-fd82-4bf2-a66a-1dfb570c1dbd.vsidx differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/642f441f-a332-4e41-af21-1947ff854882.vsidx b/.vs/DigitalData.Core/FileContentIndex/642f441f-a332-4e41-af21-1947ff854882.vsidx
deleted file mode 100644
index 5a6ba0d..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/642f441f-a332-4e41-af21-1947ff854882.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/a740084f-9d58-444c-939c-649f4198b70b.vsidx b/.vs/DigitalData.Core/FileContentIndex/a740084f-9d58-444c-939c-649f4198b70b.vsidx
new file mode 100644
index 0000000..4a17ae1
Binary files /dev/null and b/.vs/DigitalData.Core/FileContentIndex/a740084f-9d58-444c-939c-649f4198b70b.vsidx differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/e67bd6ef-c5c0-40e7-8ca4-0f411bdd8d9c.vsidx b/.vs/DigitalData.Core/FileContentIndex/e67bd6ef-c5c0-40e7-8ca4-0f411bdd8d9c.vsidx
deleted file mode 100644
index c7b3581..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/e67bd6ef-c5c0-40e7-8ca4-0f411bdd8d9c.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/FileContentIndex/ea9d3796-085c-4663-8fdd-d98aa93a7412.vsidx b/.vs/DigitalData.Core/FileContentIndex/ea9d3796-085c-4663-8fdd-d98aa93a7412.vsidx
deleted file mode 100644
index cfc3b71..0000000
Binary files a/.vs/DigitalData.Core/FileContentIndex/ea9d3796-085c-4663-8fdd-d98aa93a7412.vsidx and /dev/null differ
diff --git a/.vs/DigitalData.Core/v17/.futdcache.v2 b/.vs/DigitalData.Core/v17/.futdcache.v2
index fcde6ee..a32f45c 100644
Binary files a/.vs/DigitalData.Core/v17/.futdcache.v2 and b/.vs/DigitalData.Core/v17/.futdcache.v2 differ
diff --git a/.vs/DigitalData.Core/v17/.suo b/.vs/DigitalData.Core/v17/.suo
index 045cedb..0cd5661 100644
Binary files a/.vs/DigitalData.Core/v17/.suo and b/.vs/DigitalData.Core/v17/.suo differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1
index 442613f..0f859c6 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.metadata.v6.1 differ
diff --git a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1
index 7fad543..e87af45 100644
Binary files a/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 and b/.vs/ProjectEvaluation/digitaldata.core.projects.v6.1 differ
diff --git a/DigitalData.Core.API/ControllerExtensions.cs b/DigitalData.Core.API/ControllerExtensions.cs
new file mode 100644
index 0000000..e741da4
--- /dev/null
+++ b/DigitalData.Core.API/ControllerExtensions.cs
@@ -0,0 +1,26 @@
+using Microsoft.AspNetCore.Mvc;
+
+namespace DigitalData.Core.API
+{
+ ///
+ /// Provides extension methods for controllers in ASP.NET Core applications.
+ /// This class is designed to enhance the functionality of , ,
+ /// and their related results such as .
+ ///
+ public static class ControllerExtensions
+ {
+ ///
+ /// Adds or updates a value in the ViewData dictionary of a ViewResult. This method supports fluent chaining,
+ /// enabling cleaner and more readable modifications to ViewData.
+ ///
+ /// The ViewResult to which ViewData will be added or updated.
+ /// The key in the ViewData dictionary where the value will be stored.
+ /// The value to be stored in the ViewData dictionary.
+ /// The same ViewResult object with updated ViewData, allowing for additional chained operations.
+ public static ViewResult WithData(this ViewResult viewResult, string index, object value)
+ {
+ viewResult.ViewData[index] = value;
+ return viewResult;
+ }
+ }
+}
\ No newline at end of file
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json
index 29b5ac7..ac06b39 100644
--- a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json
+++ b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.deps.json
@@ -8,8 +8,9 @@
".NETCoreApp,Version=v7.0": {
"DigitalData.Core.API/1.0.0": {
"dependencies": {
- "DigitalData.Core.Contracts": "1.0.0",
- "Microsoft.Extensions.Logging": "7.0.0"
+ "Microsoft.Extensions.Logging": "7.0.0",
+ "WebCore.Contracts": "1.0.1",
+ "DigitalData.Core.Contracts": "1.0.1.0"
},
"runtime": {
"DigitalData.Core.API.dll": {}
@@ -283,7 +284,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "7.0.0",
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
@@ -294,6 +295,14 @@
"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"
+ }
+ }
}
}
},
@@ -478,10 +487,15 @@
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "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.API/bin/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll
index 0331f21..8d9f072 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb
index 860e9f7..c16d84a 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.API.pdb differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.API/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.API/bin/Debug/net7.0/icon.png b/DigitalData.Core.API/bin/Debug/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.API/bin/Debug/net7.0/icon.png differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache
index 491e8a0..2a4decd 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.assets.cache differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache
index b1f4ed2..1cbf99d 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt
index e5e3f6d..d8c8a3e 100644
--- a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt
+++ b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.csproj.FileListAbsolute.txt
@@ -67,6 +67,7 @@ E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.API\obj\Debug\net7.0
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.API\obj\Debug\net7.0\refint\DigitalData.Core.API.dll
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.API\obj\Debug\net7.0\DigitalData.Core.API.pdb
E:\TekH\Visual Studio\DDWeb\WebCoreModules\DigitalData.Core.API\obj\Debug\net7.0\ref\DigitalData.Core.API.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\icon.png
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.deps.json
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.dll
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.pdb
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll
index 0331f21..8d9f072 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb
index 860e9f7..c16d84a 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb and b/DigitalData.Core.API/obj/Debug/net7.0/DigitalData.Core.API.pdb differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll
index e005495..d376dde 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll and b/DigitalData.Core.API/obj/Debug/net7.0/ref/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll b/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll
index e005495..d376dde 100644
Binary files a/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll and b/DigitalData.Core.API/obj/Debug/net7.0/refint/DigitalData.Core.API.dll differ
diff --git a/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json
index 4dfe89e..c268a8c 100644
--- a/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.API/obj/DigitalData.Core.API.csproj.nuget.dgspec.json
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -84,10 +85,10 @@
}
},
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -112,6 +113,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.API/obj/project.assets.json b/DigitalData.Core.API/obj/project.assets.json
index fdf476b..e5b8966 100644
--- a/DigitalData.Core.API/obj/project.assets.json
+++ b/DigitalData.Core.API/obj/project.assets.json
@@ -508,7 +508,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v7.0",
"dependencies": {
@@ -519,10 +519,10 @@
"System.IdentityModel.Tokens.Jwt": "7.5.1"
},
"compile": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
},
"runtime": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
}
}
}
@@ -1271,7 +1271,7 @@
"useSharedDesignerContext.txt"
]
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
@@ -1279,8 +1279,8 @@
},
"projectFileDependencyGroups": {
"net7.0": [
- "DigitalData.Core.Contracts >= 1.0.0",
- "Microsoft.Extensions.Logging >= 7.0.0"
+ "Microsoft.Extensions.Logging >= 7.0.0",
+ "WebCore.Contracts >= 1.0.1"
]
},
"packageFolders": {
@@ -1318,6 +1318,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -1367,5 +1368,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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.API/obj/project.nuget.cache b/DigitalData.Core.API/obj/project.nuget.cache
index 324cad4..0084fe5 100644
--- a/DigitalData.Core.API/obj/project.nuget.cache
+++ b/DigitalData.Core.API/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "yXABE/TQcN7K37vYTbS+TsUQ8oyW2LVpuOff3GiYG62BFiV4GBbd1KQ0kR+mK3JdiQvv1VA+ceDHrEulQc4xtw==",
+ "dgSpecHash": "tndWnU7t4tnqatxEBQMDJJVorx0bTTuEtnpzgesjt88QGOK4Gg5UrovBlugBpr+iLZqUsOHwvR3sK+JGS4la/w==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.API\\DigitalData.Core.API.csproj",
"expectedPackageFiles": [
@@ -30,5 +30,12 @@
"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": []
+ "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.Application/bin/Debug/net7.0/DigitalData.Core.Application.deps.json b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.deps.json
index ca8a173..ec43b1f 100644
--- 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
@@ -9,13 +9,14 @@
"DigitalData.Core.Application/1.0.0": {
"dependencies": {
"AutoMapper": "13.0.1",
- "DigitalData.Core.Contracts": "1.0.0",
"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"
+ "System.Security.Cryptography.Cng": "5.0.0",
+ "WebCore.Contracts": "1.0.1",
+ "DigitalData.Core.Contracts": "1.0.1.0"
},
"runtime": {
"DigitalData.Core.Application.dll": {}
@@ -396,7 +397,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "7.0.0",
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
@@ -407,6 +408,14 @@
"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"
+ }
+ }
}
}
},
@@ -619,10 +628,15 @@
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "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
index 7f630ea..5f486f4 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.dll 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
index a564b8f..26c8411 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Application.pdb 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
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.dll 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
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Application/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Application/bin/Debug/net7.0/icon.png b/DigitalData.Core.Application/bin/Debug/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Application/bin/Debug/net7.0/icon.png differ
diff --git a/DigitalData.Core.Application/bin/Release/DigitalData.Core.Application.1.0.0.nupkg b/DigitalData.Core.Application/bin/Release/DigitalData.Core.Application.1.0.0.nupkg
new file mode 100644
index 0000000..40a9821
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/DigitalData.Core.Application.1.0.0.nupkg differ
diff --git a/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.deps.json b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.deps.json
new file mode 100644
index 0000000..ec43b1f
--- /dev/null
+++ b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.deps.json
@@ -0,0 +1,642 @@
+{
+ "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/Release/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.dll
new file mode 100644
index 0000000..dcab12a
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.pdb
new file mode 100644
index 0000000..7de8912
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Application.pdb differ
diff --git a/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..49926ec
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.pdb
new file mode 100644
index 0000000..f6347d7
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Application/bin/Release/net7.0/icon.png b/DigitalData.Core.Application/bin/Release/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Application/bin/Release/net7.0/icon.png differ
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 3de3b06..7e0941d 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
index b907673..594f355 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache differ
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..d09c64a 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,6 +45,7 @@ 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\icon.png
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
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
index 7f630ea..5f486f4 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.dll 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
index a564b8f..26c8411 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb and b/DigitalData.Core.Application/obj/Debug/net7.0/DigitalData.Core.Application.pdb 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
index 3b640e0..a06010f 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/ref/DigitalData.Core.Application.dll 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
index 3b640e0..a06010f 100644
Binary files a/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll and b/DigitalData.Core.Application/obj/Debug/net7.0/refint/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/DigitalData.Core.Application.csproj.nuget.dgspec.json b/DigitalData.Core.Application/obj/DigitalData.Core.Application.csproj.nuget.dgspec.json
index 394f504..7c78ad5 100644
--- a/DigitalData.Core.Application/obj/DigitalData.Core.Application.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.Application/obj/DigitalData.Core.Application.csproj.nuget.dgspec.json
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -105,10 +106,10 @@
}
},
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -133,6 +134,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.Application/obj/Release/DigitalData.Core.Application.1.0.0.nuspec b/DigitalData.Core.Application/obj/Release/DigitalData.Core.Application.1.0.0.nuspec
new file mode 100644
index 0000000..1a65158
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/DigitalData.Core.Application.1.0.0.nuspec
@@ -0,0 +1,25 @@
+
+
+
+ DigitalData.Core.Application
+ 1.0.0
+ DigitalData.Core.Application
+ Package Description
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Application/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalD.553292A0.Up2Date b/DigitalData.Core.Application/obj/Release/net7.0/DigitalD.553292A0.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.AssemblyInfo.cs b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.AssemblyInfo.cs
new file mode 100644
index 0000000..ec065f5
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.Application")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+82da3586a5e28ae5fbd4242f05f60f9e5327e5f2")]
+[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/Release/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..a125502
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+7fd24cdeb8bda1c95d6354d38f1aa5d605dcfbd4182684332a8fe63df25f10bc
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..84d3be6
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+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\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GlobalUsings.g.cs b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.assets.cache b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.assets.cache
new file mode 100644
index 0000000..eb74019
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.assets.cache differ
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0a7d2fd
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..ea29b43
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+efb6a18662ffe4848a4883610b82bf9126376ab578f7a4cd62a1b8c356d18bc4
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..ffd149c
--- /dev/null
+++ b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.csproj.FileListAbsolute.txt
@@ -0,0 +1,16 @@
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Application.deps.json
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Application.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Application.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Contracts.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.csproj.AssemblyReference.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.GeneratedMSBuildEditorConfig.editorconfig
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.AssemblyInfoInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.AssemblyInfo.cs
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.csproj.CoreCompileInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalD.553292A0.Up2Date
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\refint\DigitalData.Core.Application.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\DigitalData.Core.Application.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\obj\Release\net7.0\ref\DigitalData.Core.Application.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\icon.png
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.dll
new file mode 100644
index 0000000..dcab12a
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.pdb b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.pdb
new file mode 100644
index 0000000..7de8912
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/DigitalData.Core.Application.pdb differ
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/ref/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Release/net7.0/ref/DigitalData.Core.Application.dll
new file mode 100644
index 0000000..617dd62
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/ref/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/Release/net7.0/refint/DigitalData.Core.Application.dll b/DigitalData.Core.Application/obj/Release/net7.0/refint/DigitalData.Core.Application.dll
new file mode 100644
index 0000000..617dd62
Binary files /dev/null and b/DigitalData.Core.Application/obj/Release/net7.0/refint/DigitalData.Core.Application.dll differ
diff --git a/DigitalData.Core.Application/obj/project.assets.json b/DigitalData.Core.Application/obj/project.assets.json
index bb4a4d6..3c17ec1 100644
--- a/DigitalData.Core.Application/obj/project.assets.json
+++ b/DigitalData.Core.Application/obj/project.assets.json
@@ -579,7 +579,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v7.0",
"dependencies": {
@@ -590,10 +590,10 @@
"System.IdentityModel.Tokens.Jwt": "7.5.1"
},
"compile": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
},
"runtime": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
}
}
}
@@ -1485,7 +1485,7 @@
"useSharedDesignerContext.txt"
]
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
@@ -1494,13 +1494,13 @@
"projectFileDependencyGroups": {
"net7.0": [
"AutoMapper >= 13.0.1",
- "DigitalData.Core.Contracts >= 1.0.0",
"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"
+ "System.Security.Cryptography.Cng >= 5.0.0",
+ "WebCore.Contracts >= 1.0.1"
]
},
"packageFolders": {
@@ -1538,6 +1538,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -1608,5 +1609,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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.Application/obj/project.nuget.cache b/DigitalData.Core.Application/obj/project.nuget.cache
index aeb5cad..66f722a 100644
--- a/DigitalData.Core.Application/obj/project.nuget.cache
+++ b/DigitalData.Core.Application/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "Ng655q2G++xx7UIt9gr/OWTyrrPAc0GMA1Zk3E9z5lalMZ+0ws2D/LN+jWmxYyLvAX9/sl6jPsWi+zpfE5P1Zg==",
+ "dgSpecHash": "Qyy0ewwX8b7BiqESSzh2Ry+6wOCVtTdArIjIXLb/4jI8jc7qKyoxNQrtrO0Gs5rATfA0WGd8VD4I03sDyI89NA==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Application\\DigitalData.Core.Application.csproj",
"expectedPackageFiles": [
@@ -34,5 +34,12 @@
"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": []
+ "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/DigitalData.Core.Contracts.csproj b/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj
index e05b40a..ed3c3fa 100644
--- a/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj
+++ b/DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj
@@ -1,17 +1,33 @@
-
- net7.0
- enable
- enable
-
+
+ net7.0
+ enable
+ enable
+
+ WebCore.Contracts
+ 1.0.1
+ Hakan Tek
+ Digital Data
+ DigitalData.Core.Contracts
+ The interfaces of DigitalData.Core projects.
+ data-management;interfaces
+ icon.png
+
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
-
+
+
+ PreserveNewest
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/bin/Debug/WebCore.Contracts.1.0.1.nupkg b/DigitalData.Core.Contracts/bin/Debug/WebCore.Contracts.1.0.1.nupkg
new file mode 100644
index 0000000..b7d5853
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Debug/WebCore.Contracts.1.0.1.nupkg differ
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
index 5105148..28651fc 100644
--- 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
@@ -6,7 +6,7 @@
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
- "DigitalData.Core.Contracts/1.0.0": {
+ "DigitalData.Core.Contracts/1.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "7.0.0",
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
@@ -342,7 +342,7 @@
}
},
"libraries": {
- "DigitalData.Core.Contracts/1.0.0": {
+ "DigitalData.Core.Contracts/1.0.1": {
"type": "project",
"serviceable": false,
"sha512": ""
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
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Contracts/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/bin/Debug/net7.0/icon.png b/DigitalData.Core.Contracts/bin/Debug/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Debug/net7.0/icon.png differ
diff --git a/DigitalData.Core.Contracts/bin/Release/WebCore.Contracts.1.0.0.nupkg b/DigitalData.Core.Contracts/bin/Release/WebCore.Contracts.1.0.0.nupkg
new file mode 100644
index 0000000..89301e2
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Release/WebCore.Contracts.1.0.0.nupkg differ
diff --git a/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.deps.json b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.deps.json
new file mode 100644
index 0000000..d92bc2e
--- /dev/null
+++ b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.deps.json
@@ -0,0 +1,512 @@
+{
+ "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/Release/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..49926ec
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.pdb
new file mode 100644
index 0000000..f6347d7
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Release/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/bin/Release/net7.0/icon.png b/DigitalData.Core.Contracts/bin/Release/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Contracts/bin/Release/net7.0/icon.png differ
diff --git a/DigitalData.Core.Contracts/icon.png b/DigitalData.Core.Contracts/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Contracts/icon.png differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/WebCore.Contracts.1.0.1.nuspec b/DigitalData.Core.Contracts/obj/Debug/WebCore.Contracts.1.0.1.nuspec
new file mode 100644
index 0000000..0e264d8
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Debug/WebCore.Contracts.1.0.1.nuspec
@@ -0,0 +1,24 @@
+
+
+
+ WebCore.Contracts
+ 1.0.1
+ Hakan Tek
+ icon.png
+ The interfaces of DigitalData.Core projects.
+ data-management interfaces
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
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
index ee3cb87..7a4856e 100644
--- 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
@@ -11,13 +11,14 @@
using System;
using System.Reflection;
-[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.Contracts")]
+[assembly: System.Reflection.AssemblyCompanyAttribute("Digital Data")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
-[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
-[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[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.0.0")]
+[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
index 1f9fcd4..72bf5bd 100644
--- 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
@@ -1 +1 @@
-06ec6b8e37e720c08a2d2c89dcb041839b30e345
+a02e6c7e1e3f519a3498e0e732665b8cbb10eaa5
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 2bb730b..c978ba1 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
index a845641..1141ac5 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt
index 4e6bdd9..ac861d0 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,6 +34,7 @@ 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\icon.png
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
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
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Contracts/obj/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll
index c248cb3..5f3b68a 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/ref/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll
index c248cb3..5f3b68a 100644
Binary files a/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Contracts/obj/Debug/net7.0/refint/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json
index c37f800..aefa6f1 100644
--- a/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.Contracts/obj/DigitalData.Core.Contracts.csproj.nuget.dgspec.json
@@ -5,10 +5,10 @@
},
"projects": {
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.0.nuspec b/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.0.nuspec
new file mode 100644
index 0000000..c7d28bf
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.0.nuspec
@@ -0,0 +1,23 @@
+
+
+
+ WebCore.Contracts
+ 1.0.0
+ Hakan Tek
+ The interfaces of DigitalData.Core projects.
+ data-management interfaces
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.1.nuspec b/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.1.nuspec
new file mode 100644
index 0000000..ef13e2e
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/WebCore.Contracts.1.0.1.nuspec
@@ -0,0 +1,25 @@
+
+
+
+ WebCore.Contracts
+ 1.0.1
+ Hakan Tek
+ icon.png
+ The interfaces of DigitalData.Core projects.
+ data-management interfaces
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/obj/Release/YourPackageName.1.0.0.nuspec b/DigitalData.Core.Contracts/obj/Release/YourPackageName.1.0.0.nuspec
new file mode 100644
index 0000000..6b549ec
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/YourPackageName.1.0.0.nuspec
@@ -0,0 +1,23 @@
+
+
+
+ YourPackageName
+ 1.0.0
+ Hakan Tek
+ The interfaces of DigitalData.Core projects.
+ data-management interfaces
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Contracts/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs
new file mode 100644
index 0000000..50511b3
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Digital Data")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[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+82da3586a5e28ae5fbd4242f05f60f9e5327e5f2")]
+[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/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..4ad870e
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+67eed8e486ad8cc100aa877b8e2de3753411edbcab6dc19b2cab9976d7aeed44
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..d820198
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+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\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GlobalUsings.g.cs b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.assets.cache b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.assets.cache
new file mode 100644
index 0000000..b83bee0
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.assets.cache differ
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..c9d821f
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c9a3ad3
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+50de9f7d3c1b480cb044dac5fd55004f68ae502a937a09ac85e539d84e2dece2
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..04e0b4a
--- /dev/null
+++ b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.csproj.FileListAbsolute.txt
@@ -0,0 +1,13 @@
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.deps.json
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.csproj.AssemblyReference.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.GeneratedMSBuildEditorConfig.editorconfig
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.AssemblyInfoInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.AssemblyInfo.cs
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.csproj.CoreCompileInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\refint\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\DigitalData.Core.Contracts.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\obj\Release\net7.0\ref\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\icon.png
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..49926ec
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.pdb
new file mode 100644
index 0000000..f6347d7
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/ref/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Release/net7.0/ref/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..610996e
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/ref/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/Release/net7.0/refint/DigitalData.Core.Contracts.dll b/DigitalData.Core.Contracts/obj/Release/net7.0/refint/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..610996e
Binary files /dev/null and b/DigitalData.Core.Contracts/obj/Release/net7.0/refint/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Contracts/obj/project.assets.json b/DigitalData.Core.Contracts/obj/project.assets.json
index 36491b0..fae79e3 100644
--- a/DigitalData.Core.Contracts/obj/project.assets.json
+++ b/DigitalData.Core.Contracts/obj/project.assets.json
@@ -1172,10 +1172,10 @@
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -1200,6 +1200,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -1258,5 +1259,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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/obj/project.nuget.cache b/DigitalData.Core.Contracts/obj/project.nuget.cache
index 6529ddf..d206303 100644
--- a/DigitalData.Core.Contracts/obj/project.nuget.cache
+++ b/DigitalData.Core.Contracts/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "MJak/wF87O8jctXDBliFCDEV1b4AZ+6n8aneQfBwac8XYH5vNf4HdOPN3fQcVVm38xUbIsmTGnc7nwFeCXE52g==",
+ "dgSpecHash": "02U0PR8NBcnoVyCOtS355+ca1hy+m5C6Df5RJqFK+V7XcnKKCTV0gnsDepsjsHAzFssdetEStzxtBkXRCHqiVw==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"expectedPackageFiles": [
@@ -28,5 +28,12 @@
"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": []
+ "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
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.deps.json
index ce41d36..db86e2d 100644
--- 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
@@ -8,8 +8,9 @@
".NETCoreApp,Version=v7.0": {
"DigitalData.Core.CultureServices/1.0.0": {
"dependencies": {
- "DigitalData.Core.Contracts": "1.0.0",
- "Microsoft.Extensions.Localization": "7.0.16"
+ "Microsoft.Extensions.Localization": "7.0.16",
+ "WebCore.Contracts": "1.0.1",
+ "DigitalData.Core.Contracts": "1.0.1.0"
},
"runtime": {
"DigitalData.Core.CultureServices.dll": {}
@@ -358,7 +359,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "7.0.0",
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
@@ -369,6 +370,14 @@
"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"
+ }
+ }
}
}
},
@@ -553,10 +562,15 @@
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "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
index 1981dc1..316db3e 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb
index 5ee4a19..4f49233 100644
Binary files a/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.CultureServices/bin/Debug/net7.0/icon.png b/DigitalData.Core.CultureServices/bin/Debug/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Debug/net7.0/icon.png differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/DigitalData.Core.CultureServices.1.0.0.nupkg b/DigitalData.Core.CultureServices/bin/Release/DigitalData.Core.CultureServices.1.0.0.nupkg
new file mode 100644
index 0000000..6ca2afd
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/DigitalData.Core.CultureServices.1.0.0.nupkg differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..49926ec
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.pdb
new file mode 100644
index 0000000..f6347d7
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.deps.json b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.deps.json
new file mode 100644
index 0000000..642d748
--- /dev/null
+++ b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.deps.json
@@ -0,0 +1,576 @@
+{
+ "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/Release/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.dll
new file mode 100644
index 0000000..995db1f
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.pdb
new file mode 100644
index 0000000..f2ea3dc
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.CultureServices/bin/Release/net7.0/icon.png b/DigitalData.Core.CultureServices/bin/Release/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.CultureServices/bin/Release/net7.0/icon.png differ
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 54a6a3b..b2400c9 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
index 4a0139f..7a9ee36 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt
index 6ced654..1b5440d 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,6 +43,7 @@ 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\icon.png
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
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
index 1981dc1..316db3e 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb
index 5ee4a19..4f49233 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll
index 7ee42cf..05bb92c 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/ref/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll
index 7ee42cf..05bb92c 100644
Binary files a/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll and b/DigitalData.Core.CultureServices/obj/Debug/net7.0/refint/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json
index b8e96f4..504db03 100644
--- a/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.CultureServices/obj/DigitalData.Core.CultureServices.csproj.nuget.dgspec.json
@@ -5,10 +5,10 @@
},
"projects": {
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -121,6 +122,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.CultureServices/obj/Release/DigitalData.Core.CultureServices.1.0.0.nuspec b/DigitalData.Core.CultureServices/obj/Release/DigitalData.Core.CultureServices.1.0.0.nuspec
new file mode 100644
index 0000000..1d5db6c
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/DigitalData.Core.CultureServices.1.0.0.nuspec
@@ -0,0 +1,19 @@
+
+
+
+ DigitalData.Core.CultureServices
+ 1.0.0
+ DigitalData.Core.CultureServices
+ Package Description
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.CultureServices/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalD.489AA3D4.Up2Date b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalD.489AA3D4.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs
new file mode 100644
index 0000000..592892b
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.CultureServices")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+82da3586a5e28ae5fbd4242f05f60f9e5327e5f2")]
+[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/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..e998029
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+20db819e4979be9dc844efcd6f693dcb34c96eb5d3cf949e5e5683b5681e6999
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..b3b83e8
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+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\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GlobalUsings.g.cs b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.assets.cache b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.assets.cache
new file mode 100644
index 0000000..2841aee
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.assets.cache differ
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..1a1eacc
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..c814d1d
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+36fef0fd26a832d2188715455582d92b1504d333459c8ca9de1908bace5726e0
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..275b799
--- /dev/null
+++ b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.csproj.FileListAbsolute.txt
@@ -0,0 +1,16 @@
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\DigitalData.Core.CultureServices.deps.json
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\DigitalData.Core.CultureServices.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\DigitalData.Core.CultureServices.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\DigitalData.Core.Contracts.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.csproj.AssemblyReference.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.GeneratedMSBuildEditorConfig.editorconfig
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.AssemblyInfoInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.AssemblyInfo.cs
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.csproj.CoreCompileInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalD.489AA3D4.Up2Date
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\refint\DigitalData.Core.CultureServices.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\DigitalData.Core.CultureServices.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\obj\Release\net7.0\ref\DigitalData.Core.CultureServices.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.CultureServices\bin\Release\net7.0\icon.png
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.dll
new file mode 100644
index 0000000..995db1f
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.pdb b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.pdb
new file mode 100644
index 0000000..f2ea3dc
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/DigitalData.Core.CultureServices.pdb differ
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/ref/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Release/net7.0/ref/DigitalData.Core.CultureServices.dll
new file mode 100644
index 0000000..572f219
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/ref/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/Release/net7.0/refint/DigitalData.Core.CultureServices.dll b/DigitalData.Core.CultureServices/obj/Release/net7.0/refint/DigitalData.Core.CultureServices.dll
new file mode 100644
index 0000000..572f219
Binary files /dev/null and b/DigitalData.Core.CultureServices/obj/Release/net7.0/refint/DigitalData.Core.CultureServices.dll differ
diff --git a/DigitalData.Core.CultureServices/obj/project.assets.json b/DigitalData.Core.CultureServices/obj/project.assets.json
index ef9a586..6e40fa5 100644
--- a/DigitalData.Core.CultureServices/obj/project.assets.json
+++ b/DigitalData.Core.CultureServices/obj/project.assets.json
@@ -499,7 +499,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v7.0",
"dependencies": {
@@ -510,10 +510,10 @@
"System.IdentityModel.Tokens.Jwt": "7.5.1"
},
"compile": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
},
"runtime": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
}
}
}
@@ -1242,7 +1242,7 @@
"useSharedDesignerContext.txt"
]
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
@@ -1250,8 +1250,8 @@
},
"projectFileDependencyGroups": {
"net7.0": [
- "DigitalData.Core.Contracts >= 1.0.0",
- "Microsoft.Extensions.Localization >= 7.0.16"
+ "Microsoft.Extensions.Localization >= 7.0.16",
+ "WebCore.Contracts >= 1.0.1"
]
},
"packageFolders": {
@@ -1289,6 +1289,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -1335,5 +1336,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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/obj/project.nuget.cache b/DigitalData.Core.CultureServices/obj/project.nuget.cache
index 477e2cd..ffd17f7 100644
--- a/DigitalData.Core.CultureServices/obj/project.nuget.cache
+++ b/DigitalData.Core.CultureServices/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "wEB4z1LC1hayBGU8Pejx4dmLiKnJ/u+TcI5jyyHHLCO6lfLmBZU6Dmgv91ZTA8gZnjfIQH4RXrZfFkmUgRCE9w==",
+ "dgSpecHash": "LnEbXTKol+ItknIOkltLRQjYYsTRbx4L1MenlpGFqiAJDmykJWQ+ZPLnd8KK4Ju/B3GurS6Zdx6iF34xYZyYwQ==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.CultureServices\\DigitalData.Core.CultureServices.csproj",
"expectedPackageFiles": [
@@ -30,5 +30,12 @@
"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": []
+ "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
index fc7fff9..3c1ed15 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.dll 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
index 26e5b79..65c7956 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Contracts.pdb 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
index 6acd918..0e8dd0b 100644
--- 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
@@ -8,8 +8,9 @@
".NETCoreApp,Version=v7.0": {
"DigitalData.Core.Infrastructure/1.0.0": {
"dependencies": {
- "DigitalData.Core.Contracts": "1.0.0",
- "Microsoft.EntityFrameworkCore": "7.0.16"
+ "Microsoft.EntityFrameworkCore": "7.0.16",
+ "WebCore.Contracts": "1.0.1",
+ "DigitalData.Core.Contracts": "1.0.1.0"
},
"runtime": {
"DigitalData.Core.Infrastructure.dll": {}
@@ -385,7 +386,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"dependencies": {
"Microsoft.Extensions.Caching.Memory": "7.0.0",
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
@@ -396,6 +397,14 @@
"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"
+ }
+ }
}
}
},
@@ -601,10 +610,15 @@
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "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
index 9fe7fc2..c9da45b 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.dll 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
index aa79000..8822128 100644
Binary files a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/DigitalData.Core.Infrastructure.pdb differ
diff --git a/DigitalData.Core.Infrastructure/bin/Debug/net7.0/icon.png b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Debug/net7.0/icon.png differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/DigitalData.Core.Infrastructure.1.0.0.nupkg b/DigitalData.Core.Infrastructure/bin/Release/DigitalData.Core.Infrastructure.1.0.0.nupkg
new file mode 100644
index 0000000..0c3aaec
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/DigitalData.Core.Infrastructure.1.0.0.nupkg differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.dll b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.dll
new file mode 100644
index 0000000..49926ec
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.dll differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.pdb b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.pdb
new file mode 100644
index 0000000..f6347d7
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Contracts.pdb differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.deps.json b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.deps.json
new file mode 100644
index 0000000..0e8dd0b
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.deps.json
@@ -0,0 +1,624 @@
+{
+ "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/Release/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.dll
new file mode 100644
index 0000000..d447c9c
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.pdb
new file mode 100644
index 0000000..65b0446
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/net7.0/DigitalData.Core.Infrastructure.pdb differ
diff --git a/DigitalData.Core.Infrastructure/bin/Release/net7.0/icon.png b/DigitalData.Core.Infrastructure/bin/Release/net7.0/icon.png
new file mode 100644
index 0000000..9c67cca
Binary files /dev/null and b/DigitalData.Core.Infrastructure/bin/Release/net7.0/icon.png differ
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 563978f..cdf0b22 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
index a4ee681..4cdbd6c 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache differ
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..711fbcf 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,6 +43,7 @@ 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\icon.png
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
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
index 9fe7fc2..c9da45b 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.dll 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
index aa79000..8822128 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/DigitalData.Core.Infrastructure.pdb 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
index b77fe81..d1e62a8 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/ref/DigitalData.Core.Infrastructure.dll 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
index b77fe81..d1e62a8 100644
Binary files a/DigitalData.Core.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.Infrastructure.dll and b/DigitalData.Core.Infrastructure/obj/Debug/net7.0/refint/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/obj/DigitalData.Core.Infrastructure.csproj.nuget.dgspec.json b/DigitalData.Core.Infrastructure/obj/DigitalData.Core.Infrastructure.csproj.nuget.dgspec.json
index 6359cbf..680751e 100644
--- a/DigitalData.Core.Infrastructure/obj/DigitalData.Core.Infrastructure.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.Infrastructure/obj/DigitalData.Core.Infrastructure.csproj.nuget.dgspec.json
@@ -5,10 +5,10 @@
},
"projects": {
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
- "version": "1.0.0",
+ "version": "1.0.1",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
- "projectName": "DigitalData.Core.Contracts",
+ "projectName": "WebCore.Contracts",
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -121,6 +122,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.Infrastructure/obj/Release/DigitalData.Core.Infrastructure.1.0.0.nuspec b/DigitalData.Core.Infrastructure/obj/Release/DigitalData.Core.Infrastructure.1.0.0.nuspec
new file mode 100644
index 0000000..5fe361c
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/DigitalData.Core.Infrastructure.1.0.0.nuspec
@@ -0,0 +1,19 @@
+
+
+
+ DigitalData.Core.Infrastructure
+ 1.0.0
+ DigitalData.Core.Infrastructure
+ Package Description
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/DigitalData.Core.Infrastructure/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalD.06C750E1.Up2Date b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalD.06C750E1.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs
new file mode 100644
index 0000000..c294251
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfo.cs
@@ -0,0 +1,22 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.Infrastructure")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+82da3586a5e28ae5fbd4242f05f60f9e5327e5f2")]
+[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/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..8695dfc
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+6738b34e4f5659ee659fe42a02e4ddf2ce340d47b49f21eed1553c7e468edff2
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..f9b9776
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,13 @@
+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\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GlobalUsings.g.cs b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GlobalUsings.g.cs
new file mode 100644
index 0000000..8578f3d
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.IO;
+global using global::System.Linq;
+global using global::System.Net.Http;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.assets.cache b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.assets.cache
new file mode 100644
index 0000000..c1be01e
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.assets.cache differ
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..39ebb33
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache differ
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..76e6d01
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+766b21341db897510efc63568829df6496c48b6754ca4abf7a8c3aa11e01efcf
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..e014a3b
--- /dev/null
+++ b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.csproj.FileListAbsolute.txt
@@ -0,0 +1,16 @@
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\DigitalData.Core.Infrastructure.deps.json
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\DigitalData.Core.Infrastructure.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\DigitalData.Core.Infrastructure.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\DigitalData.Core.Contracts.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\DigitalData.Core.Contracts.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.csproj.AssemblyReference.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.GeneratedMSBuildEditorConfig.editorconfig
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.AssemblyInfoInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.AssemblyInfo.cs
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.csproj.CoreCompileInputs.cache
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalD.06C750E1.Up2Date
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\refint\DigitalData.Core.Infrastructure.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\DigitalData.Core.Infrastructure.pdb
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\obj\Release\net7.0\ref\DigitalData.Core.Infrastructure.dll
+E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Infrastructure\bin\Release\net7.0\icon.png
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.dll
new file mode 100644
index 0000000..d447c9c
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.pdb b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.pdb
new file mode 100644
index 0000000..65b0446
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/DigitalData.Core.Infrastructure.pdb differ
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/ref/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Release/net7.0/ref/DigitalData.Core.Infrastructure.dll
new file mode 100644
index 0000000..4471660
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/ref/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/obj/Release/net7.0/refint/DigitalData.Core.Infrastructure.dll b/DigitalData.Core.Infrastructure/obj/Release/net7.0/refint/DigitalData.Core.Infrastructure.dll
new file mode 100644
index 0000000..4471660
Binary files /dev/null and b/DigitalData.Core.Infrastructure/obj/Release/net7.0/refint/DigitalData.Core.Infrastructure.dll differ
diff --git a/DigitalData.Core.Infrastructure/obj/project.assets.json b/DigitalData.Core.Infrastructure/obj/project.assets.json
index 5b11da2..34bf459 100644
--- a/DigitalData.Core.Infrastructure/obj/project.assets.json
+++ b/DigitalData.Core.Infrastructure/obj/project.assets.json
@@ -553,7 +553,7 @@
}
}
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"framework": ".NETCoreApp,Version=v7.0",
"dependencies": {
@@ -564,10 +564,10 @@
"System.IdentityModel.Tokens.Jwt": "7.5.1"
},
"compile": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
},
"runtime": {
- "bin/placeholder/DigitalData.Core.Contracts.dll": {}
+ "bin/placeholder/WebCore.Contracts.dll": {}
}
}
}
@@ -1359,7 +1359,7 @@
"useSharedDesignerContext.txt"
]
},
- "DigitalData.Core.Contracts/1.0.0": {
+ "WebCore.Contracts/1.0.1": {
"type": "project",
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
@@ -1367,8 +1367,8 @@
},
"projectFileDependencyGroups": {
"net7.0": [
- "DigitalData.Core.Contracts >= 1.0.0",
- "Microsoft.EntityFrameworkCore >= 7.0.16"
+ "Microsoft.EntityFrameworkCore >= 7.0.16",
+ "WebCore.Contracts >= 1.0.1"
]
},
"packageFolders": {
@@ -1406,6 +1406,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -1452,5 +1453,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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/obj/project.nuget.cache b/DigitalData.Core.Infrastructure/obj/project.nuget.cache
index 9797901..fc157e0 100644
--- a/DigitalData.Core.Infrastructure/obj/project.nuget.cache
+++ b/DigitalData.Core.Infrastructure/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "4McD/eJuMzdrmhw/QNZ73xuIZY6zS1EbCJa9B7TnWehcknTdluToJPXRYYwXPJAxoqJXD8eTHXkFLHDoXFIXNA==",
+ "dgSpecHash": "5qUwo8zAbWVacBGEqNmTmJUDNCMRbarNbAuEw8hetOs7TEp+YmgyTXvm6yB/RdXtncEwbwklXmwR8/2gmz1GyA==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Infrastructure\\DigitalData.Core.Infrastructure.csproj",
"expectedPackageFiles": [
@@ -33,5 +33,12 @@
"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": []
+ "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/DigitalData.Core.Tests.dll b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll
index e286cc8..2ee3c59 100644
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.dll differ
diff --git a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb
index 1af64f0..40ae8b4 100644
Binary files a/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb and b/DigitalData.Core.Tests/bin/Debug/net7.0/DigitalData.Core.Tests.pdb differ
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 64da0cb..a00de21 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.dll b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll
index e286cc8..2ee3c59 100644
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.dll differ
diff --git a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb
index 1af64f0..40ae8b4 100644
Binary files a/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb and b/DigitalData.Core.Tests/obj/Debug/net7.0/DigitalData.Core.Tests.pdb differ
diff --git a/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json
index 83315df..a7cb5f8 100644
--- a/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json
+++ b/DigitalData.Core.Tests/obj/DigitalData.Core.Tests.csproj.nuget.dgspec.json
@@ -33,6 +33,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
diff --git a/DigitalData.Core.Tests/obj/project.assets.json b/DigitalData.Core.Tests/obj/project.assets.json
index ea8b589..1f01a52 100644
--- a/DigitalData.Core.Tests/obj/project.assets.json
+++ b/DigitalData.Core.Tests/obj/project.assets.json
@@ -4130,6 +4130,7 @@
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
+ "http://localhost:5000/v3/index.json": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
@@ -4192,5 +4193,13 @@
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
- }
+ },
+ "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/obj/project.nuget.cache b/DigitalData.Core.Tests/obj/project.nuget.cache
index a658e4e..8ac7dab 100644
--- a/DigitalData.Core.Tests/obj/project.nuget.cache
+++ b/DigitalData.Core.Tests/obj/project.nuget.cache
@@ -1,6 +1,6 @@
{
"version": 2,
- "dgSpecHash": "LEpCOwGmrqSiQwx2CNeaKz7Z0tEEW8ZCwRnEkhIp5Nw0NZTgsDozjU3mXkBxJ+S6yx/DzGUgHuHd8rvxUllmEw==",
+ "dgSpecHash": "xTGpZ2U2zE+QXg7jUU0GFlSL7CR3Mu2EFXtu7DijgdM2aMTKt9zgEIAuM69jrrIYih32F9uw43EioiyuvEh7yw==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Tests\\DigitalData.Core.Tests.csproj",
"expectedPackageFiles": [
@@ -55,5 +55,12 @@
"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": []
+ "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/nupkg/DigitalData.Core.Application.1.0.0.nupkg b/nupkg/DigitalData.Core.Application.1.0.0.nupkg
new file mode 100644
index 0000000..14456d4
Binary files /dev/null and b/nupkg/DigitalData.Core.Application.1.0.0.nupkg differ
diff --git a/nupkg/DigitalData.Core.CultureServices.1.0.0.nupkg b/nupkg/DigitalData.Core.CultureServices.1.0.0.nupkg
new file mode 100644
index 0000000..f44ada2
Binary files /dev/null and b/nupkg/DigitalData.Core.CultureServices.1.0.0.nupkg differ
diff --git a/nupkg/DigitalData.Core.Infrastructure.1.0.0.nupkg b/nupkg/DigitalData.Core.Infrastructure.1.0.0.nupkg
new file mode 100644
index 0000000..044c8ab
Binary files /dev/null and b/nupkg/DigitalData.Core.Infrastructure.1.0.0.nupkg differ
diff --git a/nupkg/WebCore.Contracts.1.0.0.nupkg b/nupkg/WebCore.Contracts.1.0.0.nupkg
new file mode 100644
index 0000000..6e1766d
Binary files /dev/null and b/nupkg/WebCore.Contracts.1.0.0.nupkg differ
diff --git a/nupkg/WebCore.Contracts.1.0.1.nupkg b/nupkg/WebCore.Contracts.1.0.1.nupkg
new file mode 100644
index 0000000..41c9a66
Binary files /dev/null and b/nupkg/WebCore.Contracts.1.0.1.nupkg differ