Create Socket
This commit is contained in:
		@@ -1,16 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "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"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@@ -1,12 +0,0 @@
 | 
			
		||||
<?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>
 | 
			
		||||
@@ -1,9 +0,0 @@
 | 
			
		||||
<?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,84 +0,0 @@
 | 
			
		||||
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 DataClient
 | 
			
		||||
{
 | 
			
		||||
  public class STPClient
 | 
			
		||||
  {
 | 
			
		||||
    Logger log = LogManager.GetCurrentClassLogger();
 | 
			
		||||
    string confDir = Path.Combine(Directory.GetCurrentDirectory(), "Config", "config.json");
 | 
			
		||||
    private List<server> servers = new List<server>();
 | 
			
		||||
    int serverDefault = -1;
 | 
			
		||||
 | 
			
		||||
    public STPClient()
 | 
			
		||||
    {
 | 
			
		||||
      log.Trace("Create instance class.");
 | 
			
		||||
      GetConfig();
 | 
			
		||||
    }
 | 
			
		||||
    public STPClient(string confDir)
 | 
			
		||||
    {
 | 
			
		||||
      log.Trace("Create instance class.");
 | 
			
		||||
      this.confDir = confDir;
 | 
			
		||||
    }
 | 
			
		||||
    public bool AddServer(string name, string ip, int port, string dir)
 | 
			
		||||
    {
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
      return true;
 | 
			
		||||
    }
 | 
			
		||||
    private void GetConfig()
 | 
			
		||||
    {
 | 
			
		||||
      log.Trace("Get config from: " + confDir);
 | 
			
		||||
      string jsonString;
 | 
			
		||||
      try
 | 
			
		||||
      {
 | 
			
		||||
        log.Trace("Read config file.");
 | 
			
		||||
        jsonString = File.ReadAllText(confDir);
 | 
			
		||||
      }
 | 
			
		||||
      catch (Exception e)
 | 
			
		||||
      {
 | 
			
		||||
        log.Warn(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("Doesn't exist \"servers\" object in config file.");
 | 
			
		||||
        return;
 | 
			
		||||
      }
 | 
			
		||||
      var count = -1;
 | 
			
		||||
      foreach (var s in conf["servers"])
 | 
			
		||||
      {
 | 
			
		||||
        count++;
 | 
			
		||||
        var name = (s["name"].Type == JTokenType.String && ((string)s["name"]).Length > 0) ? (string)s["name"] : "default";
 | 
			
		||||
        var ip = (s["ip"].Type == JTokenType.String && IPAddress.TryParse((string)s["ip"], out _)) ? (string)s["ip"] : "";
 | 
			
		||||
        var port = (s["port"].Type == JTokenType.Integer) ? (int)s["port"] : -1;
 | 
			
		||||
        var dir = (s["dir"].Type == JTokenType.String && Directory.Exists((string)s["dir"])) ? (string)s["dir"] : "";
 | 
			
		||||
        if (ip == "")
 | 
			
		||||
        {
 | 
			
		||||
          log.Warn("servers[" + count.ToString() + "].ip - incorrect. Skip server.");
 | 
			
		||||
          continue;
 | 
			
		||||
        }
 | 
			
		||||
        if (port < 0 && port > 65535)
 | 
			
		||||
        {
 | 
			
		||||
          log.Warn("servers[" + count.ToString() + "].port - incorrect. Skip server.");
 | 
			
		||||
          continue;
 | 
			
		||||
        }
 | 
			
		||||
        if (dir == "")
 | 
			
		||||
        {
 | 
			
		||||
          log.Warn("servers[" + count.ToString() + "].dir - incorrect or not exist. Skip server.");
 | 
			
		||||
          continue;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
      }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@@ -1,19 +0,0 @@
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <TargetFramework>net5.0</TargetFramework>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <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>
 | 
			
		||||
 | 
			
		||||
</Project>
 | 
			
		||||
@@ -1,6 +0,0 @@
 | 
			
		||||
<?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>
 | 
			
		||||
@@ -1,30 +0,0 @@
 | 
			
		||||
using System;
 | 
			
		||||
using System.Collections.Generic;
 | 
			
		||||
using System.Linq;
 | 
			
		||||
using System.Text;
 | 
			
		||||
using System.Threading.Tasks;
 | 
			
		||||
 | 
			
		||||
namespace DataClient.Struct
 | 
			
		||||
{
 | 
			
		||||
  public struct server
 | 
			
		||||
  {
 | 
			
		||||
    public string name;
 | 
			
		||||
    public string ip;
 | 
			
		||||
    public int port;
 | 
			
		||||
    public string dir;
 | 
			
		||||
    public server(string Ip, int Port, string Dir)
 | 
			
		||||
    {
 | 
			
		||||
      name = "default";
 | 
			
		||||
      ip = Ip;
 | 
			
		||||
      port = Port;
 | 
			
		||||
      dir = Dir;
 | 
			
		||||
    }
 | 
			
		||||
    public server(string Name, string Ip, int Port, string Dir)
 | 
			
		||||
    {
 | 
			
		||||
      name = Name;
 | 
			
		||||
      ip = Ip;
 | 
			
		||||
      port = Port;
 | 
			
		||||
      dir = Dir;
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@@ -1,14 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "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"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@@ -1,199 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "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"
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,14 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "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"
 | 
			
		||||
    }
 | 
			
		||||
  ]
 | 
			
		||||
}
 | 
			
		||||
@@ -1,23 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "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": ""
 | 
			
		||||
    }
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,4 +0,0 @@
 | 
			
		||||
// <autogenerated />
 | 
			
		||||
using System;
 | 
			
		||||
using System.Reflection;
 | 
			
		||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
 | 
			
		||||
@@ -1,23 +0,0 @@
 | 
			
		||||
//------------------------------------------------------------------------------
 | 
			
		||||
// <auto-generated>
 | 
			
		||||
//     Этот код создан программой.
 | 
			
		||||
//     Исполняемая версия:4.0.30319.42000
 | 
			
		||||
//
 | 
			
		||||
//     Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
 | 
			
		||||
//     повторной генерации кода.
 | 
			
		||||
// </auto-generated>
 | 
			
		||||
//------------------------------------------------------------------------------
 | 
			
		||||
 | 
			
		||||
using System;
 | 
			
		||||
using System.Reflection;
 | 
			
		||||
 | 
			
		||||
[assembly: System.Reflection.AssemblyCompanyAttribute("STPClient")]
 | 
			
		||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
 | 
			
		||||
[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.
 | 
			
		||||
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
9ee3277397ec3cb181dbbe40dc2ab41a1c484c50
 | 
			
		||||
@@ -1,8 +0,0 @@
 | 
			
		||||
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
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
a29c3e780c8e96aa2aba5808887a3d3a0431eb52
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
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.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							@@ -1,16 +0,0 @@
 | 
			
		||||
<?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>
 | 
			
		||||
@@ -1,4 +0,0 @@
 | 
			
		||||
// <autogenerated />
 | 
			
		||||
using System;
 | 
			
		||||
using System.Reflection;
 | 
			
		||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v5.0", FrameworkDisplayName = "")]
 | 
			
		||||
@@ -1,23 +0,0 @@
 | 
			
		||||
//------------------------------------------------------------------------------
 | 
			
		||||
// <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.
 | 
			
		||||
 | 
			
		||||
@@ -1 +0,0 @@
 | 
			
		||||
37f042a4f38dfb7d4476c4b8fc055adc3323e40d
 | 
			
		||||
@@ -1,8 +0,0 @@
 | 
			
		||||
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
 | 
			
		||||
										
											Binary file not shown.
										
									
								
							@@ -1 +0,0 @@
 | 
			
		||||
76d37c1a71009ecd915d190cd7beb8053e3ff188
 | 
			
		||||
@@ -1,13 +0,0 @@
 | 
			
		||||
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.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											Binary file not shown.
										
									
								
							
										
											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": {
 | 
			
		||||
      "version": "1.0.0",
 | 
			
		||||
    "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj": {
 | 
			
		||||
      "version": "0.0.3",
 | 
			
		||||
      "restore": {
 | 
			
		||||
        "projectUniqueName": "E:\\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\\",
 | 
			
		||||
        "projectUniqueName": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
 | 
			
		||||
        "projectName": "DataClient",
 | 
			
		||||
        "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"
 | 
			
		||||
@@ -74,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>
 | 
			
		||||
 
 | 
			
		||||
@@ -361,25 +361,27 @@
 | 
			
		||||
    ]
 | 
			
		||||
  },
 | 
			
		||||
  "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",
 | 
			
		||||
    "version": "0.0.3",
 | 
			
		||||
    "restore": {
 | 
			
		||||
      "projectUniqueName": "E:\\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\\",
 | 
			
		||||
      "projectUniqueName": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
 | 
			
		||||
      "projectName": "DataClient",
 | 
			
		||||
      "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"
 | 
			
		||||
@@ -435,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,19 +1,19 @@
 | 
			
		||||
{
 | 
			
		||||
  "version": 2,
 | 
			
		||||
  "dgSpecHash": "o6OPlvqTxZe87EkkLNG7xOH1lJZMPMyHMIDMPp42fdz3B4ER8i4Ky4UZZnOmWzYk7VdkNj7lD5UH+oB4UNPduA==",
 | 
			
		||||
  "dgSpecHash": "EmbwZ7SwMJWgbFue8nyHBdE4ncOyGFZrHWPrhJnnAGQ3ZcXtnfZ3crT7OVc5RbuLASujwv+C2eky/VDZVjvtGg==",
 | 
			
		||||
  "success": true,
 | 
			
		||||
  "projectFilePath": "E:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
 | 
			
		||||
  "projectFilePath": "D:\\GIT\\ASCKU_PC\\STPClient\\STPClient.csproj",
 | 
			
		||||
  "expectedPackageFiles": [
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\5.0.0\\microsoft.extensions.configuration.abstractions.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.0\\microsoft.extensions.dependencyinjection.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\nlog\\4.7.10\\nlog.4.7.10.nupkg.sha512",
 | 
			
		||||
    "C:\\Users\\Admin\\.nuget\\packages\\nlog.extensions.logging\\1.7.2\\nlog.extensions.logging.1.7.2.nupkg.sha512"
 | 
			
		||||
    "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