Start Create Config
This commit is contained in:
16
STPClient/Config/config.json
Normal file
16
STPClient/Config/config.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"servers": [
|
||||
{
|
||||
"name": "STP 1",
|
||||
"ip": "10.10.45.151",
|
||||
"port": 1070,
|
||||
"dir": "Y:\\data"
|
||||
},
|
||||
{
|
||||
"name": "STP 2",
|
||||
"ip": "10.10.45.152",
|
||||
"port": 1070,
|
||||
"dir": "Z:\\data"
|
||||
}
|
||||
]
|
||||
}
|
12
STPClient/Properties/PublishProfiles/FolderProfile.pubxml
Normal file
12
STPClient/Properties/PublishProfiles/FolderProfile.pubxml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>..\Release\STPClient\</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<History>True|2021-05-27T05:25:25.8638099Z;True|2021-05-27T10:16:30.2483150+05:00;</History>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -1,16 +1,87 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using NLog;
|
||||
using Newtonsoft.Json;
|
||||
using Newtonsoft.Json.Linq;
|
||||
using DataClient.Struct;
|
||||
using System.Net;
|
||||
|
||||
namespace STPClient
|
||||
namespace DataClient
|
||||
{
|
||||
public class STPClient
|
||||
{
|
||||
private List<(string address, string archive)> servers = new List<(string address, string archive)>();
|
||||
Logger log = LogManager.GetCurrentClassLogger();
|
||||
string confDir = Path.Combine(Directory.GetCurrentDirectory(), "Config", "config.json");
|
||||
private List<server> servers = new List<server>();
|
||||
int serverDefault = -1;
|
||||
|
||||
STPClient()
|
||||
public STPClient()
|
||||
{
|
||||
log.Trace("Create instance class.");
|
||||
GetConfig();
|
||||
|
||||
try
|
||||
{
|
||||
|
||||
log.Info("Test_Info");
|
||||
log.Warn("Test_Warn");
|
||||
log.Debug("Test_Debug");
|
||||
log.Error("Test_Error");
|
||||
log.Fatal("Test_Fatal");
|
||||
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
log.Warn(e, "Test_Exception");
|
||||
}
|
||||
}
|
||||
public STPClient(string confDir)
|
||||
{
|
||||
this.confDir = confDir;
|
||||
GetConfig();
|
||||
try
|
||||
{
|
||||
log.Trace("Create STPClient instance.");
|
||||
log.Info("Test_Info");
|
||||
log.Warn("Test_Warn");
|
||||
log.Debug("Test_Debug");
|
||||
log.Error("Test_Error");
|
||||
log.Fatal("Test_Fatal");
|
||||
throw new Exception("MyException");
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.Warn(e, "Test_Exception");
|
||||
}
|
||||
}
|
||||
|
||||
private void GetConfig()
|
||||
{
|
||||
var jsonString = "";
|
||||
try
|
||||
{
|
||||
log.Trace("Read config file.");
|
||||
jsonString = File.ReadAllText(confDir);
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
log.Error(e, "Can't read config file.");
|
||||
return;
|
||||
}
|
||||
var conf = (JObject)JsonConvert.DeserializeObject(jsonString);
|
||||
if (!conf.HasValues && !conf["servers"].HasValues && conf["servers"].Type != JTokenType.Array)
|
||||
{
|
||||
log.Warn("Exist servers object in config file.");
|
||||
return;
|
||||
}
|
||||
foreach(var s in conf["servers"])
|
||||
{
|
||||
var name = (s["name"].Type == JTokenType.String) ? (string)s["name"] : "default";
|
||||
var ip = (s["ip"].Type == JTokenType.String && IPAddress.TryParse((string)s["ip"], out IPAddress address)) ? (string)s["name"] : null;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
@@ -5,7 +5,13 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="config.json">
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
<PackageReference Include="NLog" Version="4.7.10" />
|
||||
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.2" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="Config\config.json">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
6
STPClient/STPClient.csproj.user
Normal file
6
STPClient/STPClient.csproj.user
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<_LastSelectedProfileId>D:\GIT\ASCKU_PC\STPClient\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -4,25 +4,27 @@ using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace STPClient.Struct
|
||||
namespace DataClient.Struct
|
||||
{
|
||||
struct server
|
||||
{
|
||||
string name;
|
||||
string address;
|
||||
string archive;
|
||||
public server(string Address, string Archive)
|
||||
string ip;
|
||||
int port;
|
||||
string dir;
|
||||
public server(string Ip, int Port, string Dir)
|
||||
{
|
||||
name = "default";
|
||||
address = Address;
|
||||
archive = Archive;
|
||||
ip = Ip;
|
||||
port = Port;
|
||||
dir = Dir;
|
||||
}
|
||||
public server(string Name, string Address, string Archive)
|
||||
public server(string Name, string Ip, int Port, string Dir)
|
||||
{
|
||||
name = Name;
|
||||
address = Address;
|
||||
archive = Archive;
|
||||
ip = Ip;
|
||||
port = Port;
|
||||
dir = Dir;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
199
STPClient/bin/Debug/net5.0/STPClient.deps.json
Normal file
199
STPClient/bin/Debug/net5.0/STPClient.deps.json
Normal file
@@ -0,0 +1,199 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"STPClient/1.0.0": {
|
||||
"dependencies": {
|
||||
"NLog": "4.7.10",
|
||||
"NLog.Extensions.Logging": "1.7.2",
|
||||
"Newtonsoft.Json": "13.0.1"
|
||||
},
|
||||
"runtime": {
|
||||
"STPClient.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Options": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Primitives": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "13.0.0.0",
|
||||
"fileVersion": "13.0.1.25517"
|
||||
}
|
||||
}
|
||||
},
|
||||
"NLog/4.7.10": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/NLog.dll": {
|
||||
"assemblyVersion": "4.0.0.0",
|
||||
"fileVersion": "4.7.10.13013"
|
||||
}
|
||||
}
|
||||
},
|
||||
"NLog.Extensions.Logging/1.7.2": {
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Logging": "5.0.0",
|
||||
"NLog": "4.7.10"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/NLog.Extensions.Logging.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.7.2.1548"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"STPClient/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
|
||||
"path": "microsoft.extensions.configuration.abstractions/5.0.0",
|
||||
"hashPath": "microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
|
||||
"path": "microsoft.extensions.dependencyinjection/5.0.0",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
|
||||
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
|
||||
"path": "microsoft.extensions.logging/5.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
|
||||
"path": "microsoft.extensions.logging.abstractions/5.0.0",
|
||||
"hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Options/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
|
||||
"path": "microsoft.extensions.options/5.0.0",
|
||||
"hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
|
||||
"path": "microsoft.extensions.primitives/5.0.0",
|
||||
"hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
||||
"path": "newtonsoft.json/13.0.1",
|
||||
"hashPath": "newtonsoft.json.13.0.1.nupkg.sha512"
|
||||
},
|
||||
"NLog/4.7.10": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==",
|
||||
"path": "nlog/4.7.10",
|
||||
"hashPath": "nlog.4.7.10.nupkg.sha512"
|
||||
},
|
||||
"NLog.Extensions.Logging/1.7.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0y1QziAUCdePQc4itPOQF3xDcs0iE9NHlIK0hE0eA0+Ef6E9dnJDPveNu7w2ckYaDfJIFHpOoLK8sZmNEyiBCw==",
|
||||
"path": "nlog.extensions.logging/1.7.2",
|
||||
"hashPath": "nlog.extensions.logging.1.7.2.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
STPClient/bin/Debug/net5.0/STPClient.dll
Normal file
BIN
STPClient/bin/Debug/net5.0/STPClient.dll
Normal file
Binary file not shown.
BIN
STPClient/bin/Debug/net5.0/STPClient.pdb
Normal file
BIN
STPClient/bin/Debug/net5.0/STPClient.pdb
Normal file
Binary file not shown.
BIN
STPClient/bin/Debug/net5.0/ref/STPClient.dll
Normal file
BIN
STPClient/bin/Debug/net5.0/ref/STPClient.dll
Normal file
Binary file not shown.
14
STPClient/bin/Release/net5.0/Config/config.json
Normal file
14
STPClient/bin/Release/net5.0/Config/config.json
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"servers": [
|
||||
{
|
||||
"name": "STP 1",
|
||||
"address": "10.10.45.151:1070",
|
||||
"archive": "Y:\\data"
|
||||
},
|
||||
{
|
||||
"name": "STP 2",
|
||||
"address": "10.10.45.152:1070",
|
||||
"archive": "Z:\\data"
|
||||
}
|
||||
]
|
||||
}
|
23
STPClient/bin/Release/net5.0/STPClient.deps.json
Normal file
23
STPClient/bin/Release/net5.0/STPClient.deps.json
Normal file
@@ -0,0 +1,23 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v5.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v5.0": {
|
||||
"STPClient/1.0.0": {
|
||||
"runtime": {
|
||||
"STPClient.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"STPClient/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
STPClient/bin/Release/net5.0/STPClient.dll
Normal file
BIN
STPClient/bin/Release/net5.0/STPClient.dll
Normal file
Binary file not shown.
BIN
STPClient/bin/Release/net5.0/STPClient.pdb
Normal file
BIN
STPClient/bin/Release/net5.0/STPClient.pdb
Normal file
Binary file not shown.
BIN
STPClient/bin/Release/net5.0/ref/STPClient.dll
Normal file
BIN
STPClient/bin/Release/net5.0/ref/STPClient.dll
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
a29c3e780c8e96aa2aba5808887a3d3a0431eb52
|
@@ -0,0 +1,13 @@
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Debug\net5.0\Config\config.json
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Debug\net5.0\STPClient.deps.json
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Debug\net5.0\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Debug\net5.0\ref\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Debug\net5.0\STPClient.pdb
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.csprojAssemblyReference.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.AssemblyInfoInputs.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.AssemblyInfo.cs
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.csproj.CoreCompileInputs.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\ref\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Debug\net5.0\STPClient.pdb
|
Binary file not shown.
BIN
STPClient/obj/Debug/net5.0/STPClient.dll
Normal file
BIN
STPClient/obj/Debug/net5.0/STPClient.dll
Normal file
Binary file not shown.
BIN
STPClient/obj/Debug/net5.0/STPClient.pdb
Normal file
BIN
STPClient/obj/Debug/net5.0/STPClient.pdb
Normal file
Binary file not shown.
BIN
STPClient/obj/Debug/net5.0/ref/STPClient.dll
Normal file
BIN
STPClient/obj/Debug/net5.0/ref/STPClient.dll
Normal file
Binary file not shown.
16
STPClient/obj/Release/STPClient.1.0.0.nuspec
Normal file
16
STPClient/obj/Release/STPClient.1.0.0.nuspec
Normal file
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
|
||||
<metadata>
|
||||
<id>STPClient</id>
|
||||
<version>1.0.0</version>
|
||||
<authors>STPClient</authors>
|
||||
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
||||
<description>Package Description</description>
|
||||
<dependencies>
|
||||
<group targetFramework="net5.0" />
|
||||
</dependencies>
|
||||
</metadata>
|
||||
<files>
|
||||
<file src="D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\STPClient.dll" target="lib\net5.0\STPClient.dll" />
|
||||
</files>
|
||||
</package>
|
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
|
23
STPClient/obj/Release/net5.0/STPClient.AssemblyInfo.cs
Normal file
23
STPClient/obj/Release/net5.0/STPClient.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("STPClient")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("STPClient")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("STPClient")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
@@ -0,0 +1 @@
|
||||
37f042a4f38dfb7d4476c4b8fc055adc3323e40d
|
@@ -0,0 +1,8 @@
|
||||
is_global = true
|
||||
build_property.TargetFramework = net5.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.PublishSingleFile =
|
||||
build_property.IncludeAllContentForSelfExtract =
|
||||
build_property._SupportedPlatformList = Android,iOS,Linux,macOS,Windows
|
BIN
STPClient/obj/Release/net5.0/STPClient.assets.cache
Normal file
BIN
STPClient/obj/Release/net5.0/STPClient.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
76d37c1a71009ecd915d190cd7beb8053e3ff188
|
@@ -0,0 +1,13 @@
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\Config\config.json
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\STPClient.deps.json
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\ref\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\bin\Release\net5.0\STPClient.pdb
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.csprojAssemblyReference.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.GeneratedMSBuildEditorConfig.editorconfig
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.AssemblyInfoInputs.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.AssemblyInfo.cs
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.csproj.CoreCompileInputs.cache
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\ref\STPClient.dll
|
||||
D:\GIT\ASCKU_PC\STPClient\obj\Release\net5.0\STPClient.pdb
|
Binary file not shown.
BIN
STPClient/obj/Release/net5.0/STPClient.dll
Normal file
BIN
STPClient/obj/Release/net5.0/STPClient.dll
Normal file
Binary file not shown.
BIN
STPClient/obj/Release/net5.0/STPClient.pdb
Normal file
BIN
STPClient/obj/Release/net5.0/STPClient.pdb
Normal file
Binary file not shown.
BIN
STPClient/obj/Release/net5.0/ref/STPClient.dll
Normal file
BIN
STPClient/obj/Release/net5.0/ref/STPClient.dll
Normal file
Binary file not shown.
@@ -1,24 +1,25 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj": {}
|
||||
"D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj": {
|
||||
"D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"projectName": "STPClient",
|
||||
"projectPath": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\GIT\\ASCKU_PC\\STPClient\\obj\\",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\STPClient\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
@@ -45,6 +46,20 @@
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"NLog": {
|
||||
"target": "Package",
|
||||
"version": "[4.7.10, )"
|
||||
},
|
||||
"NLog.Extensions.Logging": {
|
||||
"target": "Package",
|
||||
"version": "[1.7.2, )"
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"target": "Package",
|
||||
"version": "[13.0.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
@@ -60,7 +75,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -5,14 +5,15 @@
|
||||
<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\Admin\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\</NuGetPackageFolders>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\google\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Admin\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Users\google\.nuget\packages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
|
||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||
</ItemGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
|
@@ -1,32 +1,387 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
"net5.0": {}
|
||||
"net5.0": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Primitives": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection": "5.0.0",
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Logging.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Options": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Options/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Primitives": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll": {}
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {}
|
||||
}
|
||||
},
|
||||
"NLog/4.7.10": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/NLog.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/NLog.dll": {}
|
||||
}
|
||||
},
|
||||
"NLog.Extensions.Logging/1.7.2": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions": "5.0.0",
|
||||
"Microsoft.Extensions.Logging": "5.0.0",
|
||||
"NLog": "4.7.9"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net5.0/NLog.Extensions.Logging.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/NLog.Extensions.Logging.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.Extensions.Configuration.Abstractions/5.0.0": {
|
||||
"sha512": "ETjSBHMp3OAZ4HxGQYpwyGsD8Sw5FegQXphi0rpoGMT74S4+I2mm7XJEswwn59XAaKOzC15oDSOWEE8SzDCd6Q==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.configuration.abstractions/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.dll",
|
||||
"lib/net461/Microsoft.Extensions.Configuration.Abstractions.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml",
|
||||
"microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.configuration.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection/5.0.0": {
|
||||
"sha512": "Rc2kb/p3Ze6cP6rhFC3PJRdWGbLvSHZc0ev7YlyeU6FmHciDMLrhoVoTUEzKPhN5ZjFgKF1Cf5fOz8mCMIkvpA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.dependencyinjection/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.DependencyInjection.dll",
|
||||
"lib/net461/Microsoft.Extensions.DependencyInjection.xml",
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.dll",
|
||||
"lib/net5.0/Microsoft.Extensions.DependencyInjection.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml",
|
||||
"microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.dependencyinjection.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {
|
||||
"sha512": "ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/net461/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml",
|
||||
"microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.dependencyinjection.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Logging/5.0.0": {
|
||||
"sha512": "MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.logging/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.Logging.dll",
|
||||
"lib/net461/Microsoft.Extensions.Logging.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Logging.xml",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.dll",
|
||||
"lib/netstandard2.1/Microsoft.Extensions.Logging.xml",
|
||||
"microsoft.extensions.logging.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.logging.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Logging.Abstractions/5.0.0": {
|
||||
"sha512": "NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.logging.abstractions/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.Logging.Abstractions.dll",
|
||||
"lib/net461/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.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.logging.abstractions.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Options/5.0.0": {
|
||||
"sha512": "CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.options/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.Options.dll",
|
||||
"lib/net461/Microsoft.Extensions.Options.xml",
|
||||
"lib/net5.0/Microsoft.Extensions.Options.dll",
|
||||
"lib/net5.0/Microsoft.Extensions.Options.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Options.xml",
|
||||
"microsoft.extensions.options.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.options.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Extensions.Primitives/5.0.0": {
|
||||
"sha512": "cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.extensions.primitives/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Extensions.Primitives.dll",
|
||||
"lib/net461/Microsoft.Extensions.Primitives.xml",
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.dll",
|
||||
"lib/netcoreapp3.0/Microsoft.Extensions.Primitives.xml",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.dll",
|
||||
"lib/netstandard2.0/Microsoft.Extensions.Primitives.xml",
|
||||
"microsoft.extensions.primitives.5.0.0.nupkg.sha512",
|
||||
"microsoft.extensions.primitives.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Newtonsoft.Json/13.0.1": {
|
||||
"sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==",
|
||||
"type": "package",
|
||||
"path": "newtonsoft.json/13.0.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.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/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.1.nupkg.sha512",
|
||||
"newtonsoft.json.nuspec",
|
||||
"packageIcon.png"
|
||||
]
|
||||
},
|
||||
"NLog/4.7.10": {
|
||||
"sha512": "rcegW7kYOCjl7wX0SzsqpPBqnJ51JKi1WkYb6QBVX0Wc5IgH19Pv4t/co+T0s06OS0Ne44xgkY/mHg0PdrmJow==",
|
||||
"type": "package",
|
||||
"path": "nlog/4.7.10",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/monoandroid44/NLog.dll",
|
||||
"lib/monoandroid44/NLog.xml",
|
||||
"lib/net35/NLog.dll",
|
||||
"lib/net35/NLog.xml",
|
||||
"lib/net40-client/NLog.dll",
|
||||
"lib/net40-client/NLog.xml",
|
||||
"lib/net45/NLog.dll",
|
||||
"lib/net45/NLog.xml",
|
||||
"lib/netstandard1.3/NLog.dll",
|
||||
"lib/netstandard1.3/NLog.xml",
|
||||
"lib/netstandard1.5/NLog.dll",
|
||||
"lib/netstandard1.5/NLog.xml",
|
||||
"lib/netstandard2.0/NLog.dll",
|
||||
"lib/netstandard2.0/NLog.xml",
|
||||
"lib/sl4/NLog.dll",
|
||||
"lib/sl4/NLog.xml",
|
||||
"lib/sl5/NLog.dll",
|
||||
"lib/sl5/NLog.xml",
|
||||
"lib/wp8/NLog.dll",
|
||||
"lib/wp8/NLog.xml",
|
||||
"lib/xamarinios10/NLog.dll",
|
||||
"lib/xamarinios10/NLog.xml",
|
||||
"nlog.4.7.10.nupkg.sha512",
|
||||
"nlog.nuspec"
|
||||
]
|
||||
},
|
||||
"NLog.Extensions.Logging/1.7.2": {
|
||||
"sha512": "0y1QziAUCdePQc4itPOQF3xDcs0iE9NHlIK0hE0eA0+Ef6E9dnJDPveNu7w2ckYaDfJIFHpOoLK8sZmNEyiBCw==",
|
||||
"type": "package",
|
||||
"path": "nlog.extensions.logging/1.7.2",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"N.png",
|
||||
"lib/net451/NLog.Extensions.Logging.dll",
|
||||
"lib/net451/NLog.Extensions.Logging.xml",
|
||||
"lib/net461/NLog.Extensions.Logging.dll",
|
||||
"lib/net461/NLog.Extensions.Logging.xml",
|
||||
"lib/net5.0/NLog.Extensions.Logging.dll",
|
||||
"lib/net5.0/NLog.Extensions.Logging.xml",
|
||||
"lib/netcoreapp3.0/NLog.Extensions.Logging.dll",
|
||||
"lib/netcoreapp3.0/NLog.Extensions.Logging.xml",
|
||||
"lib/netstandard1.3/NLog.Extensions.Logging.dll",
|
||||
"lib/netstandard1.3/NLog.Extensions.Logging.xml",
|
||||
"lib/netstandard1.5/NLog.Extensions.Logging.dll",
|
||||
"lib/netstandard1.5/NLog.Extensions.Logging.xml",
|
||||
"lib/netstandard2.0/NLog.Extensions.Logging.dll",
|
||||
"lib/netstandard2.0/NLog.Extensions.Logging.xml",
|
||||
"nlog.extensions.logging.1.7.2.nupkg.sha512",
|
||||
"nlog.extensions.logging.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"libraries": {},
|
||||
"projectFileDependencyGroups": {
|
||||
"net5.0": []
|
||||
"net5.0": [
|
||||
"NLog >= 4.7.10",
|
||||
"NLog.Extensions.Logging >= 1.7.2",
|
||||
"Newtonsoft.Json >= 13.0.1"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\Admin\\.nuget\\packages\\": {},
|
||||
"C:\\Users\\google\\.nuget\\packages\\": {},
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {}
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {},
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"projectName": "STPClient",
|
||||
"projectPath": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
||||
"outputPath": "E:\\GIT\\ASCKU_PC\\STPClient\\obj\\",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\STPClient\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\"
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"C:\\Users\\Admin\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
@@ -53,6 +408,20 @@
|
||||
"frameworks": {
|
||||
"net5.0": {
|
||||
"targetAlias": "net5.0",
|
||||
"dependencies": {
|
||||
"NLog": {
|
||||
"target": "Package",
|
||||
"version": "[4.7.10, )"
|
||||
},
|
||||
"NLog.Extensions.Logging": {
|
||||
"target": "Package",
|
||||
"version": "[1.7.2, )"
|
||||
},
|
||||
"Newtonsoft.Json": {
|
||||
"target": "Package",
|
||||
"version": "[13.0.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
@@ -68,7 +437,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.200\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@@ -1,8 +1,19 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "6F/QsS5x9rptaArpcIhhRCQ37PIY2x6j5SmYsoTzAu0rFGUX/L/Hb7Io6V+gVC8oxBkIE2feSqPrWU8uOyjn7A==",
|
||||
"dgSpecHash": "s6KtP6sXTAN7Y3yYSD50B/Wtj4v4GMZxu5Xdpq2OtRWQcLti8Oz3L/gX/JPQIPIzj6moN4WT3fMrd4mtI7TE0A==",
|
||||
"success": true,
|
||||
"projectFilePath": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"expectedPackageFiles": [],
|
||||
"projectFilePath": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\nlog.extensions.logging\\1.7.2\\nlog.extensions.logging.1.7.2.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
Reference in New Issue
Block a user