Test
This commit is contained in:
16
Korp90TimePasport/Korp90TimePasport.csproj
Normal file
16
Korp90TimePasport/Korp90TimePasport.csproj
Normal file
@@ -0,0 +1,16 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Data.Odbc" Version="5.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DataClients\DataClients.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
6
Korp90TimePasport/Korp90TimePasport.csproj.user
Normal file
6
Korp90TimePasport/Korp90TimePasport.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\Korp90TimePasport\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
|
||||
</PropertyGroup>
|
||||
</Project>
|
266
Korp90TimePasport/Program.cs
Normal file
266
Korp90TimePasport/Program.cs
Normal file
@@ -0,0 +1,266 @@
|
||||
using System;
|
||||
using DataClients;
|
||||
using System.Linq;
|
||||
using System.Data.Odbc;
|
||||
using System.Threading;
|
||||
using System.IO;
|
||||
|
||||
namespace Korp90TimePasport
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static int loopTime = 5000;
|
||||
static void Main(string[] args)
|
||||
{
|
||||
SybaseBD.CreateDbConnection();
|
||||
var stpC = new STPClient();
|
||||
Console.WriteLine("Start PasportTime Korp90");
|
||||
var currDateTime = new DateTime(2001, 02, 21);
|
||||
//var currDateTime = new DateTime(2005, 01, 01);
|
||||
|
||||
while (!SybaseBD.CheckConnection()) Thread.Sleep(loopTime);
|
||||
|
||||
var lastDate = SybaseBD.LastDate();
|
||||
currDateTime = lastDate.HasValue ? lastDate.Value : currDateTime;
|
||||
|
||||
|
||||
while (true)
|
||||
{
|
||||
var cycle_CheckConnection = true;
|
||||
while (cycle_CheckConnection)
|
||||
{
|
||||
cycle_CheckConnection = !(SybaseBD.CheckConnection() && stpC.CheckConnection());
|
||||
if (cycle_CheckConnection) Thread.Sleep(loopTime);
|
||||
}
|
||||
Console.WriteLine("Check date: " + currDateTime.ToString("yyyy.MM.dd"));
|
||||
|
||||
var listPasport = stpC.GetListPasport(currDateTime);
|
||||
foreach (var (pasp_name, pasp_dir) in listPasport)
|
||||
{
|
||||
if (!pasp_name.Contains('-')) continue;
|
||||
var convVdp = int.TryParse(pasp_name.Split('-')[1], out int vdp);
|
||||
if (convVdp && vdp >= 91 && vdp < 94)
|
||||
{
|
||||
Console.WriteLine("Find: " + pasp_name.ToString());
|
||||
var pasp = stpC.GetPasport(pasp_dir);
|
||||
var paspBD = SybaseBD.FindPasport(pasp_name);
|
||||
|
||||
if (!paspBD.exist)
|
||||
{
|
||||
Console.WriteLine("Pasport " + pasp_name + " not exist in DB.");
|
||||
try
|
||||
{
|
||||
using (StreamWriter file = new StreamWriter(Directory.GetCurrentDirectory() + "/NotExistedPlav.txt", true))
|
||||
{
|
||||
file.WriteLine(
|
||||
pasp_name + "\t" +
|
||||
pasp.time_start.ToString("yyyy-MM-dd HH:mm:ss.f") + "\t" +
|
||||
pasp.time_end.ToString("yyyy-MM-dd HH:mm:ss.f"));
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine("Can't write to file information:" + e.Message);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!paspBD.d_beg.HasValue || paspBD.d_beg.Value != pasp.time_start)
|
||||
{
|
||||
Console.WriteLine("Update " + pasp_name + " timeStart:");
|
||||
Console.WriteLine("\t" + paspBD.d_beg.ToString() + " -> " + pasp.time_start);
|
||||
SybaseBD.UpdateTimeStart(pasp_name, pasp.time_start);
|
||||
}
|
||||
if (!paspBD.d_end.HasValue || paspBD.d_end.Value != pasp.time_end)
|
||||
{
|
||||
Console.WriteLine("Update " + pasp_name + " timeEnd:");
|
||||
Console.WriteLine("\t" + paspBD.d_end.ToString() + " -> " + pasp.time_end);
|
||||
SybaseBD.UpdateTimeEnd(pasp_name, pasp.time_end);
|
||||
}
|
||||
}
|
||||
Console.WriteLine("End work with " + pasp_name);
|
||||
}
|
||||
}
|
||||
|
||||
currDateTime = currDateTime.AddDays(1);
|
||||
if (currDateTime > DateTime.Now && currDateTime.Day != DateTime.Now.Day)
|
||||
{
|
||||
Console.WriteLine("Wait 5 minutes");
|
||||
currDateTime = DateTime.Now.AddHours(-2);
|
||||
Thread.Sleep(300000);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static class SybaseBD
|
||||
{
|
||||
static private OdbcConnection dbConnect;
|
||||
|
||||
static public bool CheckConnection()
|
||||
{
|
||||
try
|
||||
{
|
||||
dbConnect.Open();
|
||||
}
|
||||
catch(Exception e)
|
||||
{
|
||||
Console.Write("Can't connection to DB: ");
|
||||
Console.WriteLine(e.Message);
|
||||
return false;
|
||||
}
|
||||
finally
|
||||
{
|
||||
dbConnect.Close();
|
||||
}
|
||||
return true;
|
||||
}
|
||||
static public void CreateDbConnection()
|
||||
{
|
||||
dbConnect = new OdbcConnection("Driver={SQL Anywhere 12};UID=asutp;PWD=tvso;DBN=ceh32;HOST=10.10.45.3:2638;");
|
||||
}
|
||||
|
||||
static public DBPasport FindPasport(string nPlav)
|
||||
{
|
||||
var result = new DBPasport();
|
||||
try
|
||||
{
|
||||
dbConnect.Open();
|
||||
|
||||
using (OdbcCommand dbCmd = dbConnect.CreateCommand())
|
||||
{
|
||||
dbCmd.CommandText = "select top 1 d_beg,d_end from KORP_90.Tab_korp_90 where nplav=\'" + nPlav + "\'";
|
||||
using (OdbcDataReader dbReader = dbCmd.ExecuteReader())
|
||||
{
|
||||
int countColumn = dbReader.FieldCount;
|
||||
if (dbReader.Read())
|
||||
{
|
||||
result.exist = true;
|
||||
if (dbReader.GetName(0) == "d_beg" && dbReader.GetName(1) == "d_end")
|
||||
{
|
||||
if (!dbReader.IsDBNull(0))
|
||||
result.d_beg = dbReader.GetDateTime(0);
|
||||
if (!dbReader.IsDBNull(1))
|
||||
result.d_end = dbReader.GetDateTime(1);
|
||||
}
|
||||
}
|
||||
dbReader.Close();
|
||||
}
|
||||
dbCmd.Dispose();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.Write("Error while search pasport in DB: ");
|
||||
Console.WriteLine(e.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
dbConnect.Close();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
static public DateTime? LastDate()
|
||||
{
|
||||
DateTime? result = null;
|
||||
try
|
||||
{
|
||||
dbConnect.Open();
|
||||
using (OdbcCommand dbCmd = dbConnect.CreateCommand())
|
||||
{
|
||||
dbCmd.CommandText = "select top 1 d_beg from KORP_90.Tab_korp_90 order by d_beg desc";
|
||||
using (OdbcDataReader dbReader = dbCmd.ExecuteReader())
|
||||
{
|
||||
if (dbReader.Read())
|
||||
{
|
||||
if (dbReader.GetName(0) == "d_beg")
|
||||
{
|
||||
if (!dbReader.IsDBNull(0))
|
||||
{
|
||||
var lastDate = dbReader.GetDateTime(0);
|
||||
result = !result.HasValue ? lastDate : result.Value < lastDate ? lastDate : result;
|
||||
}
|
||||
}
|
||||
}
|
||||
dbReader.Close();
|
||||
}
|
||||
dbCmd.Dispose();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
dbConnect.Close();
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
static public bool UpdateTimeStart(string nplav, DateTime start)
|
||||
{
|
||||
var result = 0;
|
||||
try
|
||||
{
|
||||
dbConnect.Open();
|
||||
using (OdbcCommand dbCmd = dbConnect.CreateCommand())
|
||||
{
|
||||
dbCmd.CommandText =
|
||||
"update KORP_90.Tab_korp_90 " +
|
||||
"set d_beg=\'" + start.ToString("yyyy-MM-dd HH:mm:ss.f") + "\' " +
|
||||
"where nplav=\'" + nplav + "\'";
|
||||
result = dbCmd.ExecuteNonQuery();
|
||||
dbCmd.Dispose();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
dbConnect.Close();
|
||||
}
|
||||
if (result == 1) return true;
|
||||
else return false;
|
||||
}
|
||||
|
||||
static public bool UpdateTimeEnd(string nplav, DateTime end)
|
||||
{
|
||||
var result = 0;
|
||||
try
|
||||
{
|
||||
dbConnect.Open();
|
||||
using (OdbcCommand dbCmd = dbConnect.CreateCommand())
|
||||
{
|
||||
dbCmd.CommandText =
|
||||
"update KORP_90.Tab_korp_90 " +
|
||||
"set d_end=\'" + end.ToString("yyyy-MM-dd HH:mm:ss.f") + "\' " +
|
||||
"where nplav=\'" + nplav + "\'";
|
||||
result = dbCmd.ExecuteNonQuery();
|
||||
dbCmd.Dispose();
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
Console.WriteLine(e.Message);
|
||||
}
|
||||
finally
|
||||
{
|
||||
dbConnect.Close();
|
||||
}
|
||||
if (result == 1) return true;
|
||||
else return false;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class DBPasport
|
||||
{
|
||||
public bool exist = false;
|
||||
public DateTime? d_beg = null;
|
||||
public DateTime? d_end = null;
|
||||
}
|
||||
}
|
@@ -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>bin\Release\netcoreapp3.1\publish\</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -0,0 +1,6 @@
|
||||
<?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">
|
||||
</Project>
|
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,145 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"dependencies": {
|
||||
"DataClients": "1.0.0",
|
||||
"System.Data.Odbc": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Korp90TimePasport.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
|
||||
"assemblyVersion": "1.2.0.246",
|
||||
"fileVersion": "1.2.0.246"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.Odbc.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "freebsd",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "linux",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "osx",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"SupportClasses": "1.0.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"runtime": {
|
||||
"DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"runtime": {
|
||||
"SupportClasses.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==",
|
||||
"path": "system.data.odbc/5.0.0",
|
||||
"hashPath": "system.data.odbc.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.dll
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.exe
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.exe
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.pdb
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/Korp90TimePasport.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\google\\.nuget\\packages",
|
||||
"C:\\Microsoft\\Xamarin\\NuGet",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
1695
Korp90TimePasport/bin/Debug/netcoreapp3.1/NotExistedPlav.txt
Normal file
1695
Korp90TimePasport/bin/Debug/netcoreapp3.1/NotExistedPlav.txt
Normal file
File diff suppressed because it is too large
Load Diff
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/SupportClasses.dll
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/SupportClasses.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/SupportClasses.pdb
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/SupportClasses.pdb
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/System.Data.Odbc.dll
Normal file
BIN
Korp90TimePasport/bin/Debug/netcoreapp3.1/System.Data.Odbc.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/DataClients.dll
Normal file
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/DataClients.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/DataClients.pdb
Normal file
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/DataClients.pdb
Normal file
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,145 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"dependencies": {
|
||||
"DataClients": "1.0.0",
|
||||
"System.Data.Odbc": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Korp90TimePasport.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
|
||||
"assemblyVersion": "1.2.0.246",
|
||||
"fileVersion": "1.2.0.246"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.Odbc.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "freebsd",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "linux",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "osx",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"SupportClasses": "1.0.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"runtime": {
|
||||
"DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"runtime": {
|
||||
"SupportClasses.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==",
|
||||
"path": "system.data.odbc/5.0.0",
|
||||
"hashPath": "system.data.odbc.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\google\\.nuget\\packages",
|
||||
"C:\\Microsoft\\Xamarin\\NuGet",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/SupportClasses.dll
Normal file
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/SupportClasses.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/SupportClasses.pdb
Normal file
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/SupportClasses.pdb
Normal file
Binary file not shown.
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/System.Data.Odbc.dll
Normal file
BIN
Korp90TimePasport/bin/Release/netcoreapp3.1/System.Data.Odbc.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,145 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"dependencies": {
|
||||
"DataClients": "1.0.0",
|
||||
"System.Data.Odbc": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"Korp90TimePasport.dll": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
|
||||
"assemblyVersion": "1.2.0.246",
|
||||
"fileVersion": "1.2.0.246"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.Odbc.dll": {
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "freebsd",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "linux",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "osx",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "5.0.0.0",
|
||||
"fileVersion": "5.0.20.51904"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.3.0",
|
||||
"fileVersion": "4.700.20.21406"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"SupportClasses": "1.0.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"runtime": {
|
||||
"DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"runtime": {
|
||||
"SupportClasses.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Korp90TimePasport/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==",
|
||||
"path": "system.data.odbc/5.0.0",
|
||||
"hashPath": "system.data.odbc.5.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
@@ -0,0 +1 @@
|
||||
c9efa877dee2cae232b04b0b0bace0d7603c65c4
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
6b907f31e7a354bd14f7a9d51bd42cbac3de30a6
|
@@ -0,0 +1,26 @@
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.exe
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.deps.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.runtimeconfig.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.runtimeconfig.dev.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\Korp90TimePasport.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\DataClients.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\SupportClasses.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\DataClients.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\SupportClasses.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.csprojAssemblyReference.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.AssemblyInfoInputs.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.AssemblyInfo.cs
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.csproj.CopyComplete
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.genruntimeconfig.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Debug\netcoreapp3.1\Korp90TimePasport.csproj.CoreCompileInputs.cache
|
Binary file not shown.
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.dll
Normal file
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.dll
Normal file
Binary file not shown.
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.exe
Normal file
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.exe
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
d851f552b7fc624beba7ddb09b7c9e9d1d7b41de
|
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.pdb
Normal file
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/Korp90TimePasport.pdb
Normal file
Binary file not shown.
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/apphost.exe
Normal file
BIN
Korp90TimePasport/obj/Debug/netcoreapp3.1/apphost.exe
Normal file
Binary file not shown.
219
Korp90TimePasport/obj/Korp90TimePasport.csproj.nuget.dgspec.json
Normal file
219
Korp90TimePasport/obj/Korp90TimePasport.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,219 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||
"projectName": "DataClients",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"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"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"projectReferences": {
|
||||
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"SharpZipLib": {
|
||||
"target": "Package",
|
||||
"version": "[1.2.0, )"
|
||||
},
|
||||
"System.Text.Encoding.CodePages": {
|
||||
"target": "Package",
|
||||
"version": "[4.7.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||
"projectName": "Korp90TimePasport",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"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"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"projectReferences": {
|
||||
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"dependencies": {
|
||||
"System.Data.Odbc": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||
"projectName": "SupportClasses",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"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"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"targetAlias": "netstandard2.0",
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
21
Korp90TimePasport/obj/Korp90TimePasport.csproj.nuget.g.props
Normal file
21
Korp90TimePasport/obj/Korp90TimePasport.csproj.nuget.g.props
Normal file
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\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\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>
|
||||
</PropertyGroup>
|
||||
</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">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Korp90TimePasport")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
@@ -0,0 +1 @@
|
||||
afac1e3c4ba49da4d216d31ec1b6d90a3daf05d3
|
Binary file not shown.
@@ -0,0 +1 @@
|
||||
872b65e9348b6915086d860d400a3eaa18a0048a
|
@@ -0,0 +1,26 @@
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.exe
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.deps.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.runtimeconfig.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.runtimeconfig.dev.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\Korp90TimePasport.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\DataClients.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\SupportClasses.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\DataClients.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\SupportClasses.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.csprojAssemblyReference.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.AssemblyInfoInputs.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.AssemblyInfo.cs
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.csproj.CoreCompileInputs.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.csproj.CopyComplete
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\obj\Release\netcoreapp3.1\Korp90TimePasport.genruntimeconfig.cache
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
d851f552b7fc624beba7ddb09b7c9e9d1d7b41de
|
Binary file not shown.
@@ -0,0 +1,17 @@
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\Korp90TimePasport.exe
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\Korp90TimePasport.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\Korp90TimePasport.deps.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\Korp90TimePasport.runtimeconfig.json
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\Korp90TimePasport.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\ICSharpCode.SharpZipLib.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\runtimes\freebsd\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\runtimes\linux\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\runtimes\osx\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\runtimes\win\lib\netcoreapp2.0\System.Data.Odbc.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\DataClients.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\SupportClasses.dll
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\DataClients.pdb
|
||||
D:\GIT\ASCKU_PC\Korp90TimePasport\bin\Release\netcoreapp3.1\publish\SupportClasses.pdb
|
BIN
Korp90TimePasport/obj/Release/netcoreapp3.1/apphost.exe
Normal file
BIN
Korp90TimePasport/obj/Release/netcoreapp3.1/apphost.exe
Normal file
Binary file not shown.
303
Korp90TimePasport/obj/project.assets.json
Normal file
303
Korp90TimePasport/obj/project.assets.json
Normal file
@@ -0,0 +1,303 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netstandard2.0/System.Data.Odbc.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Data.Odbc.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "freebsd"
|
||||
},
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "linux"
|
||||
},
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "osx"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"SupportClasses": "1.0.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/DataClients.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"compile": {
|
||||
"bin/placeholder/SupportClasses.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/SupportClasses.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETCore.Platforms/5.0.0": {
|
||||
"sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.platforms/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||
"microsoft.netcore.platforms.nuspec",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"type": "package",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.dll",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.pdb",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.xml",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
|
||||
"sharpziplib.1.2.0.nupkg.sha512",
|
||||
"sharpziplib.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Data.Odbc/5.0.0": {
|
||||
"sha512": "j4WsYGmcD7m1D0Tc3N7HqWqcdUHNn9+kdXh9ODTWEsOGrAvALf+BgRStd7L0/O/zDS0R4Uu9vNM8UY6EnK+WYw==",
|
||||
"type": "package",
|
||||
"path": "system.data.odbc/5.0.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/System.Data.Odbc.dll",
|
||||
"lib/net461/System.Data.Odbc.xml",
|
||||
"lib/netstandard2.0/System.Data.Odbc.dll",
|
||||
"lib/netstandard2.0/System.Data.Odbc.xml",
|
||||
"ref/net461/System.Data.Odbc.dll",
|
||||
"ref/net461/System.Data.Odbc.xml",
|
||||
"ref/netstandard2.0/System.Data.Odbc.dll",
|
||||
"ref/netstandard2.0/System.Data.Odbc.xml",
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.dll",
|
||||
"runtimes/freebsd/lib/netcoreapp2.0/System.Data.Odbc.xml",
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.dll",
|
||||
"runtimes/linux/lib/netcoreapp2.0/System.Data.Odbc.xml",
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.dll",
|
||||
"runtimes/osx/lib/netcoreapp2.0/System.Data.Odbc.xml",
|
||||
"runtimes/win/lib/net461/System.Data.Odbc.dll",
|
||||
"runtimes/win/lib/net461/System.Data.Odbc.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Data.Odbc.xml",
|
||||
"system.data.odbc.5.0.0.nupkg.sha512",
|
||||
"system.data.odbc.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"type": "package",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net46/System.Text.Encoding.CodePages.dll",
|
||||
"lib/net461/System.Text.Encoding.CodePages.dll",
|
||||
"lib/net461/System.Text.Encoding.CodePages.xml",
|
||||
"lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
|
||||
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
|
||||
"system.text.encoding.codepages.4.7.1.nupkg.sha512",
|
||||
"system.text.encoding.codepages.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../DataClients/DataClients.csproj",
|
||||
"msbuildProject": "../DataClients/DataClients.csproj"
|
||||
},
|
||||
"SupportClasses/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../SupportClasses/SupportClasses.csproj",
|
||||
"msbuildProject": "../SupportClasses/SupportClasses.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETCoreApp,Version=v3.1": [
|
||||
"DataClients >= 1.0.0",
|
||||
"System.Data.Odbc >= 5.0.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"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": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||
"projectName": "Korp90TimePasport",
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
||||
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
],
|
||||
"configFilePaths": [
|
||||
"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"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"projectReferences": {
|
||||
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"targetAlias": "netcoreapp3.1",
|
||||
"dependencies": {
|
||||
"System.Data.Odbc": {
|
||||
"target": "Package",
|
||||
"version": "[5.0.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
13
Korp90TimePasport/obj/project.nuget.cache
Normal file
13
Korp90TimePasport/obj/project.nuget.cache
Normal file
@@ -0,0 +1,13 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "AqbvvkDwL7rcBYkLzhlGt3MNX9HhqeqsJEu5ffbVRs0+3TsQS/BVQ91hVOf+q+SExRT+Ex2NuehhNNw64BSdsA==",
|
||||
"success": true,
|
||||
"projectFilePath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
Reference in New Issue
Block a user