분리후 첫 Crawling 성공 모델
This commit is contained in:
14
OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj
Normal file
14
OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj
Normal file
@@ -0,0 +1,14 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType> <TargetFramework>net8.0</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\OpcPks.Core\OpcPks.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Npgsql" Version="8.0.4" />
|
||||
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.374.78" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
27
OpcPksPlatform/OpcPks.Collector/Program.cs
Normal file
27
OpcPksPlatform/OpcPks.Collector/Program.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using OpcPks.Core.Data;
|
||||
|
||||
namespace OpcPks.Collector
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static async Task Main(string[] args)
|
||||
{
|
||||
Console.WriteLine("=== Honeywell OPC PKS Platform Collector ===");
|
||||
|
||||
// CSV 파일 경로 (상황에 맞춰 수정하세요)
|
||||
string csvPath = "../OpcPks.Core/Data/Honeywell_FullMap.csv";
|
||||
|
||||
if (System.IO.File.Exists(csvPath))
|
||||
{
|
||||
AssetLoader loader = new AssetLoader();
|
||||
await loader.ImportFullMapAsync(csvPath);
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("❌ CSV 파일을 찾을 수 없습니다: " + csvPath);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
9
OpcPksPlatform/OpcPks.Collector/appsettings.json
Normal file
9
OpcPksPlatform/OpcPks.Collector/appsettings.json
Normal file
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"OpcUa": {
|
||||
"ServerUrl": "opc.tcp://192.168.0.20:48010",
|
||||
"AutoAcceptUntrustedCertificates": true
|
||||
},
|
||||
"ConnectionStrings": {
|
||||
"DefaultConnection": "Host=localhost;Database=opcpks;Username=pacer;Password=yourpassword"
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Newtonsoft.Json.dll
Executable file
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Npgsql.dll
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Npgsql.dll
Executable file
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Client.dll
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Client.dll
Executable file
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Configuration.dll
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Configuration.dll
Executable file
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Core.dll
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Core.dll
Executable file
Binary file not shown.
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector
Executable file
Binary file not shown.
@@ -0,0 +1,204 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v8.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v8.0": {
|
||||
"OpcPks.Collector/1.0.0": {
|
||||
"dependencies": {
|
||||
"Npgsql": "8.0.4",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": "1.5.374.78",
|
||||
"OpcPks.Core": "1.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"OpcPks.Collector.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.324.11423"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "8.0.0.0",
|
||||
"fileVersion": "8.0.324.11423"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"runtime": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.3.27908"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Npgsql/8.0.4": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Npgsql.dll": {
|
||||
"assemblyVersion": "8.0.4.0",
|
||||
"fileVersion": "8.0.4.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client/1.5.374.78": {
|
||||
"dependencies": {
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.5.374.78",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.5.374.78"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Client.dll": {
|
||||
"assemblyVersion": "1.5.374.0",
|
||||
"fileVersion": "1.5.374.78"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.5.374.78": {
|
||||
"dependencies": {
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.5.374.78"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Configuration.dll": {
|
||||
"assemblyVersion": "1.5.374.0",
|
||||
"fileVersion": "1.5.374.78"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core/1.5.374.78": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.1",
|
||||
"Newtonsoft.Json": "13.0.3",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.5.374.78"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Core.dll": {
|
||||
"assemblyVersion": "1.5.374.0",
|
||||
"fileVersion": "1.5.374.78"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.5.374.78": {
|
||||
"dependencies": {
|
||||
"System.Formats.Asn1": "8.0.1",
|
||||
"System.Security.Cryptography.Cng": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Security.Certificates.dll": {
|
||||
"assemblyVersion": "1.5.374.0",
|
||||
"fileVersion": "1.5.374.78"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Formats.Asn1/8.0.1": {},
|
||||
"System.Security.Cryptography.Cng/5.0.0": {
|
||||
"dependencies": {
|
||||
"System.Formats.Asn1": "8.0.1"
|
||||
}
|
||||
},
|
||||
"OpcPks.Core/1.0.0": {
|
||||
"dependencies": {
|
||||
"Npgsql": "8.0.4",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": "1.5.374.78"
|
||||
},
|
||||
"runtime": {
|
||||
"OpcPks.Core.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"OpcPks.Collector/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==",
|
||||
"path": "microsoft.extensions.logging.abstractions/8.0.1",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||
"path": "newtonsoft.json/13.0.3",
|
||||
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||
},
|
||||
"Npgsql/8.0.4": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vaYEUlF/pB9m8bs21wQv3Da0kMHT4A9USe47VfY/L2BO97xz5KfIxhEu22QS9d68ZrLxvtL3wQDfDLPr2OjbjA==",
|
||||
"path": "npgsql/8.0.4",
|
||||
"hashPath": "npgsql.8.0.4.nupkg.sha512"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client/1.5.374.78": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-MXd8GIxpZ2u4Tbb78wyQzqeyhSgyedZtegHYz7pOM0AmSiMwg/Eghx3xqO/owqo1dsyW20zf0mZflUcNX8rIOQ==",
|
||||
"path": "opcfoundation.netstandard.opc.ua.client/1.5.374.78",
|
||||
"hashPath": "opcfoundation.netstandard.opc.ua.client.1.5.374.78.nupkg.sha512"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.5.374.78": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-bkOZFH+hQsBlZhsci+SaZWrT4yJRnWwmcJLl8BJecWCtW2u6QoC5U1muYHPMN/23ltu8xoy4CPIJMzPR6PNmRw==",
|
||||
"path": "opcfoundation.netstandard.opc.ua.configuration/1.5.374.78",
|
||||
"hashPath": "opcfoundation.netstandard.opc.ua.configuration.1.5.374.78.nupkg.sha512"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core/1.5.374.78": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-iyuo99u7QKv7ZWKGAUxCnGPCzJSThlzn93ce1EDGAH6AnPJHiWtFDQ1n4TlE03kGHA69yO5qlVPLdw+Z/RdYDw==",
|
||||
"path": "opcfoundation.netstandard.opc.ua.core/1.5.374.78",
|
||||
"hashPath": "opcfoundation.netstandard.opc.ua.core.1.5.374.78.nupkg.sha512"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.5.374.78": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-iT++cPyzSnFAGJo9D0NPtHM+byBvIGeGGi535vGla2CTNAWvU1i7MH2T1PGqoYxiEY7dpKlqBlTtg3MQ3eXBrA==",
|
||||
"path": "opcfoundation.netstandard.opc.ua.security.certificates/1.5.374.78",
|
||||
"hashPath": "opcfoundation.netstandard.opc.ua.security.certificates.1.5.374.78.nupkg.sha512"
|
||||
},
|
||||
"System.Formats.Asn1/8.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==",
|
||||
"path": "system.formats.asn1/8.0.1",
|
||||
"hashPath": "system.formats.asn1.8.0.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"
|
||||
},
|
||||
"OpcPks.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,12 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net8.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "8.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
||||
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.dll
Normal file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.dll
Normal file
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.pdb
Normal file
BIN
OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.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("OpcPks.Collector")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+171aaf6115cde8e9e930d14886fafa5fe4c1e4c0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("OpcPks.Collector")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("OpcPks.Collector")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
209bb3a0d499ad79d64f5d7a0d7d5751da0a096972f0887479fd6077018132d3
|
||||
@@ -0,0 +1,13 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net8.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 = OpcPks.Collector
|
||||
build_property.ProjectDir = /home/pacer/projects/OpcPksPlatform/OpcPks.Collector/
|
||||
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 @@
|
||||
4cf7baffa34516138043fd39648462ec804918f8051fec8d47bde3c8cd95ddec
|
||||
@@ -0,0 +1,26 @@
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector.deps.json
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector.runtimeconfig.json
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Collector.pdb
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Newtonsoft.Json.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Npgsql.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Client.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Configuration.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Core.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/Opc.Ua.Security.Certificates.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/bin/Debug/net8.0/OpcPks.Core.pdb
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.csproj.AssemblyReference.cache
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.AssemblyInfoInputs.cache
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.AssemblyInfo.cs
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.csproj.CoreCompileInputs.cache
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.csproj.CopyComplete
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/refint/OpcPks.Collector.dll
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.pdb
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/OpcPks.Collector.genruntimeconfig.cache
|
||||
/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/ref/OpcPks.Collector.dll
|
||||
Binary file not shown.
@@ -0,0 +1 @@
|
||||
2e7da7d25c95ea2605f57b3304ec3e5957ac308a18471f4e6a38c17e90cb7ac6
|
||||
Binary file not shown.
BIN
OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/apphost
Executable file
BIN
OpcPksPlatform/OpcPks.Collector/obj/Debug/net8.0/apphost
Executable file
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,138 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj",
|
||||
"projectName": "OpcPks.Collector",
|
||||
"projectPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj",
|
||||
"packagesPath": "/home/pacer/.nuget/packages/",
|
||||
"outputPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/pacer/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj": {
|
||||
"projectPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Npgsql": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.4, )"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": {
|
||||
"target": "Package",
|
||||
"version": "[1.5.374.78, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.124/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj",
|
||||
"projectName": "OpcPks.Core",
|
||||
"projectPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj",
|
||||
"packagesPath": "/home/pacer/.nuget/packages/",
|
||||
"outputPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Core/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/pacer/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Npgsql": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.4, )"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": {
|
||||
"target": "Package",
|
||||
"version": "[1.5.374.78, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.124/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
<?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)' == '' ">/home/pacer/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/pacer/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.8.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/pacer/.nuget/packages/" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.1/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/8.0.1/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
|
||||
</ImportGroup>
|
||||
</Project>
|
||||
647
OpcPksPlatform/OpcPks.Collector/obj/project.assets.json
Normal file
647
OpcPksPlatform/OpcPks.Collector/obj/project.assets.json
Normal file
@@ -0,0 +1,647 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net8.0": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net6.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Npgsql/8.0.4": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Npgsql.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Npgsql.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client/1.5.374.78": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration": "1.5.374.78",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.5.374.78"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Opc.Ua.Client.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Client.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.5.374.78": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core": "1.5.374.78"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Opc.Ua.Configuration.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Configuration.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core/1.5.374.78": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Logging.Abstractions": "8.0.1",
|
||||
"Newtonsoft.Json": "13.0.3",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates": "1.5.374.78"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Opc.Ua.Core.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Core.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.5.374.78": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Formats.Asn1": "8.0.1",
|
||||
"System.Security.Cryptography.Cng": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net8.0/Opc.Ua.Security.Certificates.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Opc.Ua.Security.Certificates.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Formats.Asn1/8.0.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/System.Formats.Asn1.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/System.Formats.Asn1.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"build": {
|
||||
"buildTransitive/net6.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Security.Cryptography.Cng/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Formats.Asn1": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"OpcPks.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETCoreApp,Version=v8.0",
|
||||
"dependencies": {
|
||||
"Npgsql": "8.0.4",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": "1.5.374.78"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/OpcPks.Core.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/OpcPks.Core.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/8.0.1": {
|
||||
"sha512": "fGLiCRLMYd00JYpClraLjJTNKLmMJPnqxMaiRzEBIIvevlzxz33mXy39Lkd48hu1G+N21S7QpaO5ZzKsI6FRuA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/8.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net6.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets",
|
||||
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
||||
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/8.0.1": {
|
||||
"sha512": "RIFgaqoaINxkM2KTOw72dmilDmTrYA0ns2KW4lDz4gZ2+o6IQ894CzmdL3StM2oh7QQq44nCWiqKqc4qUI9Jmg==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.logging.abstractions/8.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"PACKAGE.md",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll",
|
||||
"buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets",
|
||||
"lib/net462/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net462/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml",
|
||||
"microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512",
|
||||
"microsoft.extensions.logging.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"Newtonsoft.Json/13.0.3": {
|
||||
"sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||
"type": "package",
|
||||
"path": "newtonsoft.json/13.0.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.md",
|
||||
"README.md",
|
||||
"lib/net20/Newtonsoft.Json.dll",
|
||||
"lib/net20/Newtonsoft.Json.xml",
|
||||
"lib/net35/Newtonsoft.Json.dll",
|
||||
"lib/net35/Newtonsoft.Json.xml",
|
||||
"lib/net40/Newtonsoft.Json.dll",
|
||||
"lib/net40/Newtonsoft.Json.xml",
|
||||
"lib/net45/Newtonsoft.Json.dll",
|
||||
"lib/net45/Newtonsoft.Json.xml",
|
||||
"lib/net6.0/Newtonsoft.Json.dll",
|
||||
"lib/net6.0/Newtonsoft.Json.xml",
|
||||
"lib/netstandard1.0/Newtonsoft.Json.dll",
|
||||
"lib/netstandard1.0/Newtonsoft.Json.xml",
|
||||
"lib/netstandard1.3/Newtonsoft.Json.dll",
|
||||
"lib/netstandard1.3/Newtonsoft.Json.xml",
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll",
|
||||
"lib/netstandard2.0/Newtonsoft.Json.xml",
|
||||
"newtonsoft.json.13.0.3.nupkg.sha512",
|
||||
"newtonsoft.json.nuspec",
|
||||
"packageIcon.png"
|
||||
]
|
||||
},
|
||||
"Npgsql/8.0.4": {
|
||||
"sha512": "vaYEUlF/pB9m8bs21wQv3Da0kMHT4A9USe47VfY/L2BO97xz5KfIxhEu22QS9d68ZrLxvtL3wQDfDLPr2OjbjA==",
|
||||
"type": "package",
|
||||
"path": "npgsql/8.0.4",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"README.md",
|
||||
"lib/net6.0/Npgsql.dll",
|
||||
"lib/net6.0/Npgsql.xml",
|
||||
"lib/net7.0/Npgsql.dll",
|
||||
"lib/net7.0/Npgsql.xml",
|
||||
"lib/net8.0/Npgsql.dll",
|
||||
"lib/net8.0/Npgsql.xml",
|
||||
"lib/netstandard2.0/Npgsql.dll",
|
||||
"lib/netstandard2.0/Npgsql.xml",
|
||||
"lib/netstandard2.1/Npgsql.dll",
|
||||
"lib/netstandard2.1/Npgsql.xml",
|
||||
"npgsql.8.0.4.nupkg.sha512",
|
||||
"npgsql.nuspec",
|
||||
"postgresql.png"
|
||||
]
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client/1.5.374.78": {
|
||||
"sha512": "MXd8GIxpZ2u4Tbb78wyQzqeyhSgyedZtegHYz7pOM0AmSiMwg/Eghx3xqO/owqo1dsyW20zf0mZflUcNX8rIOQ==",
|
||||
"type": "package",
|
||||
"path": "opcfoundation.netstandard.opc.ua.client/1.5.374.78",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"NugetREADME.md",
|
||||
"OPC Foundation MIT license.txt",
|
||||
"images/logo.jpg",
|
||||
"lib/net472/Opc.Ua.Client.dll",
|
||||
"lib/net472/Opc.Ua.Client.xml",
|
||||
"lib/net48/Opc.Ua.Client.dll",
|
||||
"lib/net48/Opc.Ua.Client.xml",
|
||||
"lib/net6.0/Opc.Ua.Client.dll",
|
||||
"lib/net6.0/Opc.Ua.Client.xml",
|
||||
"lib/net8.0/Opc.Ua.Client.dll",
|
||||
"lib/net8.0/Opc.Ua.Client.xml",
|
||||
"lib/netstandard2.0/Opc.Ua.Client.dll",
|
||||
"lib/netstandard2.0/Opc.Ua.Client.xml",
|
||||
"lib/netstandard2.1/Opc.Ua.Client.dll",
|
||||
"lib/netstandard2.1/Opc.Ua.Client.xml",
|
||||
"opcfoundation.netstandard.opc.ua.client.1.5.374.78.nupkg.sha512",
|
||||
"opcfoundation.netstandard.opc.ua.client.nuspec"
|
||||
]
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Configuration/1.5.374.78": {
|
||||
"sha512": "bkOZFH+hQsBlZhsci+SaZWrT4yJRnWwmcJLl8BJecWCtW2u6QoC5U1muYHPMN/23ltu8xoy4CPIJMzPR6PNmRw==",
|
||||
"type": "package",
|
||||
"path": "opcfoundation.netstandard.opc.ua.configuration/1.5.374.78",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"NugetREADME.md",
|
||||
"OPC Foundation MIT license.txt",
|
||||
"images/logo.jpg",
|
||||
"lib/net472/Opc.Ua.Configuration.dll",
|
||||
"lib/net472/Opc.Ua.Configuration.xml",
|
||||
"lib/net48/Opc.Ua.Configuration.dll",
|
||||
"lib/net48/Opc.Ua.Configuration.xml",
|
||||
"lib/net6.0/Opc.Ua.Configuration.dll",
|
||||
"lib/net6.0/Opc.Ua.Configuration.xml",
|
||||
"lib/net8.0/Opc.Ua.Configuration.dll",
|
||||
"lib/net8.0/Opc.Ua.Configuration.xml",
|
||||
"lib/netstandard2.0/Opc.Ua.Configuration.dll",
|
||||
"lib/netstandard2.0/Opc.Ua.Configuration.xml",
|
||||
"lib/netstandard2.1/Opc.Ua.Configuration.dll",
|
||||
"lib/netstandard2.1/Opc.Ua.Configuration.xml",
|
||||
"opcfoundation.netstandard.opc.ua.configuration.1.5.374.78.nupkg.sha512",
|
||||
"opcfoundation.netstandard.opc.ua.configuration.nuspec"
|
||||
]
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Core/1.5.374.78": {
|
||||
"sha512": "iyuo99u7QKv7ZWKGAUxCnGPCzJSThlzn93ce1EDGAH6AnPJHiWtFDQ1n4TlE03kGHA69yO5qlVPLdw+Z/RdYDw==",
|
||||
"type": "package",
|
||||
"path": "opcfoundation.netstandard.opc.ua.core/1.5.374.78",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"NugetREADME.md",
|
||||
"images/logo.jpg",
|
||||
"lib/net472/Opc.Ua.Core.dll",
|
||||
"lib/net472/Opc.Ua.Core.xml",
|
||||
"lib/net48/Opc.Ua.Core.dll",
|
||||
"lib/net48/Opc.Ua.Core.xml",
|
||||
"lib/net6.0/Opc.Ua.Core.dll",
|
||||
"lib/net6.0/Opc.Ua.Core.xml",
|
||||
"lib/net8.0/Opc.Ua.Core.dll",
|
||||
"lib/net8.0/Opc.Ua.Core.xml",
|
||||
"lib/netstandard2.0/Opc.Ua.Core.dll",
|
||||
"lib/netstandard2.0/Opc.Ua.Core.xml",
|
||||
"lib/netstandard2.1/Opc.Ua.Core.dll",
|
||||
"lib/netstandard2.1/Opc.Ua.Core.xml",
|
||||
"licenses/LICENSE.txt",
|
||||
"opcfoundation.netstandard.opc.ua.core.1.5.374.78.nupkg.sha512",
|
||||
"opcfoundation.netstandard.opc.ua.core.nuspec"
|
||||
]
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Security.Certificates/1.5.374.78": {
|
||||
"sha512": "iT++cPyzSnFAGJo9D0NPtHM+byBvIGeGGi535vGla2CTNAWvU1i7MH2T1PGqoYxiEY7dpKlqBlTtg3MQ3eXBrA==",
|
||||
"type": "package",
|
||||
"path": "opcfoundation.netstandard.opc.ua.security.certificates/1.5.374.78",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"NugetREADME.md",
|
||||
"OPC Foundation MIT license.txt",
|
||||
"images/logo.jpg",
|
||||
"lib/net472/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/net472/Opc.Ua.Security.Certificates.xml",
|
||||
"lib/net48/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/net48/Opc.Ua.Security.Certificates.xml",
|
||||
"lib/net6.0/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/net6.0/Opc.Ua.Security.Certificates.xml",
|
||||
"lib/net8.0/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/net8.0/Opc.Ua.Security.Certificates.xml",
|
||||
"lib/netstandard2.0/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/netstandard2.0/Opc.Ua.Security.Certificates.xml",
|
||||
"lib/netstandard2.1/Opc.Ua.Security.Certificates.dll",
|
||||
"lib/netstandard2.1/Opc.Ua.Security.Certificates.xml",
|
||||
"opcfoundation.netstandard.opc.ua.security.certificates.1.5.374.78.nupkg.sha512",
|
||||
"opcfoundation.netstandard.opc.ua.security.certificates.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Formats.Asn1/8.0.1": {
|
||||
"sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==",
|
||||
"type": "package",
|
||||
"path": "system.formats.asn1/8.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"buildTransitive/net461/System.Formats.Asn1.targets",
|
||||
"buildTransitive/net462/_._",
|
||||
"buildTransitive/net6.0/_._",
|
||||
"buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets",
|
||||
"lib/net462/System.Formats.Asn1.dll",
|
||||
"lib/net462/System.Formats.Asn1.xml",
|
||||
"lib/net6.0/System.Formats.Asn1.dll",
|
||||
"lib/net6.0/System.Formats.Asn1.xml",
|
||||
"lib/net7.0/System.Formats.Asn1.dll",
|
||||
"lib/net7.0/System.Formats.Asn1.xml",
|
||||
"lib/net8.0/System.Formats.Asn1.dll",
|
||||
"lib/net8.0/System.Formats.Asn1.xml",
|
||||
"lib/netstandard2.0/System.Formats.Asn1.dll",
|
||||
"lib/netstandard2.0/System.Formats.Asn1.xml",
|
||||
"system.formats.asn1.8.0.1.nupkg.sha512",
|
||||
"system.formats.asn1.nuspec",
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Security.Cryptography.Cng/5.0.0": {
|
||||
"sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==",
|
||||
"type": "package",
|
||||
"path": "system.security.cryptography.cng/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net46/System.Security.Cryptography.Cng.dll",
|
||||
"lib/net461/System.Security.Cryptography.Cng.dll",
|
||||
"lib/net461/System.Security.Cryptography.Cng.xml",
|
||||
"lib/net462/System.Security.Cryptography.Cng.dll",
|
||||
"lib/net462/System.Security.Cryptography.Cng.xml",
|
||||
"lib/net47/System.Security.Cryptography.Cng.dll",
|
||||
"lib/net47/System.Security.Cryptography.Cng.xml",
|
||||
"lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
|
||||
"lib/netstandard1.3/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netstandard2.0/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netstandard2.0/System.Security.Cryptography.Cng.xml",
|
||||
"lib/netstandard2.1/System.Security.Cryptography.Cng.dll",
|
||||
"lib/netstandard2.1/System.Security.Cryptography.Cng.xml",
|
||||
"lib/uap10.0.16299/_._",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/net46/System.Security.Cryptography.Cng.dll",
|
||||
"ref/net461/System.Security.Cryptography.Cng.dll",
|
||||
"ref/net461/System.Security.Cryptography.Cng.xml",
|
||||
"ref/net462/System.Security.Cryptography.Cng.dll",
|
||||
"ref/net462/System.Security.Cryptography.Cng.xml",
|
||||
"ref/net47/System.Security.Cryptography.Cng.dll",
|
||||
"ref/net47/System.Security.Cryptography.Cng.xml",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml",
|
||||
"ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
|
||||
"ref/netstandard1.3/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netstandard1.4/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netstandard1.6/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netstandard2.0/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netstandard2.0/System.Security.Cryptography.Cng.xml",
|
||||
"ref/netstandard2.1/System.Security.Cryptography.Cng.dll",
|
||||
"ref/netstandard2.1/System.Security.Cryptography.Cng.xml",
|
||||
"ref/uap10.0.16299/_._",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml",
|
||||
"runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml",
|
||||
"runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml",
|
||||
"runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll",
|
||||
"runtimes/win/lib/uap10.0.16299/_._",
|
||||
"system.security.cryptography.cng.5.0.0.nupkg.sha512",
|
||||
"system.security.cryptography.cng.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"OpcPks.Core/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../OpcPks.Core/OpcPks.Core.csproj",
|
||||
"msbuildProject": "../OpcPks.Core/OpcPks.Core.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
"net8.0": [
|
||||
"Npgsql >= 8.0.4",
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client >= 1.5.374.78",
|
||||
"OpcPks.Core >= 1.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"/home/pacer/.nuget/packages/": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj",
|
||||
"projectName": "OpcPks.Collector",
|
||||
"projectPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj",
|
||||
"packagesPath": "/home/pacer/.nuget/packages/",
|
||||
"outputPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/obj/",
|
||||
"projectStyle": "PackageReference",
|
||||
"configFilePaths": [
|
||||
"/home/pacer/.nuget/NuGet/NuGet.Config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"net8.0"
|
||||
],
|
||||
"sources": {
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"projectReferences": {
|
||||
"/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj": {
|
||||
"projectPath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Core/OpcPks.Core.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"net8.0": {
|
||||
"targetAlias": "net8.0",
|
||||
"dependencies": {
|
||||
"Npgsql": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.4, )"
|
||||
},
|
||||
"OPCFoundation.NetStandard.Opc.Ua.Client": {
|
||||
"target": "Package",
|
||||
"version": "[1.5.374.78, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48",
|
||||
"net481"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/usr/lib/dotnet/sdk/8.0.124/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
19
OpcPksPlatform/OpcPks.Collector/obj/project.nuget.cache
Normal file
19
OpcPksPlatform/OpcPks.Collector/obj/project.nuget.cache
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "Ss/LGtmEz6bGqFLDBeOQraeIOz4GJx8DXco1HIk9iTBKYbd6NwtokIeOYq2RppLVb7CosaTJxhVcfARA/lFnlQ==",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/pacer/projects/OpcPksPlatform/OpcPks.Collector/OpcPks.Collector.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"/home/pacer/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/8.0.1/microsoft.extensions.dependencyinjection.abstractions.8.0.1.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/microsoft.extensions.logging.abstractions/8.0.1/microsoft.extensions.logging.abstractions.8.0.1.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/npgsql/8.0.4/npgsql.8.0.4.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/opcfoundation.netstandard.opc.ua.client/1.5.374.78/opcfoundation.netstandard.opc.ua.client.1.5.374.78.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/opcfoundation.netstandard.opc.ua.configuration/1.5.374.78/opcfoundation.netstandard.opc.ua.configuration.1.5.374.78.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/opcfoundation.netstandard.opc.ua.core/1.5.374.78/opcfoundation.netstandard.opc.ua.core.1.5.374.78.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/opcfoundation.netstandard.opc.ua.security.certificates/1.5.374.78/opcfoundation.netstandard.opc.ua.security.certificates.1.5.374.78.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/system.formats.asn1/8.0.1/system.formats.asn1.8.0.1.nupkg.sha512",
|
||||
"/home/pacer/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
||||
Reference in New Issue
Block a user