Configure project for NuGet packaging and implement WithData for chainable ViewData updates
This commit is contained in:
parent
82da3586a5
commit
217f4049db
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
26
DigitalData.Core.API/ControllerExtensions.cs
Normal file
26
DigitalData.Core.API/ControllerExtensions.cs
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace DigitalData.Core.API
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Provides extension methods for controllers in ASP.NET Core applications.
|
||||||
|
/// This class is designed to enhance the functionality of <see cref="Controller"/>, <see cref="ControllerBase"/>,
|
||||||
|
/// and their related results such as <see cref="ViewResult"/>.
|
||||||
|
/// </summary>
|
||||||
|
public static class ControllerExtensions
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// 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.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="viewResult">The ViewResult to which ViewData will be added or updated.</param>
|
||||||
|
/// <param name="index">The key in the ViewData dictionary where the value will be stored.</param>
|
||||||
|
/// <param name="value">The value to be stored in the ViewData dictionary.</param>
|
||||||
|
/// <returns>The same ViewResult object with updated ViewData, allowing for additional chained operations.</returns>
|
||||||
|
public static ViewResult WithData(this ViewResult viewResult, string index, object value)
|
||||||
|
{
|
||||||
|
viewResult.ViewData[index] = value;
|
||||||
|
return viewResult;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -8,8 +8,9 @@
|
|||||||
".NETCoreApp,Version=v7.0": {
|
".NETCoreApp,Version=v7.0": {
|
||||||
"DigitalData.Core.API/1.0.0": {
|
"DigitalData.Core.API/1.0.0": {
|
||||||
"dependencies": {
|
"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": {
|
"runtime": {
|
||||||
"DigitalData.Core.API.dll": {}
|
"DigitalData.Core.API.dll": {}
|
||||||
@ -283,7 +284,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
||||||
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
||||||
@ -294,6 +295,14 @@
|
|||||||
"runtime": {
|
"runtime": {
|
||||||
"DigitalData.Core.Contracts.dll": {}
|
"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",
|
"path": "system.windows.extensions/7.0.0",
|
||||||
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
|
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"serviceable": false,
|
"serviceable": false,
|
||||||
"sha512": ""
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"DigitalData.Core.Contracts/1.0.1.0": {
|
||||||
|
"type": "reference",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
DigitalData.Core.API/bin/Debug/net7.0/icon.png
Normal file
BIN
DigitalData.Core.API/bin/Debug/net7.0/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
Binary file not shown.
@ -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\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\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\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.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.dll
|
||||||
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.pdb
|
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.API\bin\Debug\net7.0\DigitalData.Core.API.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -33,6 +33,7 @@
|
|||||||
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -84,10 +85,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
"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",
|
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
||||||
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
||||||
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
|
"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 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
|||||||
@ -508,7 +508,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"framework": ".NETCoreApp,Version=v7.0",
|
"framework": ".NETCoreApp,Version=v7.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -519,10 +519,10 @@
|
|||||||
"System.IdentityModel.Tokens.Jwt": "7.5.1"
|
"System.IdentityModel.Tokens.Jwt": "7.5.1"
|
||||||
},
|
},
|
||||||
"compile": {
|
"compile": {
|
||||||
"bin/placeholder/DigitalData.Core.Contracts.dll": {}
|
"bin/placeholder/WebCore.Contracts.dll": {}
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"bin/placeholder/DigitalData.Core.Contracts.dll": {}
|
"bin/placeholder/WebCore.Contracts.dll": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1271,7 +1271,7 @@
|
|||||||
"useSharedDesignerContext.txt"
|
"useSharedDesignerContext.txt"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
|
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
|
||||||
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
|
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
|
||||||
@ -1279,8 +1279,8 @@
|
|||||||
},
|
},
|
||||||
"projectFileDependencyGroups": {
|
"projectFileDependencyGroups": {
|
||||||
"net7.0": [
|
"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": {
|
"packageFolders": {
|
||||||
@ -1318,6 +1318,7 @@
|
|||||||
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -1367,5 +1368,13 @@
|
|||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
|
"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."
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "yXABE/TQcN7K37vYTbS+TsUQ8oyW2LVpuOff3GiYG62BFiV4GBbd1KQ0kR+mK3JdiQvv1VA+ceDHrEulQc4xtw==",
|
"dgSpecHash": "tndWnU7t4tnqatxEBQMDJJVorx0bTTuEtnpzgesjt88QGOK4Gg5UrovBlugBpr+iLZqUsOHwvR3sK+JGS4la/w==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.API\\DigitalData.Core.API.csproj",
|
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.API\\DigitalData.Core.API.csproj",
|
||||||
"expectedPackageFiles": [
|
"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.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512"
|
"C:\\Users\\tekh\\.nuget\\packages\\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."
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -9,13 +9,14 @@
|
|||||||
"DigitalData.Core.Application/1.0.0": {
|
"DigitalData.Core.Application/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"AutoMapper": "13.0.1",
|
"AutoMapper": "13.0.1",
|
||||||
"DigitalData.Core.Contracts": "1.0.0",
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions": "7.0.0",
|
"Microsoft.Extensions.Caching.Abstractions": "7.0.0",
|
||||||
"Microsoft.Extensions.Configuration": "7.0.0",
|
"Microsoft.Extensions.Configuration": "7.0.0",
|
||||||
"Microsoft.Extensions.Logging": "7.0.0",
|
"Microsoft.Extensions.Logging": "7.0.0",
|
||||||
"System.DirectoryServices.AccountManagement": "7.0.1",
|
"System.DirectoryServices.AccountManagement": "7.0.1",
|
||||||
"System.IdentityModel.Tokens.Jwt": "7.5.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": {
|
"runtime": {
|
||||||
"DigitalData.Core.Application.dll": {}
|
"DigitalData.Core.Application.dll": {}
|
||||||
@ -396,7 +397,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
||||||
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
||||||
@ -407,6 +408,14 @@
|
|||||||
"runtime": {
|
"runtime": {
|
||||||
"DigitalData.Core.Contracts.dll": {}
|
"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",
|
"path": "system.windows.extensions/7.0.0",
|
||||||
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
|
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"serviceable": false,
|
"serviceable": false,
|
||||||
"sha512": ""
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"DigitalData.Core.Contracts/1.0.1.0": {
|
||||||
|
"type": "reference",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
DigitalData.Core.Application/bin/Debug/net7.0/icon.png
Normal file
BIN
DigitalData.Core.Application/bin/Debug/net7.0/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
@ -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": ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
DigitalData.Core.Application/bin/Release/net7.0/icon.png
Normal file
BIN
DigitalData.Core.Application/bin/Release/net7.0/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
Binary file not shown.
@ -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\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\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\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.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.dll
|
||||||
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.pdb
|
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Debug\net7.0\DigitalData.Core.Application.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -33,6 +33,7 @@
|
|||||||
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -105,10 +106,10 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
"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",
|
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
||||||
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
||||||
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
|
"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 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
|||||||
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>DigitalData.Core.Application</id>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<authors>DigitalData.Core.Application</authors>
|
||||||
|
<description>Package Description</description>
|
||||||
|
<repository type="git" commit="82da3586a5e28ae5fbd4242f05f60f9e5327e5f2" />
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net7.0">
|
||||||
|
<dependency id="WebCore.Contracts" version="1.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="AutoMapper" version="13.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Caching.Abstractions" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Configuration" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Logging" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices.AccountManagement" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.IdentityModel.Tokens.Jwt" version="7.5.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.Security.Cryptography.Cng" version="5.0.0" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Application\bin\Release\net7.0\DigitalData.Core.Application.dll" target="lib\net7.0\DigitalData.Core.Application.dll" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
||||||
@ -0,0 +1,22 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
7fd24cdeb8bda1c95d6354d38f1aa5d605dcfbd4182684332a8fe63df25f10bc
|
||||||
@ -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 =
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
efb6a18662ffe4848a4883610b82bf9126376ab578f7a4cd62a1b8c356d18bc4
|
||||||
@ -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
|
||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -579,7 +579,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"framework": ".NETCoreApp,Version=v7.0",
|
"framework": ".NETCoreApp,Version=v7.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -590,10 +590,10 @@
|
|||||||
"System.IdentityModel.Tokens.Jwt": "7.5.1"
|
"System.IdentityModel.Tokens.Jwt": "7.5.1"
|
||||||
},
|
},
|
||||||
"compile": {
|
"compile": {
|
||||||
"bin/placeholder/DigitalData.Core.Contracts.dll": {}
|
"bin/placeholder/WebCore.Contracts.dll": {}
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"bin/placeholder/DigitalData.Core.Contracts.dll": {}
|
"bin/placeholder/WebCore.Contracts.dll": {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1485,7 +1485,7 @@
|
|||||||
"useSharedDesignerContext.txt"
|
"useSharedDesignerContext.txt"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"WebCore.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
|
"path": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj",
|
||||||
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
|
"msbuildProject": "../DigitalData.Core.Contracts/DigitalData.Core.Contracts.csproj"
|
||||||
@ -1494,13 +1494,13 @@
|
|||||||
"projectFileDependencyGroups": {
|
"projectFileDependencyGroups": {
|
||||||
"net7.0": [
|
"net7.0": [
|
||||||
"AutoMapper >= 13.0.1",
|
"AutoMapper >= 13.0.1",
|
||||||
"DigitalData.Core.Contracts >= 1.0.0",
|
|
||||||
"Microsoft.Extensions.Caching.Abstractions >= 7.0.0",
|
"Microsoft.Extensions.Caching.Abstractions >= 7.0.0",
|
||||||
"Microsoft.Extensions.Configuration >= 7.0.0",
|
"Microsoft.Extensions.Configuration >= 7.0.0",
|
||||||
"Microsoft.Extensions.Logging >= 7.0.0",
|
"Microsoft.Extensions.Logging >= 7.0.0",
|
||||||
"System.DirectoryServices.AccountManagement >= 7.0.1",
|
"System.DirectoryServices.AccountManagement >= 7.0.1",
|
||||||
"System.IdentityModel.Tokens.Jwt >= 7.5.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": {
|
"packageFolders": {
|
||||||
@ -1538,6 +1538,7 @@
|
|||||||
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
@ -1608,5 +1609,13 @@
|
|||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
|
"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."
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "Ng655q2G++xx7UIt9gr/OWTyrrPAc0GMA1Zk3E9z5lalMZ+0ws2D/LN+jWmxYyLvAX9/sl6jPsWi+zpfE5P1Zg==",
|
"dgSpecHash": "Qyy0ewwX8b7BiqESSzh2Ry+6wOCVtTdArIjIXLb/4jI8jc7qKyoxNQrtrO0Gs5rATfA0WGd8VD4I03sDyI89NA==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Application\\DigitalData.Core.Application.csproj",
|
"projectFilePath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Application\\DigitalData.Core.Application.csproj",
|
||||||
"expectedPackageFiles": [
|
"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.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512"
|
"C:\\Users\\tekh\\.nuget\\packages\\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."
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
@ -1,17 +1,33 @@
|
|||||||
<Project Sdk="Microsoft.NET.Sdk">
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<TargetFramework>net7.0</TargetFramework>
|
<TargetFramework>net7.0</TargetFramework>
|
||||||
<ImplicitUsings>enable</ImplicitUsings>
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
<Nullable>enable</Nullable>
|
<Nullable>enable</Nullable>
|
||||||
</PropertyGroup>
|
<!-- NuGet Package Metadata -->
|
||||||
|
<PackageId>WebCore.Contracts</PackageId>
|
||||||
|
<Version>1.0.1</Version>
|
||||||
|
<Authors>Hakan Tek</Authors>
|
||||||
|
<Company>Digital Data</Company>
|
||||||
|
<Product>DigitalData.Core.Contracts</Product>
|
||||||
|
<Description>The interfaces of DigitalData.Core projects.</Description>
|
||||||
|
<PackageTags>data-management;interfaces</PackageTags>
|
||||||
|
<PackageIcon>icon.png</PackageIcon>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
<None Include="icon.png" Pack="true" PackagePath=""/>
|
||||||
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
|
||||||
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="7.0.4" />
|
||||||
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.1" />
|
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
|
||||||
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.1" />
|
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.1" />
|
||||||
</ItemGroup>
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.1" />
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
<ItemGroup>
|
||||||
|
<None Update="icon.png">
|
||||||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
Binary file not shown.
@ -6,7 +6,7 @@
|
|||||||
"compilationOptions": {},
|
"compilationOptions": {},
|
||||||
"targets": {
|
"targets": {
|
||||||
".NETCoreApp,Version=v7.0": {
|
".NETCoreApp,Version=v7.0": {
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"DigitalData.Core.Contracts/1.0.1": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
"Microsoft.Extensions.Caching.Memory": "7.0.0",
|
||||||
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
"Microsoft.Extensions.Configuration.Binder": "7.0.4",
|
||||||
@ -342,7 +342,7 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libraries": {
|
"libraries": {
|
||||||
"DigitalData.Core.Contracts/1.0.0": {
|
"DigitalData.Core.Contracts/1.0.1": {
|
||||||
"type": "project",
|
"type": "project",
|
||||||
"serviceable": false,
|
"serviceable": false,
|
||||||
"sha512": ""
|
"sha512": ""
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
BIN
DigitalData.Core.Contracts/bin/Debug/net7.0/icon.png
Normal file
BIN
DigitalData.Core.Contracts/bin/Debug/net7.0/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
Binary file not shown.
@ -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"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Binary file not shown.
Binary file not shown.
BIN
DigitalData.Core.Contracts/bin/Release/net7.0/icon.png
Normal file
BIN
DigitalData.Core.Contracts/bin/Release/net7.0/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
BIN
DigitalData.Core.Contracts/icon.png
Normal file
BIN
DigitalData.Core.Contracts/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 22 KiB |
@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>WebCore.Contracts</id>
|
||||||
|
<version>1.0.1</version>
|
||||||
|
<authors>Hakan Tek</authors>
|
||||||
|
<icon>icon.png</icon>
|
||||||
|
<description>The interfaces of DigitalData.Core projects.</description>
|
||||||
|
<tags>data-management interfaces</tags>
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net7.0">
|
||||||
|
<dependency id="Microsoft.Extensions.Caching.Memory" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.4" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices.AccountManagement" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.IdentityModel.Tokens.Jwt" version="7.5.1" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.dll" target="lib\net7.0\DigitalData.Core.Contracts.dll" />
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\icon.png" target="icon.png" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
@ -11,13 +11,14 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Reflection;
|
using System.Reflection;
|
||||||
|
|
||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.Contracts")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("Digital Data")]
|
||||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyDescriptionAttribute("The interfaces of DigitalData.Core projects.")]
|
||||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
[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.AssemblyProductAttribute("DigitalData.Core.Contracts")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("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.
|
// Generated by the MSBuild WriteCodeFragment class.
|
||||||
|
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
06ec6b8e37e720c08a2d2c89dcb041839b30e345
|
a02e6c7e1e3f519a3498e0e732665b8cbb10eaa5
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@ -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\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\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\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.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.dll
|
||||||
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
|
E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Debug\net7.0\DigitalData.Core.Contracts.pdb
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -5,10 +5,10 @@
|
|||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
"E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.1",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
"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",
|
"projectPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\DigitalData.Core.Contracts.csproj",
|
||||||
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
|
||||||
"outputPath": "E:\\TekH\\Visual Studio\\WebCoreModules\\DigitalData.Core.Contracts\\obj\\",
|
"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 19.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
|
||||||
"D:\\ProgramFiles\\DevExpress 22.1\\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": {}
|
"https://api.nuget.org/v3/index.json": {}
|
||||||
},
|
},
|
||||||
"frameworks": {
|
"frameworks": {
|
||||||
|
|||||||
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>WebCore.Contracts</id>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<authors>Hakan Tek</authors>
|
||||||
|
<description>The interfaces of DigitalData.Core projects.</description>
|
||||||
|
<tags>data-management interfaces</tags>
|
||||||
|
<repository type="git" commit="82da3586a5e28ae5fbd4242f05f60f9e5327e5f2" />
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net7.0">
|
||||||
|
<dependency id="Microsoft.Extensions.Caching.Memory" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.4" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices.AccountManagement" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.IdentityModel.Tokens.Jwt" version="7.5.1" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.dll" target="lib\net7.0\DigitalData.Core.Contracts.dll" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>WebCore.Contracts</id>
|
||||||
|
<version>1.0.1</version>
|
||||||
|
<authors>Hakan Tek</authors>
|
||||||
|
<icon>icon.png</icon>
|
||||||
|
<description>The interfaces of DigitalData.Core projects.</description>
|
||||||
|
<tags>data-management interfaces</tags>
|
||||||
|
<repository type="git" commit="82da3586a5e28ae5fbd4242f05f60f9e5327e5f2" />
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net7.0">
|
||||||
|
<dependency id="Microsoft.Extensions.Caching.Memory" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.4" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices.AccountManagement" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.IdentityModel.Tokens.Jwt" version="7.5.1" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.dll" target="lib\net7.0\DigitalData.Core.Contracts.dll" />
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\icon.png" target="icon.png" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||||
|
<metadata>
|
||||||
|
<id>YourPackageName</id>
|
||||||
|
<version>1.0.0</version>
|
||||||
|
<authors>Hakan Tek</authors>
|
||||||
|
<description>The interfaces of DigitalData.Core projects.</description>
|
||||||
|
<tags>data-management interfaces</tags>
|
||||||
|
<repository type="git" commit="82da3586a5e28ae5fbd4242f05f60f9e5327e5f2" />
|
||||||
|
<dependencies>
|
||||||
|
<group targetFramework="net7.0">
|
||||||
|
<dependency id="Microsoft.Extensions.Caching.Memory" version="7.0.0" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="Microsoft.Extensions.Configuration.Binder" version="7.0.4" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.DirectoryServices.AccountManagement" version="7.0.1" exclude="Build,Analyzers" />
|
||||||
|
<dependency id="System.IdentityModel.Tokens.Jwt" version="7.5.1" exclude="Build,Analyzers" />
|
||||||
|
</group>
|
||||||
|
</dependencies>
|
||||||
|
</metadata>
|
||||||
|
<files>
|
||||||
|
<file src="E:\TekH\Visual Studio\WebCoreModules\DigitalData.Core.Contracts\bin\Release\net7.0\DigitalData.Core.Contracts.dll" target="lib\net7.0\DigitalData.Core.Contracts.dll" />
|
||||||
|
</files>
|
||||||
|
</package>
|
||||||
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
|
||||||
@ -0,0 +1,23 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
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.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
67eed8e486ad8cc100aa877b8e2de3753411edbcab6dc19b2cab9976d7aeed44
|
||||||
@ -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 =
|
||||||
@ -0,0 +1,8 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
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;
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
50de9f7d3c1b480cb044dac5fd55004f68ae502a937a09ac85e539d84e2dece2
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user