initial commit

This commit is contained in:
Developer 02
2024-03-06 16:14:36 +01:00
commit 67d5385c56
474 changed files with 17468 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
using DigitalData.Core.Attributes;
namespace DigitalData.Core.ConsoleApp
{
[ADFilter("(&(objectClass=group) (samAccountName=*))")]
public class ADGroup
{
public string ObjectSid { get; set; }
public string ObjectCategory { get; set; }
public int SamAccountType { get; set; }
public string DistinguishedName { get; set; }
public int InstanceType { get; set; }
public string Name { get; set; }
public string CN { get; set; }
public List<string> ObjectClass { get; set; } = new();
public DateTime WhenChanged { get; set; }
public Guid ObjectGuid { get; set; }
public long UsnCreated { get; set; }
public string SAMAccountName { get; set; }
public int? GroupType { get; set; }
public DateTime? DsCorePropagationData { get; set; }
public int? AdminCount { get; set; }
public int? SystemFlags { get; set; }
public List<string> Member { get; set; } = new();
public string AdsPath { get; set; }
public long UsnChanged { get; set; }
public DateTime WhenCreated { get; set; }
public string Description { get; set; }
public bool? IsCriticalSystemObject { get; set; }
}
}

View File

@@ -0,0 +1,20 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualBasic" Version="10.3.0" />
<PackageReference Include="System.DirectoryServices" Version="7.0.1" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DigitalData.Core.Attributes\DigitalData.Core.Attributes.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,145 @@
using System.DirectoryServices;
using System.Collections;
using Microsoft.VisualBasic.CompilerServices;
using System.Reflection;
namespace DigitalData.Core.ConsoleApp
{
public class DirectoryService
{
public static T MapResultProperty<T>(ResultPropertyCollection rpc) where T : new()
{
if (!OperatingSystem.IsWindows())
throw new PlatformNotSupportedException("The method is only supported on the Windows platform.");
T resultObject = new();
foreach (string propertyName in rpc.PropertyNames ?? throw new ArgumentNullException("PropertyNames are null"))
{
var propertyValue = rpc[propertyName][0];
PropertyInfo? pi = typeof(T).GetProperty(propertyName, BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance);
if (pi != null && propertyValue != null)
{
Type propertyType = pi.PropertyType;
Type underlyingType = Nullable.GetUnderlyingType(propertyType) ?? propertyType;
if (propertyType != underlyingType)
{
propertyValue = Convert.ChangeType(propertyValue, underlyingType);
pi.SetValue(resultObject, propertyValue);
}
else if (typeof(IEnumerable).IsAssignableFrom(propertyType) && propertyType != typeof(string))
{
var itemType = propertyType.GetGenericArguments()[0];
IList list = (IList)Activator.CreateInstance(typeof(List<>).MakeGenericType(itemType));
list.Add(Convert.ChangeType(propertyValue, itemType));
pi.SetValue(resultObject, list);
}
else if (propertyValue is byte[] && propertyType == typeof(string))
{
pi.SetValue(resultObject, Convert.ToBase64String((byte[])propertyValue));
}
else if (propertyValue is byte[] stBytes && propertyType == typeof(string))
{
pi.SetValue(resultObject, BitConverter.ToString(stBytes).Replace("-", ""));
}
else if (propertyValue is byte[] guiBytes && propertyType == typeof(Guid))
{
pi.SetValue(resultObject, new Guid(guiBytes));
}
else
{
propertyValue = Convert.ChangeType(propertyValue, propertyType);
pi.SetValue(resultObject, propertyValue);
}
}
}
return resultObject;
}
public static SearchResultCollection Search(string filter)
{
if (!OperatingSystem.IsWindows())
throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform.");
DirectorySearcher directorySearcher = new()
{
SearchScope = SearchScope.Subtree,
SizeLimit = 50000,
Filter = filter,
};
return directorySearcher.FindAll();
}
public static IEnumerable<T> Search<T>(string filter) where T: new()
{
List<T> list = new();
foreach(SearchResult result in Search(filter))
{
if (!OperatingSystem.IsWindows())
throw new PlatformNotSupportedException("The ListGroups method is only supported on the windows platform.");
ResultPropertyCollection rpc = result.Properties;
T obj = MapResultProperty<T>(rpc);
list.Add(obj);
}
return list;
}
public List<ADGroup> ListGroups(string query)
{
if (OperatingSystem.IsWindows())
{
DirectorySearcher directorySearcher = new()
{
SearchScope = SearchScope.Subtree,
SizeLimit = 50000,
Filter = query
};
SearchResultCollection result = directorySearcher.FindAll();
return GroupResultsToList(result);
}
throw new PlatformNotSupportedException("The ListGroups method is only supported on the Windows platform.");
}
private List<ADGroup> GroupResultsToList(SearchResultCollection results)
{
List<ADGroup> list = new();
foreach(SearchResult result in results)
{
list.Add(new ADGroup
{
Name = TryGetProperty(result, "name"),
SAMAccountName = TryGetProperty(result, "samaccountname"),
CN = TryGetProperty(result, "cn"),
Description = TryGetProperty(result, "description"),
DistinguishedName = TryGetProperty(result, "distinguishedName"),
ObjectCategory = TryGetProperty(result, "objectCategory"),
//ObjectClass = TryGetProperty(result, "objectClass")
});
}
return list;
}
private string TryGetProperty(SearchResult Result, string PropertyName)
{
var messages = new List<string>();
try
{
return Conversions.ToString(Result.Properties[PropertyName][0]);
}
catch (Exception ex)
{
Exception ex2 = ex;
messages.Add(String.Format("Property {0} not found", PropertyName));
string empty = string.Empty;
return empty;
}
}
}
}

View File

@@ -0,0 +1,16 @@
using DigitalData.Core.ConsoleApp;
using System.DirectoryServices;
using System.DirectoryServices.ActiveDirectory;
string AdRootPath = "LDAP://DD-GAN";
string groupFilter = "(&(objectClass=group) (samAccountName=*))";
string userFilter = "(&(objectClass=user)(samAccountName=@SAMACCOUNTNAME)(!(UserAccountControl:1.2.840.113556.1.4.803:=2)))";
DirectoryService service = new ();
var groups = DirectoryService.Search<ADGroup>(groupFilter);
foreach (var g in groups)
{
Console.WriteLine(g.Name);
}

View File

@@ -0,0 +1,8 @@
{
"profiles": {
"WSL": {
"commandName": "WSL2",
"distributionName": ""
}
}
}

View File

@@ -0,0 +1,290 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"DigitalData.Core.Console/1.0.0": {
"dependencies": {
"Microsoft.VisualBasic": "10.3.0",
"System.DirectoryServices": "7.0.1",
"System.DirectoryServices.AccountManagement": "7.0.1"
},
"runtime": {
"DigitalData.Core.Console.dll": {}
}
},
"Microsoft.VisualBasic/10.3.0": {},
"Microsoft.Win32.SystemEvents/7.0.0": {
"runtime": {
"lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Configuration.ConfigurationManager/7.0.0": {
"dependencies": {
"System.Diagnostics.EventLog": "7.0.0",
"System.Security.Cryptography.ProtectedData": "7.0.0",
"System.Security.Permissions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Diagnostics.EventLog/7.0.0": {
"runtime": {
"lib/net7.0/System.Diagnostics.EventLog.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "0.0.0.0"
},
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.DirectoryServices/7.0.1": {
"dependencies": {
"System.Security.Permissions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.DirectoryServices.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.323.6910"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.323.6910"
}
}
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"dependencies": {
"System.Configuration.ConfigurationManager": "7.0.0",
"System.DirectoryServices": "7.0.1",
"System.DirectoryServices.Protocols": "7.0.1"
},
"runtime": {
"lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.1123.42427"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.1123.42427"
}
}
},
"System.DirectoryServices.Protocols/7.0.1": {
"runtime": {
"lib/net7.0/System.DirectoryServices.Protocols.dll": {
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
}
},
"runtimeTargets": {
"runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "linux",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
},
"runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "osx",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
},
"runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
}
}
},
"System.Drawing.Common/7.0.0": {
"dependencies": {
"Microsoft.Win32.SystemEvents": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Drawing.Common.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"runtime": {
"lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Security.Permissions/7.0.0": {
"dependencies": {
"System.Windows.Extensions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Security.Permissions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Windows.Extensions/7.0.0": {
"dependencies": {
"System.Drawing.Common": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Windows.Extensions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Windows.Extensions.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
}
}
},
"libraries": {
"DigitalData.Core.Console/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.VisualBasic/10.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==",
"path": "microsoft.visualbasic/10.3.0",
"hashPath": "microsoft.visualbasic.10.3.0.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
"path": "microsoft.win32.systemevents/7.0.0",
"hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==",
"path": "system.configuration.configurationmanager/7.0.0",
"hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512"
},
"System.Diagnostics.EventLog/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==",
"path": "system.diagnostics.eventlog/7.0.0",
"hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512"
},
"System.DirectoryServices/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==",
"path": "system.directoryservices/7.0.1",
"hashPath": "system.directoryservices.7.0.1.nupkg.sha512"
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==",
"path": "system.directoryservices.accountmanagement/7.0.1",
"hashPath": "system.directoryservices.accountmanagement.7.0.1.nupkg.sha512"
},
"System.DirectoryServices.Protocols/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==",
"path": "system.directoryservices.protocols/7.0.1",
"hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512"
},
"System.Drawing.Common/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
"path": "system.drawing.common/7.0.0",
"hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==",
"path": "system.security.cryptography.protecteddata/7.0.0",
"hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512"
},
"System.Security.Permissions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==",
"path": "system.security.permissions/7.0.0",
"hashPath": "system.security.permissions.7.0.0.nupkg.sha512"
},
"System.Windows.Extensions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==",
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
}
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@@ -0,0 +1,301 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v7.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v7.0": {
"DigitalData.Core.ConsoleApp/1.0.0": {
"dependencies": {
"DigitalData.Core.Attributes": "1.0.0",
"Microsoft.VisualBasic": "10.3.0",
"System.DirectoryServices": "7.0.1",
"System.DirectoryServices.AccountManagement": "7.0.1"
},
"runtime": {
"DigitalData.Core.ConsoleApp.dll": {}
}
},
"Microsoft.VisualBasic/10.3.0": {},
"Microsoft.Win32.SystemEvents/7.0.0": {
"runtime": {
"lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Configuration.ConfigurationManager/7.0.0": {
"dependencies": {
"System.Diagnostics.EventLog": "7.0.0",
"System.Security.Cryptography.ProtectedData": "7.0.0",
"System.Security.Permissions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Diagnostics.EventLog/7.0.0": {
"runtime": {
"lib/net7.0/System.Diagnostics.EventLog.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "0.0.0.0"
},
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.DirectoryServices/7.0.1": {
"dependencies": {
"System.Security.Permissions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.DirectoryServices.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.323.6910"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.323.6910"
}
}
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"dependencies": {
"System.Configuration.ConfigurationManager": "7.0.0",
"System.DirectoryServices": "7.0.1",
"System.DirectoryServices.Protocols": "7.0.1"
},
"runtime": {
"lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.1123.42427"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "7.0.1123.42427"
}
}
},
"System.DirectoryServices.Protocols/7.0.1": {
"runtime": {
"lib/net7.0/System.DirectoryServices.Protocols.dll": {
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
}
},
"runtimeTargets": {
"runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "linux",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
},
"runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "osx",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
},
"runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.1",
"fileVersion": "7.0.723.27404"
}
}
},
"System.Drawing.Common/7.0.0": {
"dependencies": {
"Microsoft.Win32.SystemEvents": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Drawing.Common.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"runtime": {
"lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Security.Permissions/7.0.0": {
"dependencies": {
"System.Windows.Extensions": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Security.Permissions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"System.Windows.Extensions/7.0.0": {
"dependencies": {
"System.Drawing.Common": "7.0.0"
},
"runtime": {
"lib/net7.0/System.Windows.Extensions.dll": {
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Windows.Extensions.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "7.0.0.0",
"fileVersion": "7.0.22.51805"
}
}
},
"DigitalData.Core.Attributes/1.0.0": {
"runtime": {
"DigitalData.Core.Attributes.dll": {}
}
}
}
},
"libraries": {
"DigitalData.Core.ConsoleApp/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.VisualBasic/10.3.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==",
"path": "microsoft.visualbasic/10.3.0",
"hashPath": "microsoft.visualbasic.10.3.0.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
"path": "microsoft.win32.systemevents/7.0.0",
"hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512"
},
"System.Configuration.ConfigurationManager/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==",
"path": "system.configuration.configurationmanager/7.0.0",
"hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512"
},
"System.Diagnostics.EventLog/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==",
"path": "system.diagnostics.eventlog/7.0.0",
"hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512"
},
"System.DirectoryServices/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==",
"path": "system.directoryservices/7.0.1",
"hashPath": "system.directoryservices.7.0.1.nupkg.sha512"
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==",
"path": "system.directoryservices.accountmanagement/7.0.1",
"hashPath": "system.directoryservices.accountmanagement.7.0.1.nupkg.sha512"
},
"System.DirectoryServices.Protocols/7.0.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==",
"path": "system.directoryservices.protocols/7.0.1",
"hashPath": "system.directoryservices.protocols.7.0.1.nupkg.sha512"
},
"System.Drawing.Common/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
"path": "system.drawing.common/7.0.0",
"hashPath": "system.drawing.common.7.0.0.nupkg.sha512"
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==",
"path": "system.security.cryptography.protecteddata/7.0.0",
"hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512"
},
"System.Security.Permissions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==",
"path": "system.security.permissions/7.0.0",
"hashPath": "system.security.permissions.7.0.0.nupkg.sha512"
},
"System.Windows.Extensions/7.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==",
"path": "system.windows.extensions/7.0.0",
"hashPath": "system.windows.extensions.7.0.0.nupkg.sha512"
},
"DigitalData.Core.Attributes/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "net7.0",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "7.0.0"
}
}
}

View File

@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.Console")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.Console")]
[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.Console")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
e6e582ccafc8145db251e2e74c6cd3ddfb2dfe8e

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DigitalData.Core.Console
build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\

View File

@@ -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;

View File

@@ -0,0 +1 @@
43f49f8e96b0ad16e1973ffc64abbc5f638fad49

View File

@@ -0,0 +1,37 @@
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.exe
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.deps.json
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.runtimeconfig.json
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Console.pdb
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Diagnostics.EventLog.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.AccountManagement.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Drawing.Common.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Permissions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Windows.Extensions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.AccountManagement.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.AssemblyReference.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.GeneratedMSBuildEditorConfig.editorconfig
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.AssemblyInfoInputs.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.AssemblyInfo.cs
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.CoreCompileInputs.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.csproj.CopyComplete
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\refint\DigitalData.Core.Console.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.pdb
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.Console.genruntimeconfig.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\ref\DigitalData.Core.Console.dll

View File

@@ -0,0 +1 @@
ebeba68baeed69063e55f7e5e86f852019e53575

View File

@@ -0,0 +1,23 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("DigitalData.Core.ConsoleApp")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("DigitalData.Core.ConsoleApp")]
[assembly: System.Reflection.AssemblyTitleAttribute("DigitalData.Core.ConsoleApp")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
// Generated by the MSBuild WriteCodeFragment class.

View File

@@ -0,0 +1 @@
0ccd0b2c6f62ba81d4d6c1a3f453a06be17e8a1f

View File

@@ -0,0 +1,11 @@
is_global = true
build_property.TargetFramework = net7.0
build_property.TargetPlatformMinVersion =
build_property.UsingMicrosoftNETSdkWeb =
build_property.ProjectTypeGuids =
build_property.InvariantGlobalization =
build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = DigitalData.Core.ConsoleApp
build_property.ProjectDir = E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\

View File

@@ -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;

View File

@@ -0,0 +1 @@
24036e25a4431bf3c86e4163114d38b7b6cb73ad

View File

@@ -0,0 +1,39 @@
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.AssemblyReference.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.GeneratedMSBuildEditorConfig.editorconfig
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.AssemblyInfoInputs.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.AssemblyInfo.cs
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.CoreCompileInputs.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.exe
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.deps.json
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.runtimeconfig.json
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.ConsoleApp.pdb
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Diagnostics.EventLog.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.AccountManagement.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Drawing.Common.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Security.Permissions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\System.Windows.Extensions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.Messages.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Diagnostics.EventLog.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.AccountManagement.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\linux\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\osx\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.DirectoryServices.Protocols.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.csproj.CopyComplete
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\refint\DigitalData.Core.ConsoleApp.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.pdb
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\DigitalData.Core.ConsoleApp.genruntimeconfig.cache
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\obj\Debug\net7.0\ref\DigitalData.Core.ConsoleApp.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Attributes.dll
E:\TekH\Visual Studio\DDWeb\DigitalData.Core\DigitalData.Core.Console\bin\Debug\net7.0\DigitalData.Core.Attributes.pdb

View File

@@ -0,0 +1 @@
ebeba68baeed69063e55f7e5e86f852019e53575

Binary file not shown.

View File

@@ -0,0 +1,88 @@
{
"format": 1,
"restore": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj": {}
},
"projects": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj",
"projectName": "DigitalData.Core.Console",
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.Console.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages",
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Microsoft.VisualBasic": {
"target": "Package",
"version": "[10.3.0, )"
},
"System.DirectoryServices": {
"target": "Package",
"version": "[7.0.1, )"
},
"System.DirectoryServices.AccountManagement": {
"target": "Package",
"version": "[7.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\tekh\.nuget\packages\" />
<SourceRoot Include="D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages\" />
<SourceRoot Include="D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages\" />
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,158 @@
{
"format": 1,
"restore": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj": {}
},
"projects": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj",
"projectName": "DigitalData.Core.Attributes",
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages",
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
},
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj",
"projectName": "DigitalData.Core.ConsoleApp",
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages",
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": {
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Microsoft.VisualBasic": {
"target": "Package",
"version": "[10.3.0, )"
},
"System.DirectoryServices": {
"target": "Package",
"version": "[7.0.1, )"
},
"System.DirectoryServices.AccountManagement": {
"target": "Package",
"version": "[7.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}
}

View File

@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\tekh\.nuget\packages\;D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages;D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\tekh\.nuget\packages\" />
<SourceRoot Include="D:\ProgramFiles\DevExpress 21.2\Components\Offline Packages\" />
<SourceRoot Include="D:\ProgramFiles\DevExpress 22.1\Components\Offline Packages\" />
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

View File

@@ -0,0 +1,731 @@
{
"version": 3,
"targets": {
"net7.0": {
"Microsoft.VisualBasic/10.3.0": {
"type": "package",
"compile": {
"ref/netcoreapp2.0/_._": {}
},
"runtime": {
"lib/netcoreapp2.0/_._": {}
}
},
"Microsoft.Win32.SystemEvents/7.0.0": {
"type": "package",
"compile": {
"lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Configuration.ConfigurationManager/7.0.0": {
"type": "package",
"dependencies": {
"System.Diagnostics.EventLog": "7.0.0",
"System.Security.Cryptography.ProtectedData": "7.0.0",
"System.Security.Permissions": "7.0.0"
},
"compile": {
"lib/net7.0/System.Configuration.ConfigurationManager.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Configuration.ConfigurationManager.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
}
},
"System.Diagnostics.EventLog/7.0.0": {
"type": "package",
"compile": {
"lib/net7.0/System.Diagnostics.EventLog.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Diagnostics.EventLog.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": {
"assetType": "runtime",
"rid": "win"
},
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.DirectoryServices/7.0.1": {
"type": "package",
"dependencies": {
"System.Security.Permissions": "7.0.0"
},
"compile": {
"lib/net7.0/System.DirectoryServices.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.DirectoryServices.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"type": "package",
"dependencies": {
"System.Configuration.ConfigurationManager": "7.0.0",
"System.DirectoryServices": "7.0.1",
"System.DirectoryServices.Protocols": "7.0.1"
},
"compile": {
"lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.DirectoryServices.Protocols/7.0.1": {
"type": "package",
"compile": {
"lib/net7.0/System.DirectoryServices.Protocols.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.DirectoryServices.Protocols.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "linux"
},
"runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "osx"
},
"runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Drawing.Common/7.0.0": {
"type": "package",
"dependencies": {
"Microsoft.Win32.SystemEvents": "7.0.0"
},
"compile": {
"lib/net7.0/System.Drawing.Common.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Drawing.Common.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Drawing.Common.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"type": "package",
"compile": {
"lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"System.Security.Permissions/7.0.0": {
"type": "package",
"dependencies": {
"System.Windows.Extensions": "7.0.0"
},
"compile": {
"lib/net7.0/System.Security.Permissions.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Security.Permissions.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
}
},
"System.Windows.Extensions/7.0.0": {
"type": "package",
"dependencies": {
"System.Drawing.Common": "7.0.0"
},
"compile": {
"lib/net7.0/System.Windows.Extensions.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net7.0/System.Windows.Extensions.dll": {
"related": ".xml"
}
},
"runtimeTargets": {
"runtimes/win/lib/net7.0/System.Windows.Extensions.dll": {
"assetType": "runtime",
"rid": "win"
}
}
},
"DigitalData.Core.Attributes/1.0.0": {
"type": "project",
"framework": ".NETCoreApp,Version=v7.0",
"compile": {
"bin/placeholder/DigitalData.Core.Attributes.dll": {}
},
"runtime": {
"bin/placeholder/DigitalData.Core.Attributes.dll": {}
}
}
}
},
"libraries": {
"Microsoft.VisualBasic/10.3.0": {
"sha512": "AvMDjmJHjz9bdlvxiSdEHHcWP+sZtp7zwule5ab6DaUbgoBnwCsd7nymj69vSz18ypXuEv3SI7ZUNwbIKrvtMA==",
"type": "package",
"path": "microsoft.visualbasic/10.3.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net45/_._",
"lib/netcore50/Microsoft.VisualBasic.dll",
"lib/netcoreapp2.0/_._",
"lib/netstandard1.3/Microsoft.VisualBasic.dll",
"lib/netstandard2.0/Microsoft.VisualBasic.dll",
"lib/portable-net45+win8+wpa81/_._",
"lib/uap10.0.16299/_._",
"lib/win8/_._",
"lib/wpa81/_._",
"microsoft.visualbasic.10.3.0.nupkg.sha512",
"microsoft.visualbasic.nuspec",
"ref/net45/_._",
"ref/netcore50/Microsoft.VisualBasic.dll",
"ref/netcore50/Microsoft.VisualBasic.xml",
"ref/netcore50/de/Microsoft.VisualBasic.xml",
"ref/netcore50/es/Microsoft.VisualBasic.xml",
"ref/netcore50/fr/Microsoft.VisualBasic.xml",
"ref/netcore50/it/Microsoft.VisualBasic.xml",
"ref/netcore50/ja/Microsoft.VisualBasic.xml",
"ref/netcore50/ko/Microsoft.VisualBasic.xml",
"ref/netcore50/ru/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hans/Microsoft.VisualBasic.xml",
"ref/netcore50/zh-hant/Microsoft.VisualBasic.xml",
"ref/netcoreapp2.0/_._",
"ref/netstandard1.1/Microsoft.VisualBasic.dll",
"ref/netstandard1.1/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/de/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/es/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/fr/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/it/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ja/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ko/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/ru/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hans/Microsoft.VisualBasic.xml",
"ref/netstandard1.1/zh-hant/Microsoft.VisualBasic.xml",
"ref/netstandard2.0/Microsoft.VisualBasic.dll",
"ref/netstandard2.0/Microsoft.VisualBasic.xml",
"ref/portable-net45+win8+wpa81/_._",
"ref/uap10.0.16299/_._",
"ref/win8/_._",
"ref/wpa81/_._",
"useSharedDesignerContext.txt",
"version.txt"
]
},
"Microsoft.Win32.SystemEvents/7.0.0": {
"sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==",
"type": "package",
"path": "microsoft.win32.systemevents/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/Microsoft.Win32.SystemEvents.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets",
"lib/net462/Microsoft.Win32.SystemEvents.dll",
"lib/net462/Microsoft.Win32.SystemEvents.xml",
"lib/net6.0/Microsoft.Win32.SystemEvents.dll",
"lib/net6.0/Microsoft.Win32.SystemEvents.xml",
"lib/net7.0/Microsoft.Win32.SystemEvents.dll",
"lib/net7.0/Microsoft.Win32.SystemEvents.xml",
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml",
"microsoft.win32.systemevents.7.0.0.nupkg.sha512",
"microsoft.win32.systemevents.nuspec",
"runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll",
"runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml",
"runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll",
"runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml",
"useSharedDesignerContext.txt"
]
},
"System.Configuration.ConfigurationManager/7.0.0": {
"sha512": "WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==",
"type": "package",
"path": "system.configuration.configurationmanager/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Configuration.ConfigurationManager.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets",
"lib/net462/System.Configuration.ConfigurationManager.dll",
"lib/net462/System.Configuration.ConfigurationManager.xml",
"lib/net6.0/System.Configuration.ConfigurationManager.dll",
"lib/net6.0/System.Configuration.ConfigurationManager.xml",
"lib/net7.0/System.Configuration.ConfigurationManager.dll",
"lib/net7.0/System.Configuration.ConfigurationManager.xml",
"lib/netstandard2.0/System.Configuration.ConfigurationManager.dll",
"lib/netstandard2.0/System.Configuration.ConfigurationManager.xml",
"system.configuration.configurationmanager.7.0.0.nupkg.sha512",
"system.configuration.configurationmanager.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Diagnostics.EventLog/7.0.0": {
"sha512": "eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==",
"type": "package",
"path": "system.diagnostics.eventlog/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Diagnostics.EventLog.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets",
"lib/net462/System.Diagnostics.EventLog.dll",
"lib/net462/System.Diagnostics.EventLog.xml",
"lib/net6.0/System.Diagnostics.EventLog.dll",
"lib/net6.0/System.Diagnostics.EventLog.xml",
"lib/net7.0/System.Diagnostics.EventLog.dll",
"lib/net7.0/System.Diagnostics.EventLog.xml",
"lib/netstandard2.0/System.Diagnostics.EventLog.dll",
"lib/netstandard2.0/System.Diagnostics.EventLog.xml",
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll",
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll",
"runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml",
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll",
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll",
"runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml",
"system.diagnostics.eventlog.7.0.0.nupkg.sha512",
"system.diagnostics.eventlog.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.DirectoryServices/7.0.1": {
"sha512": "Z4FVdUJEVXbf7/f/hU6cFZDtxN5ozUVKJMzXoHmC+GCeTcqzlxqmWtxurejxG3K+kZ6H0UKwNshoK1CYnmJ1sg==",
"type": "package",
"path": "system.directoryservices/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.DirectoryServices.targets",
"lib/net462/_._",
"lib/net6.0/System.DirectoryServices.dll",
"lib/net6.0/System.DirectoryServices.xml",
"lib/net7.0/System.DirectoryServices.dll",
"lib/net7.0/System.DirectoryServices.xml",
"lib/netstandard2.0/System.DirectoryServices.dll",
"lib/netstandard2.0/System.DirectoryServices.xml",
"runtimes/win/lib/net6.0/System.DirectoryServices.dll",
"runtimes/win/lib/net6.0/System.DirectoryServices.xml",
"runtimes/win/lib/net7.0/System.DirectoryServices.dll",
"runtimes/win/lib/net7.0/System.DirectoryServices.xml",
"system.directoryservices.7.0.1.nupkg.sha512",
"system.directoryservices.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.DirectoryServices.AccountManagement/7.0.1": {
"sha512": "UNytHYwA5IF55WQhashsMG57ize83JUGJxD8YJlOyO9ZlMTOD4Nt7y+A6mvmrU/swDoYWaVL+TNwE6hk9lyvbA==",
"type": "package",
"path": "system.directoryservices.accountmanagement/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.DirectoryServices.AccountManagement.targets",
"lib/net462/_._",
"lib/net6.0/System.DirectoryServices.AccountManagement.dll",
"lib/net6.0/System.DirectoryServices.AccountManagement.xml",
"lib/net7.0/System.DirectoryServices.AccountManagement.dll",
"lib/net7.0/System.DirectoryServices.AccountManagement.xml",
"lib/netstandard2.0/System.DirectoryServices.AccountManagement.dll",
"lib/netstandard2.0/System.DirectoryServices.AccountManagement.xml",
"runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.dll",
"runtimes/win/lib/net6.0/System.DirectoryServices.AccountManagement.xml",
"runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.dll",
"runtimes/win/lib/net7.0/System.DirectoryServices.AccountManagement.xml",
"system.directoryservices.accountmanagement.7.0.1.nupkg.sha512",
"system.directoryservices.accountmanagement.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.DirectoryServices.Protocols/7.0.1": {
"sha512": "t9hsL+UYRzNs30pnT2Tdx6ngX8McFUjru0a0ekNgu/YXfkXN+dx5OvSEv0/p7H2q3pdJLH7TJPWX7e55J8QB9A==",
"type": "package",
"path": "system.directoryservices.protocols/7.0.1",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.DirectoryServices.Protocols.targets",
"lib/net462/_._",
"lib/net6.0/System.DirectoryServices.Protocols.dll",
"lib/net6.0/System.DirectoryServices.Protocols.xml",
"lib/net7.0/System.DirectoryServices.Protocols.dll",
"lib/net7.0/System.DirectoryServices.Protocols.xml",
"lib/netstandard2.0/System.DirectoryServices.Protocols.dll",
"lib/netstandard2.0/System.DirectoryServices.Protocols.xml",
"runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.dll",
"runtimes/linux/lib/net6.0/System.DirectoryServices.Protocols.xml",
"runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.dll",
"runtimes/linux/lib/net7.0/System.DirectoryServices.Protocols.xml",
"runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.dll",
"runtimes/osx/lib/net6.0/System.DirectoryServices.Protocols.xml",
"runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.dll",
"runtimes/osx/lib/net7.0/System.DirectoryServices.Protocols.xml",
"runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.dll",
"runtimes/win/lib/net6.0/System.DirectoryServices.Protocols.xml",
"runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.dll",
"runtimes/win/lib/net7.0/System.DirectoryServices.Protocols.xml",
"system.directoryservices.protocols.7.0.1.nupkg.sha512",
"system.directoryservices.protocols.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Drawing.Common/7.0.0": {
"sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==",
"type": "package",
"path": "system.drawing.common/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Drawing.Common.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Drawing.Common.targets",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net462/System.Drawing.Common.dll",
"lib/net462/System.Drawing.Common.xml",
"lib/net6.0/System.Drawing.Common.dll",
"lib/net6.0/System.Drawing.Common.xml",
"lib/net7.0/System.Drawing.Common.dll",
"lib/net7.0/System.Drawing.Common.xml",
"lib/netstandard2.0/System.Drawing.Common.dll",
"lib/netstandard2.0/System.Drawing.Common.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"runtimes/win/lib/net6.0/System.Drawing.Common.dll",
"runtimes/win/lib/net6.0/System.Drawing.Common.xml",
"runtimes/win/lib/net7.0/System.Drawing.Common.dll",
"runtimes/win/lib/net7.0/System.Drawing.Common.xml",
"system.drawing.common.7.0.0.nupkg.sha512",
"system.drawing.common.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Security.Cryptography.ProtectedData/7.0.0": {
"sha512": "xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==",
"type": "package",
"path": "system.security.cryptography.protecteddata/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net462/System.Security.Cryptography.ProtectedData.dll",
"lib/net462/System.Security.Cryptography.ProtectedData.xml",
"lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
"lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
"lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
"lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll",
"lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml",
"runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll",
"runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.xml",
"system.security.cryptography.protecteddata.7.0.0.nupkg.sha512",
"system.security.cryptography.protecteddata.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Security.Permissions/7.0.0": {
"sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==",
"type": "package",
"path": "system.security.permissions/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Security.Permissions.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Security.Permissions.targets",
"lib/net462/System.Security.Permissions.dll",
"lib/net462/System.Security.Permissions.xml",
"lib/net6.0/System.Security.Permissions.dll",
"lib/net6.0/System.Security.Permissions.xml",
"lib/net7.0/System.Security.Permissions.dll",
"lib/net7.0/System.Security.Permissions.xml",
"lib/netstandard2.0/System.Security.Permissions.dll",
"lib/netstandard2.0/System.Security.Permissions.xml",
"system.security.permissions.7.0.0.nupkg.sha512",
"system.security.permissions.nuspec",
"useSharedDesignerContext.txt"
]
},
"System.Windows.Extensions/7.0.0": {
"sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==",
"type": "package",
"path": "system.windows.extensions/7.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"THIRD-PARTY-NOTICES.TXT",
"lib/net6.0/System.Windows.Extensions.dll",
"lib/net6.0/System.Windows.Extensions.xml",
"lib/net7.0/System.Windows.Extensions.dll",
"lib/net7.0/System.Windows.Extensions.xml",
"runtimes/win/lib/net6.0/System.Windows.Extensions.dll",
"runtimes/win/lib/net6.0/System.Windows.Extensions.xml",
"runtimes/win/lib/net7.0/System.Windows.Extensions.dll",
"runtimes/win/lib/net7.0/System.Windows.Extensions.xml",
"system.windows.extensions.7.0.0.nupkg.sha512",
"system.windows.extensions.nuspec",
"useSharedDesignerContext.txt"
]
},
"DigitalData.Core.Attributes/1.0.0": {
"type": "project",
"path": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj",
"msbuildProject": "../DigitalData.Core.Attributes/DigitalData.Core.Attributes.csproj"
}
},
"projectFileDependencyGroups": {
"net7.0": [
"DigitalData.Core.Attributes >= 1.0.0",
"Microsoft.VisualBasic >= 10.3.0",
"System.DirectoryServices >= 7.0.1",
"System.DirectoryServices.AccountManagement >= 7.0.1"
]
},
"packageFolders": {
"C:\\Users\\tekh\\.nuget\\packages\\": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj",
"projectName": "DigitalData.Core.ConsoleApp",
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj",
"packagesPath": "C:\\Users\\tekh\\.nuget\\packages\\",
"outputPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\Offline Packages",
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\Offline Packages",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\tekh\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 19.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 21.2.config",
"C:\\Program Files (x86)\\NuGet\\Config\\DevExpress 22.1.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"D:\\ProgramFiles\\DevExpress 19.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 21.2\\Components\\System\\Components\\Packages": {},
"D:\\ProgramFiles\\DevExpress 22.1\\Components\\System\\Components\\Packages": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"projectReferences": {
"E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj": {
"projectPath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Attributes\\DigitalData.Core.Attributes.csproj"
}
}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
}
},
"frameworks": {
"net7.0": {
"targetAlias": "net7.0",
"dependencies": {
"Microsoft.VisualBasic": {
"target": "Package",
"version": "[10.3.0, )"
},
"System.DirectoryServices": {
"target": "Package",
"version": "[7.0.1, )"
},
"System.DirectoryServices.AccountManagement": {
"target": "Package",
"version": "[7.0.1, )"
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
}
}
}
}

View File

@@ -0,0 +1,20 @@
{
"version": 2,
"dgSpecHash": "hF9IgStgjE2a0F5CxLUV49DOS/Hi1ibpTaDXXmah6tEC0dqegJdV0pIiwEgRIIA/jO/4jKkW01tSZT5UXIFHtA==",
"success": true,
"projectFilePath": "E:\\TekH\\Visual Studio\\DDWeb\\DigitalData.Core\\DigitalData.Core.Console\\DigitalData.Core.ConsoleApp.csproj",
"expectedPackageFiles": [
"C:\\Users\\tekh\\.nuget\\packages\\microsoft.visualbasic\\10.3.0\\microsoft.visualbasic.10.3.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.configuration.configurationmanager\\7.0.0\\system.configuration.configurationmanager.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.diagnostics.eventlog\\7.0.0\\system.diagnostics.eventlog.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices\\7.0.1\\system.directoryservices.7.0.1.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.accountmanagement\\7.0.1\\system.directoryservices.accountmanagement.7.0.1.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.directoryservices.protocols\\7.0.1\\system.directoryservices.protocols.7.0.1.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.security.cryptography.protecteddata\\7.0.0\\system.security.cryptography.protecteddata.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512",
"C:\\Users\\tekh\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512"
],
"logs": []
}