work
This commit is contained in:
parent
d699af66bb
commit
72c7ef702a
Binary file not shown.
Binary file not shown.
@ -4,6 +4,9 @@
|
|||||||
<name>DataClient</name>
|
<name>DataClient</name>
|
||||||
</assembly>
|
</assembly>
|
||||||
<members>
|
<members>
|
||||||
|
<member name="T:DataClient.NETClient">
|
||||||
|
<summary>Класс для связи с СТП сервером по проботоколу TCP.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Status">
|
<member name="P:DataClient.NETClient.Status">
|
||||||
<summary>
|
<summary>
|
||||||
Статус процесса выполнения запроса.
|
Статус процесса выполнения запроса.
|
||||||
@ -14,6 +17,30 @@
|
|||||||
<member name="T:DataClient.NETClient.Code">
|
<member name="T:DataClient.NETClient.Code">
|
||||||
<summary>Коды для работы с СТП.</summary>
|
<summary>Коды для работы с СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.version">
|
||||||
|
<summary>Версия.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download">
|
||||||
|
<summary>Загрузка.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.pasp_download">
|
||||||
|
<summary>Загрузка паспорта.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.server_time">
|
||||||
|
<summary>Время сервера.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.keep_alive">
|
||||||
|
<summary>Оставаться на связи.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download_nh">
|
||||||
|
<summary>Загрузка (nh).</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.dir_browse">
|
||||||
|
<summary>Структура директории.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.by_name">
|
||||||
|
<summary>Поиск команды по имени.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Ip">
|
<member name="P:DataClient.NETClient.Ip">
|
||||||
<summary>IP адрес СТП.</summary>
|
<summary>IP адрес СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
@ -32,8 +59,8 @@
|
|||||||
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
||||||
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream)">
|
||||||
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
||||||
Соединение с сервером закрыто.
|
Соединение с сервером закрыто.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для Чтения.
|
Стрим недоступен для Чтения.
|
||||||
@ -41,8 +68,8 @@
|
|||||||
Сервер сбросил соединение.
|
Сервер сбросил соединение.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32)">
|
||||||
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
||||||
Размер байт не должен равняться нулю.
|
Размер байт не должен равняться нулю.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для записи.
|
Стрим недоступен для записи.
|
||||||
@ -144,6 +171,36 @@
|
|||||||
Не получилось соединиться с сервером.
|
Не получилось соединиться с сервером.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Server_Time">
|
||||||
|
<summary>Получение текущее время на сервере.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>Текущее время на сервере.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Version">
|
||||||
|
<summary>Получение текущую версию сервера.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>строку с названием версии сервера.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Keep_Alive">
|
||||||
|
<summary>Отправка команды для поддержания соединения.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
<member name="T:DataClient.STPClient">
|
<member name="T:DataClient.STPClient">
|
||||||
<summary>
|
<summary>
|
||||||
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
||||||
|
@ -125,8 +125,6 @@
|
|||||||
<summary>Получение определенного количество байт с сервера.</summary>
|
<summary>Получение определенного количество байт с сервера.</summary>
|
||||||
<param name="ns">Открытый сетевой поток.</param>
|
<param name="ns">Открытый сетевой поток.</param>
|
||||||
<param name="size">Кол-во получаемых байт.</param>
|
<param name="size">Кол-во получаемых байт.</param>
|
||||||
<param name="awaitInterval">Время ожидания между проверками буфера.</param>
|
|
||||||
<param name="tryCounts">Количество проверок буфера.</param>
|
|
||||||
<returns>Массив байт. Может быть меньше заданного количества.</returns>
|
<returns>Массив байт. Может быть меньше заданного количества.</returns>
|
||||||
<exception cref="ArgumentException">
|
<exception cref="ArgumentException">
|
||||||
Размер байт не должен равняться нулю.
|
Размер байт не должен равняться нулю.
|
||||||
@ -141,8 +139,6 @@
|
|||||||
<m n="ReceiveBytesFull">
|
<m n="ReceiveBytesFull">
|
||||||
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary>
|
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary>
|
||||||
<param name="ns">Открытый сетевой поток.</param>
|
<param name="ns">Открытый сетевой поток.</param>
|
||||||
<param name="awaitInterval">Время ожидания между проверками буфера.</param>
|
|
||||||
<param name="tryCounts">Количество проверок буфера.</param>
|
|
||||||
<returns>Массив байт.</returns>
|
<returns>Массив байт.</returns>
|
||||||
<exception cref="InvalidOperationException">
|
<exception cref="InvalidOperationException">
|
||||||
Соединение с сервером закрыто.
|
Соединение с сервером закрыто.
|
||||||
|
@ -220,12 +220,12 @@ namespace DataClient
|
|||||||
}
|
}
|
||||||
private int retryCount = 3;
|
private int retryCount = 3;
|
||||||
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="RetryInterval"]/*' />
|
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="RetryInterval"]/*' />
|
||||||
public int RetryInterval
|
public double RetryInterval
|
||||||
{
|
{
|
||||||
get { return retryInterval; }
|
get { return retryInterval; }
|
||||||
set { retryInterval = (value < 1) ? 1 : value; }
|
set { retryInterval = (value < 1) ? 1 : value; }
|
||||||
}
|
}
|
||||||
private int retryInterval = 1;
|
private double retryInterval = 1;
|
||||||
|
|
||||||
//Construction
|
//Construction
|
||||||
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="NETClient1"]/*' />
|
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="NETClient1"]/*' />
|
||||||
@ -247,16 +247,14 @@ namespace DataClient
|
|||||||
|
|
||||||
//Work with socket functions
|
//Work with socket functions
|
||||||
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="ReceiveBytesFull"]/*' />
|
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="ReceiveBytesFull"]/*' />
|
||||||
private byte[] ReceiveBytesFull(NetworkStream ns, int awaitInterval = 1, int tryCounts = 3)
|
private byte[] ReceiveBytesFull(NetworkStream ns)
|
||||||
{
|
{
|
||||||
try{ return ReceiveBytesFixSize(ns, uint.MaxValue, awaitInterval, tryCounts); }
|
try{ return ReceiveBytesFixSize(ns, uint.MaxValue); }
|
||||||
catch { throw; }
|
catch { throw; }
|
||||||
}
|
}
|
||||||
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="ReceiveBytesFixSize"]/*' />
|
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="ReceiveBytesFixSize"]/*' />
|
||||||
private byte[] ReceiveBytesFixSize(NetworkStream ns, uint size, int awaitInterval = 1, int tryCounts = 3)
|
private byte[] ReceiveBytesFixSize(NetworkStream ns, uint size)
|
||||||
{
|
{
|
||||||
tryCounts = (tryCounts < 1) ? 1 : tryCounts;
|
|
||||||
awaitInterval = (awaitInterval < 1) ? 1 : awaitInterval;
|
|
||||||
if (size == 0) throw new ArgumentException("Size can't be zero.");
|
if (size == 0) throw new ArgumentException("Size can't be zero.");
|
||||||
if (!ns.Socket.Connected) throw new InvalidOperationException("NetworkStream not connected to server.");
|
if (!ns.Socket.Connected) throw new InvalidOperationException("NetworkStream not connected to server.");
|
||||||
if (!ns.CanRead) throw new IOException("NetworkStream not access to Read.");
|
if (!ns.CanRead) throw new IOException("NetworkStream not access to Read.");
|
||||||
@ -267,7 +265,7 @@ namespace DataClient
|
|||||||
if (!ns.Socket.Connected) throw new TimeoutException("Server drop connection.");
|
if (!ns.Socket.Connected) throw new TimeoutException("Server drop connection.");
|
||||||
if (!ns.DataAvailable)
|
if (!ns.DataAvailable)
|
||||||
{
|
{
|
||||||
Task.Delay(awaitInterval * 1000).Wait();
|
Task.Delay(Convert.ToInt32(Math.Floor(retryInterval * 1000))).Wait();
|
||||||
tryCount++;
|
tryCount++;
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -277,7 +275,7 @@ namespace DataClient
|
|||||||
var length = ns.Read(buf, 0, buf.Length);
|
var length = ns.Read(buf, 0, buf.Length);
|
||||||
for (var i = 0; i < length; i++) res.Add(buf[i]);
|
for (var i = 0; i < length; i++) res.Add(buf[i]);
|
||||||
if (res.Count == size) return res.ToArray();
|
if (res.Count == size) return res.ToArray();
|
||||||
} while (tryCount < tryCounts);
|
} while (tryCount < retryCount);
|
||||||
return res.ToArray();
|
return res.ToArray();
|
||||||
}
|
}
|
||||||
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="SendBytes1"]/*' />
|
/// <include file='DataClientSrc.xml' path='docs/NET/m[@n="SendBytes1"]/*' />
|
||||||
|
@ -28,15 +28,243 @@ namespace DataClient.Struct
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
public class NetStatus
|
public class NetStatus
|
||||||
{
|
{
|
||||||
public enum Status
|
public enum Status
|
||||||
{
|
{
|
||||||
wait = 0,
|
wait = 0,
|
||||||
in_progress = 1,
|
in_progress = 1,
|
||||||
complete = 2
|
complete = 2
|
||||||
}
|
}
|
||||||
public uint fullSize = 0;
|
public uint fullSize = 0;
|
||||||
public uint size = 0;
|
public uint size = 0;
|
||||||
public Status stat = Status.wait;
|
public Status stat = Status.wait;
|
||||||
}
|
}
|
||||||
|
public class Pasport
|
||||||
|
{
|
||||||
|
//functions
|
||||||
|
private DateTime? ByteToDate(byte[] arr)
|
||||||
|
{
|
||||||
|
if (arr == null || arr.Length != 7) return null;
|
||||||
|
return new DateTime(arr[0] | arr[1] << 8, arr[2], arr[3], arr[4], arr[5], arr[6]);
|
||||||
|
}
|
||||||
|
private byte[] DateToByte(DateTime? date)
|
||||||
|
{
|
||||||
|
if (!date.HasValue) return null;
|
||||||
|
return new byte[]
|
||||||
|
{
|
||||||
|
BitConverter.GetBytes(date.Value.Year)[0],
|
||||||
|
BitConverter.GetBytes(date.Value.Year)[1],
|
||||||
|
(byte)date.Value.Month,
|
||||||
|
(byte)date.Value.Day,
|
||||||
|
(byte)date.Value.Hour,
|
||||||
|
(byte)date.Value.Minute,
|
||||||
|
(byte)date.Value.Second
|
||||||
|
};
|
||||||
|
}
|
||||||
|
private byte[] StringToByte(uint? size = null, string str = null)
|
||||||
|
{
|
||||||
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
||||||
|
var enc = Encoding.GetEncoding(866);
|
||||||
|
var szArr = size ?? ((!string.IsNullOrEmpty(str)) ? (uint)(str.Length + 1) : 0);
|
||||||
|
var strArr = (string.IsNullOrEmpty(str)) ? Array.Empty<byte>() : enc.GetBytes(str);
|
||||||
|
var res = new byte[szArr];
|
||||||
|
for (var i = 0; i < res.Length; i++)
|
||||||
|
res[i] = (byte)((i == res.Length - 1) ? 0x00 : (i < strArr.Length) ? strArr[i] : 0x00);
|
||||||
|
return res;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
//params
|
||||||
|
public bool HasData { get { return numVDP.HasValue && dStart.HasValue && dEnd.HasValue; } }
|
||||||
|
public byte? numVDP = null;
|
||||||
|
public DateTime? dStart = null;
|
||||||
|
public DateTime? dEnd = null;
|
||||||
|
|
||||||
|
public bool hasPasport = false;
|
||||||
|
public int kod_npl = 0;
|
||||||
|
public string nplav = null; //12
|
||||||
|
public string rm = null; //11
|
||||||
|
public string splav = null; //101
|
||||||
|
public string iS = null; //51
|
||||||
|
public ushort notd = 0;
|
||||||
|
public ushort vessl = 0;
|
||||||
|
public ushort diam = 0;
|
||||||
|
public ushort prpl = 0;
|
||||||
|
public string tin = null; //9
|
||||||
|
public string dzap = null; //9
|
||||||
|
public short dlog = 0;
|
||||||
|
public short last = 0;
|
||||||
|
public short dlper = 0;
|
||||||
|
public string nazn = null; //51
|
||||||
|
public ushort kompl = 0;
|
||||||
|
public ushort izl = 0;
|
||||||
|
public float robm = 0;
|
||||||
|
public float rizol = 0;
|
||||||
|
public ushort dkr = 0;
|
||||||
|
public string nkon = null; //51
|
||||||
|
public string pos = null; //6
|
||||||
|
public string ukaz = null; //51
|
||||||
|
public string zakaz = null; //51
|
||||||
|
public string kat = null; //51
|
||||||
|
public string pril = null; //3
|
||||||
|
public string rezerved = null; //1023
|
||||||
|
|
||||||
|
public byte[] PaspByte
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
var res = new List<byte>();
|
||||||
|
|
||||||
|
res.Add((byte)(HasData ? 0x01 : 0x00));
|
||||||
|
if (!HasData) return res.ToArray();
|
||||||
|
|
||||||
|
res.Add(numVDP.Value);
|
||||||
|
res.AddRange(DateToByte(dStart));
|
||||||
|
res.AddRange(DateToByte(dEnd));
|
||||||
|
res.Add((byte)(hasPasport ? 0x01 : 0x00));
|
||||||
|
if (!hasPasport) return res.ToArray();
|
||||||
|
|
||||||
|
res.AddRange(BitConverter.GetBytes(kod_npl));
|
||||||
|
res.AddRange(StringToByte(12, nplav));
|
||||||
|
res.AddRange(StringToByte(11, rm));
|
||||||
|
res.AddRange(StringToByte(101, splav));
|
||||||
|
res.AddRange(StringToByte(51, iS));
|
||||||
|
res.AddRange(BitConverter.GetBytes(notd));
|
||||||
|
res.AddRange(BitConverter.GetBytes(vessl));
|
||||||
|
res.AddRange(BitConverter.GetBytes(diam));
|
||||||
|
res.AddRange(BitConverter.GetBytes(prpl));
|
||||||
|
res.AddRange(StringToByte(9, tin));
|
||||||
|
res.AddRange(StringToByte(9, dzap));
|
||||||
|
res.AddRange(BitConverter.GetBytes(dlog));
|
||||||
|
res.AddRange(BitConverter.GetBytes(last));
|
||||||
|
res.AddRange(BitConverter.GetBytes(dlper));
|
||||||
|
res.AddRange(StringToByte(51, nazn));
|
||||||
|
res.AddRange(BitConverter.GetBytes(kompl));
|
||||||
|
res.AddRange(BitConverter.GetBytes(izl));
|
||||||
|
res.AddRange(BitConverter.GetBytes(robm));
|
||||||
|
res.AddRange(BitConverter.GetBytes(rizol));
|
||||||
|
res.AddRange(BitConverter.GetBytes(dkr));
|
||||||
|
res.AddRange(StringToByte(51, nkon));
|
||||||
|
res.AddRange(StringToByte(6, pos));
|
||||||
|
res.AddRange(StringToByte(51, ukaz));
|
||||||
|
res.AddRange(StringToByte(51, zakaz));
|
||||||
|
res.AddRange(StringToByte(51, kat));
|
||||||
|
res.AddRange(StringToByte(3, pril));
|
||||||
|
res.AddRange(StringToByte(1023, rezerved));
|
||||||
|
|
||||||
|
return res.ToArray();
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
|
||||||
|
var enc = Encoding.GetEncoding(866);
|
||||||
|
var count = 0;
|
||||||
|
var tmpArr = Array.Empty<byte>();
|
||||||
|
if (value == null) return;
|
||||||
|
if (value.Length < (count + 1) || value[count] != 0x01) return;
|
||||||
|
count++;
|
||||||
|
if (value.Length < (count + 1)) return;
|
||||||
|
numVDP = value[count];
|
||||||
|
count++;
|
||||||
|
if (value.Length < (count + 7)) return;
|
||||||
|
tmpArr = new byte[7];
|
||||||
|
Array.Copy(value, count, tmpArr, 0, 7);
|
||||||
|
dStart = ByteToDate(tmpArr);
|
||||||
|
count += 7;
|
||||||
|
if (value.Length < (count + 7)) return;
|
||||||
|
tmpArr = new byte[7];
|
||||||
|
Array.Copy(value, count, tmpArr, 0, 7);
|
||||||
|
dEnd = ByteToDate(tmpArr);
|
||||||
|
count += 7;
|
||||||
|
if (value.Length < (count + 1) || value[count] != 0x01) { hasPasport = false; return; }
|
||||||
|
hasPasport = true;
|
||||||
|
count++;
|
||||||
|
if (value.Length < (count + 4)) return;
|
||||||
|
tmpArr = new byte[4];
|
||||||
|
Array.Copy(value, count, tmpArr, 0, 4);
|
||||||
|
kod_npl = BitConverter.ToInt32(tmpArr);
|
||||||
|
count += 4;
|
||||||
|
if (value.Length < (count + 12)) return;
|
||||||
|
nplav = enc.GetString(value, count, 12);
|
||||||
|
count += 12;
|
||||||
|
if (value.Length < (count + 11)) return;
|
||||||
|
rm = enc.GetString(value, count, 11);
|
||||||
|
count += 11;
|
||||||
|
if (value.Length < (count + 101)) return;
|
||||||
|
splav = enc.GetString(value, count, 101);
|
||||||
|
count += 101;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
iS = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
notd = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
vessl = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
diam = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
prpl = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 9)) return;
|
||||||
|
tin = enc.GetString(value, count, 9);
|
||||||
|
count += 9;
|
||||||
|
if (value.Length < (count + 9)) return;
|
||||||
|
dzap = enc.GetString(value, count, 9);
|
||||||
|
count += 9;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
dlog = BitConverter.ToInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
last = BitConverter.ToInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
dlper = BitConverter.ToInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
nazn = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
kompl = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
izl = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 4)) return;
|
||||||
|
robm = BitConverter.ToSingle(value, count);
|
||||||
|
count += 4;
|
||||||
|
if (value.Length < (count + 4)) return;
|
||||||
|
rizol = BitConverter.ToSingle(value, count);
|
||||||
|
count += 4;
|
||||||
|
if (value.Length < (count + 2)) return;
|
||||||
|
dkr = BitConverter.ToUInt16(value, count);
|
||||||
|
count += 2;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
nkon = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 6)) return;
|
||||||
|
pos = enc.GetString(value, count, 6);
|
||||||
|
count += 6;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
ukaz = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
zakaz = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 51)) return;
|
||||||
|
kat = enc.GetString(value, count, 51);
|
||||||
|
count += 51;
|
||||||
|
if (value.Length < (count + 3)) return;
|
||||||
|
pril = enc.GetString(value, count, 3);
|
||||||
|
count += 3;
|
||||||
|
if (value.Length < (count + 1023)) return;
|
||||||
|
rezerved = enc.GetString(value, count, 1023);
|
||||||
|
count += 1023;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -4,6 +4,9 @@
|
|||||||
<name>DataClient</name>
|
<name>DataClient</name>
|
||||||
</assembly>
|
</assembly>
|
||||||
<members>
|
<members>
|
||||||
|
<member name="T:DataClient.NETClient">
|
||||||
|
<summary>Класс для связи с СТП сервером по проботоколу TCP.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Status">
|
<member name="P:DataClient.NETClient.Status">
|
||||||
<summary>
|
<summary>
|
||||||
Статус процесса выполнения запроса.
|
Статус процесса выполнения запроса.
|
||||||
@ -14,6 +17,30 @@
|
|||||||
<member name="T:DataClient.NETClient.Code">
|
<member name="T:DataClient.NETClient.Code">
|
||||||
<summary>Коды для работы с СТП.</summary>
|
<summary>Коды для работы с СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.version">
|
||||||
|
<summary>Версия.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download">
|
||||||
|
<summary>Загрузка.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.pasp_download">
|
||||||
|
<summary>Загрузка паспорта.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.server_time">
|
||||||
|
<summary>Время сервера.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.keep_alive">
|
||||||
|
<summary>Оставаться на связи.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download_nh">
|
||||||
|
<summary>Загрузка (nh).</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.dir_browse">
|
||||||
|
<summary>Структура директории.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.by_name">
|
||||||
|
<summary>Поиск команды по имени.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Ip">
|
<member name="P:DataClient.NETClient.Ip">
|
||||||
<summary>IP адрес СТП.</summary>
|
<summary>IP адрес СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
@ -32,8 +59,8 @@
|
|||||||
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
||||||
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream)">
|
||||||
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
||||||
Соединение с сервером закрыто.
|
Соединение с сервером закрыто.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для Чтения.
|
Стрим недоступен для Чтения.
|
||||||
@ -41,8 +68,8 @@
|
|||||||
Сервер сбросил соединение.
|
Сервер сбросил соединение.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32)">
|
||||||
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
||||||
Размер байт не должен равняться нулю.
|
Размер байт не должен равняться нулю.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для записи.
|
Стрим недоступен для записи.
|
||||||
@ -144,6 +171,36 @@
|
|||||||
Не получилось соединиться с сервером.
|
Не получилось соединиться с сервером.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Server_Time">
|
||||||
|
<summary>Получение текущее время на сервере.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>Текущее время на сервере.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Version">
|
||||||
|
<summary>Получение текущую версию сервера.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>строку с названием версии сервера.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Keep_Alive">
|
||||||
|
<summary>Отправка команды для поддержания соединения.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
<member name="T:DataClient.STPClient">
|
<member name="T:DataClient.STPClient">
|
||||||
<summary>
|
<summary>
|
||||||
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
||||||
|
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj": {
|
||||||
"version": "0.0.3",
|
"version": "0.0.3",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
||||||
"projectName": "DataClient",
|
"projectName": "DataClient",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClient\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClient\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -74,7 +75,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -361,25 +361,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "0.0.3",
|
"version": "0.0.3",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
||||||
"projectName": "DataClient",
|
"projectName": "DataClient",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClient\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClient\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -435,7 +437,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,19 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "lCVOnkDSpCDkY6mFU39PPTK/8UioIwkzLSm5l9U0BI9kmvrQU3GBEeKlZLkvo3I3Vmgv8BfwOMFxbII4ikrnzA==",
|
"dgSpecHash": "fLzCMyL0TTYR6ScHYw8lseE4tuHRjlfRhsrbzgdqw/qeVRrQYigyT797G0cUiPOmrt1GVD0KWz3n3AZIE22bzQ==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\DataClient\\DataClient.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.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.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\\google\\.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\\google\\.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\\google\\.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\\google\\.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\\google\\.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\\google\\.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\\google\\.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\\google\\.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\\nlog.extensions.logging\\1.7.2\\nlog.extensions.logging.1.7.2.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"projectName": "DataClients",
|
"projectName": "DataClients",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -34,8 +35,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,25 +76,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"projectName": "SupportClasses",
|
"projectName": "SupportClasses",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -138,7 +140,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
Binary file not shown.
Binary file not shown.
@ -321,25 +321,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"projectName": "DataClients",
|
"projectName": "DataClients",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -355,8 +357,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -396,7 +398,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "Jx4UMAAsvJkZ+kUms9DHtVovb0p8Xu9CiAkFm801/gOSfERupzhTpmCqqA3eJA4Kluy6pj25MIa0rsKqVEe+DQ==",
|
"dgSpecHash": "uA9rgRXaUEUYoOTmuecMN9sEzQQ9h4wmOmVaX+dlb8QuS5RVxDdEJxCv+xV1gZk+Klv90ZG2LpnZBC8Qo/W4FA==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"projectName": "DataClients",
|
"projectName": "DataClients",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -34,8 +35,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,25 +76,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {
|
"D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||||
"projectName": "Korp90TimePasport",
|
"projectName": "Korp90TimePasport",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -109,8 +111,8 @@
|
|||||||
"netcoreapp3.1": {
|
"netcoreapp3.1": {
|
||||||
"targetAlias": "netcoreapp3.1",
|
"targetAlias": "netcoreapp3.1",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -145,25 +147,26 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"projectName": "SupportClasses",
|
"projectName": "SupportClasses",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -208,7 +211,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -224,25 +224,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||||
"projectName": "Korp90TimePasport",
|
"projectName": "Korp90TimePasport",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -258,8 +260,8 @@
|
|||||||
"netcoreapp3.1": {
|
"netcoreapp3.1": {
|
||||||
"targetAlias": "netcoreapp3.1",
|
"targetAlias": "netcoreapp3.1",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -294,7 +296,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "tizkZ0Ysdd44pdYZUmokM3n1pLd+X36F8QIbewGPbBzcEE9AOxiJJ7sw+9GeXazssgleO65MTrKw5IrjzxgfSg==",
|
"dgSpecHash": "AqbvvkDwL7rcBYkLzhlGt3MNX9HhqeqsJEu5ffbVRs0+3TsQS/BVQ91hVOf+q+SExRT+Ex2NuehhNNw64BSdsA==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\Korp90TimePasport\\Korp90TimePasport.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\system.data.odbc\\5.0.0\\system.data.odbc.5.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"projectName": "DataClients",
|
"projectName": "DataClients",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -34,8 +35,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -75,25 +76,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {
|
"D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
||||||
"projectName": "Mailing",
|
"projectName": "Mailing",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\Mailing\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\Mailing\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -109,20 +111,20 @@
|
|||||||
"netcoreapp3.1": {
|
"netcoreapp3.1": {
|
||||||
"targetAlias": "netcoreapp3.1",
|
"targetAlias": "netcoreapp3.1",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -157,25 +159,26 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"projectName": "MigraDoc.DocumentObjectModel",
|
"projectName": "MigraDoc.DocumentObjectModel",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -224,25 +227,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"projectName": "MigraDoc.Rendering",
|
"projectName": "MigraDoc.Rendering",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -258,14 +262,14 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -301,25 +305,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"projectName": "PdfSharp.Charting",
|
"projectName": "PdfSharp.Charting",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -335,8 +340,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -372,25 +377,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"projectName": "PdfSharp",
|
"projectName": "PdfSharp",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -439,25 +445,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"projectName": "SupportClasses",
|
"projectName": "SupportClasses",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -502,7 +509,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -334,25 +334,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
||||||
"projectName": "Mailing",
|
"projectName": "Mailing",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\Mailing\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\Mailing\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -368,20 +370,20 @@
|
|||||||
"netcoreapp3.1": {
|
"netcoreapp3.1": {
|
||||||
"targetAlias": "netcoreapp3.1",
|
"targetAlias": "netcoreapp3.1",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -416,7 +418,7 @@
|
|||||||
"privateAssets": "all"
|
"privateAssets": "all"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,14 +1,14 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "LJqCrJsyNB9LytCuT4dE39e7zbLIz6i/iKg/2yMtD+s0rFsro9NxxBVHLDsZsfBhQhHHeVcucr71wz0QRgMzUw==",
|
"dgSpecHash": "Fq2IpnyHMNBQTnMq0ZCrHwoCRgbhW2V3rILfncJWwkSpZ1dRVvNmfB6O7vhaEKYd5vbV0iFcMdt415hrQJ6Sog==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.1\\microsoft.netcore.platforms.3.1.1.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.1\\microsoft.netcore.platforms.3.1.1.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512",
|
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"projectName": "MigraDoc.DocumentObjectModel",
|
"projectName": "MigraDoc.DocumentObjectModel",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -67,7 +68,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -222,25 +222,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"projectName": "MigraDoc.DocumentObjectModel",
|
"projectName": "MigraDoc.DocumentObjectModel",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -289,7 +291,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "IgtSa87a30hTEmvSKc+YQUdo7hLh+f0kinWAqI2x9y/d+BBwf6XycPkqhLgTg4VSidlGyKRIhW8xK0qIaHTsZw==",
|
"dgSpecHash": "sBm+civ/y30T28G19ksOeAZSL5HnW74LwApvyScSK1Z25T7B9Gkr9fA+YnAY/upXXLbBJADGkxTQ3draLrfiTQ==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"projectName": "MigraDoc.DocumentObjectModel",
|
"projectName": "MigraDoc.DocumentObjectModel",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -67,25 +68,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"projectName": "MigraDoc.Rendering",
|
"projectName": "MigraDoc.Rendering",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -101,14 +103,14 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -144,25 +146,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"projectName": "PdfSharp.Charting",
|
"projectName": "PdfSharp.Charting",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -178,8 +181,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -215,25 +218,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"projectName": "PdfSharp",
|
"projectName": "PdfSharp",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -282,7 +286,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -280,25 +280,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"projectName": "MigraDoc.Rendering",
|
"projectName": "MigraDoc.Rendering",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -314,14 +316,14 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -357,7 +359,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "bDTnwokcp6TbOaajNaz0yXvVZ+HofXm9vgS5aE2/RwCzyNFEoATOOr89cFUsNtZBwCBijeGQWTYX9RAThLxU1A==",
|
"dgSpecHash": "TxR9xRD7C2qxgn4+fmYYQ80yeu7RmqNvCRhmxCD1mxKyia2AoKu19WCJNH7gSVRBpw5yNVgRJYXvflrC/gST+A==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
BIN
PrintPDF/PdfSharp.Charting/obj/Debug/netstandard2.0/PdfSharp.Charting.csprojAssemblyReference.cache
BIN
PrintPDF/PdfSharp.Charting/obj/Debug/netstandard2.0/PdfSharp.Charting.csprojAssemblyReference.cache
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"projectName": "PdfSharp.Charting",
|
"projectName": "PdfSharp.Charting",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -34,8 +35,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -71,25 +72,26 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"projectName": "PdfSharp",
|
"projectName": "PdfSharp",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -138,7 +140,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -241,25 +241,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"projectName": "PdfSharp.Charting",
|
"projectName": "PdfSharp.Charting",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -275,8 +277,8 @@
|
|||||||
"netstandard2.0": {
|
"netstandard2.0": {
|
||||||
"targetAlias": "netstandard2.0",
|
"targetAlias": "netstandard2.0",
|
||||||
"projectReferences": {
|
"projectReferences": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -312,7 +314,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "w6ImBakjanJ2rg89haorn71y5kBxVm6Ng5vEtZkR5Gjcg1UvrsoJk0aw86WoEzmJw76Uv7kaYT82eTMiYaQwgg==",
|
"dgSpecHash": "ylFR2pFfHruJfLgzgidtqc3YfADHj/7nw+tQ1nHK/jI7pRvAVQTnBsGvB/IdLnxMQFZVD+HIjX9oz6WxWvfZqQ==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"projectName": "PdfSharp",
|
"projectName": "PdfSharp",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -67,7 +68,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -222,25 +222,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "3.0.0",
|
"version": "3.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"projectName": "PdfSharp",
|
"projectName": "PdfSharp",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -289,7 +291,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,12 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "IBl924vmWiOYYnST8LHVzZeTj/m3S0bcbDhnrLu1O6YE4OWnIlS0w51gKWDAYci7lQVioY/598FEC/7aL1FmQg==",
|
"dgSpecHash": "gAA+4olGjjwVeZQSmw/Z0DOTpvSV4fy+dgVMwmTj80c7nXa8OCdrFx82JQ+RJR4CtrbDPW55iyjFjOyll2at+A==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
Binary file not shown.
Binary file not shown.
@ -1,24 +1,25 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {}
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"projectName": "SupportClasses",
|
"projectName": "SupportClasses",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -63,7 +64,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,14 +5,15 @@
|
|||||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
<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>
|
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.10.0</NuGetToolVersion>
|
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<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 Visual Studio\Shared\NuGetPackages\" />
|
||||||
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
|
||||||
|
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
|
@ -4,6 +4,6 @@
|
|||||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||||
<Import Project="$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('$(NuGetPackageRoot)netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
<Import Project="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets" Condition="Exists('C:\Program Files\dotnet\sdk\NuGetFallbackFolder\netstandard.library\2.0.3\build\netstandard2.0\NETStandard.Library.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
@ -179,25 +179,27 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"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 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": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"projectName": "SupportClasses",
|
"projectName": "SupportClasses",
|
||||||
"projectPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"packagesPath": "C:\\Users\\Admin\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||||
"outputPath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
|
"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": [
|
"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.FallbackLocation.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
|
||||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||||
@ -242,7 +244,7 @@
|
|||||||
],
|
],
|
||||||
"assetTargetFallback": true,
|
"assetTargetFallback": true,
|
||||||
"warn": true,
|
"warn": true,
|
||||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.300\\RuntimeIdentifierGraph.json"
|
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,11 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "BElZgcPGbiVwCCfXyLaJeUQgG/0stzHf7tJtt01Xw8l8kVI4Rl4V7heHc8pb/6oay3uMAySkdY5xvl544GQRoQ==",
|
"dgSpecHash": "4z8iakRemDHltW/xazDzU5cngA0Pqip9r1fUiMe+4pEedLlKbRR2y7psVjUGx9IEupBfp4Gj7OPOyPOJ/OLgqQ==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "F:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
"projectFilePath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\Admin\\.nuget\\packages\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512"
|
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\2.0.3\\netstandard.library.2.0.3.nupkg.sha512"
|
||||||
],
|
],
|
||||||
"logs": []
|
"logs": []
|
||||||
}
|
}
|
@ -56,6 +56,43 @@ namespace Test2
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void T1()
|
static void T1()
|
||||||
|
{
|
||||||
|
var t = new NETClient("10.10.45.151", 1070);
|
||||||
|
t.RetryCount = 10;
|
||||||
|
t.RetryInterval = 0.1;
|
||||||
|
var d_start = DateTime.Now;
|
||||||
|
var d_end = new DateTime(2021, 01, 01);
|
||||||
|
var count = 0;
|
||||||
|
Directory.CreateDirectory(Directory.GetCurrentDirectory() + "/test");
|
||||||
|
for (var d = d_start; d >= d_end; d = d.AddDays(-1))
|
||||||
|
{
|
||||||
|
var pasplist = t.Full_Dir_Browse(d.ToString("yyyy'/'MM'/'dd"));
|
||||||
|
if (pasplist != null)
|
||||||
|
foreach(var p in pasplist)
|
||||||
|
{
|
||||||
|
var pasp = t.Full_Pasp_Download(p);
|
||||||
|
|
||||||
|
using (var file = new FileStream(Directory.GetCurrentDirectory() + "/test/pasp" + count.ToString() + ".txt", FileMode.Create, FileAccess.Write))
|
||||||
|
{
|
||||||
|
file.Write(pasp, 0, pasp.Length);
|
||||||
|
}
|
||||||
|
count++;
|
||||||
|
/*
|
||||||
|
for(var i = 0; i < pasp.Length; i++)
|
||||||
|
{
|
||||||
|
Console.Write(" " + pasp[i].ToString("X2"));
|
||||||
|
if ((i + 1) % 16 == 0) Console.WriteLine();
|
||||||
|
}
|
||||||
|
Console.WriteLine();
|
||||||
|
Console.Write("Press button...");
|
||||||
|
Console.ReadKey();
|
||||||
|
Console.WriteLine();
|
||||||
|
*/
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static void OLD5()
|
||||||
{
|
{
|
||||||
var t = new NETClient("10.10.45.151", 1070);
|
var t = new NETClient("10.10.45.151", 1070);
|
||||||
while (cycle)
|
while (cycle)
|
||||||
@ -65,7 +102,6 @@ namespace Test2
|
|||||||
Task.Delay(1000).Wait();
|
Task.Delay(1000).Wait();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void OLD4()
|
static void OLD4()
|
||||||
{
|
{
|
||||||
var t = new NETClient("10.10.45.151", 1070);
|
var t = new NETClient("10.10.45.151", 1070);
|
||||||
@ -76,23 +112,24 @@ namespace Test2
|
|||||||
task2.Start();
|
task2.Start();
|
||||||
task2.GetAwaiter().GetResult();
|
task2.GetAwaiter().GetResult();
|
||||||
}
|
}
|
||||||
|
static void OLD3()
|
||||||
static void OLD1()
|
|
||||||
{
|
{
|
||||||
|
var rnd = new Random();
|
||||||
var t = new NETClient("10.10.45.151", 1070);
|
var t = new NETClient("10.10.45.151", 1070);
|
||||||
var task = new Task<byte[]>(() => t.Full_Download_NH(new DateTime(2021, 06, 02), 12, 1));
|
string[] a = null;
|
||||||
task.Start();
|
int c = 0;
|
||||||
do
|
for (var i = 0; i < 8; i++)
|
||||||
{
|
{
|
||||||
Console.WriteLine("Status: " + (Math.Round(t.Status * 10000) / 100).ToString() + "%");
|
if (a == null || a.Length == 0)
|
||||||
Task.Delay(1000).Wait();
|
a = t.Full_Dir_Browse();
|
||||||
} while (task.Status == TaskStatus.Running);
|
else
|
||||||
var res = (task.IsCompletedSuccessfully) ?
|
a = t.Full_Dir_Browse(a[c]);
|
||||||
task.GetAwaiter().GetResult() :
|
Console.WriteLine((i + 1).ToString() + " test:");
|
||||||
Array.Empty<byte>();
|
if (a != null)
|
||||||
using (var file = new FileStream(Directory.GetCurrentDirectory() + "/test1.txt", FileMode.Create, FileAccess.Write))
|
foreach (var e in a) Console.WriteLine(e);
|
||||||
{
|
else
|
||||||
file.Write(res, 0, res.Length);
|
Console.WriteLine("NULL");
|
||||||
|
c = (a == null) ? 0 : rnd.Next(0, a.Length);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static void OLD2()
|
static void OLD2()
|
||||||
@ -192,26 +229,26 @@ namespace Test2
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
static void OLD3()
|
static void OLD1()
|
||||||
{
|
{
|
||||||
var rnd = new Random();
|
|
||||||
var t = new NETClient("10.10.45.151", 1070);
|
var t = new NETClient("10.10.45.151", 1070);
|
||||||
string[] a = null;
|
var task = new Task<byte[]>(() => t.Full_Download_NH(new DateTime(2021, 06, 02), 12, 1));
|
||||||
int c = 0;
|
task.Start();
|
||||||
for (var i = 0; i < 8; i++)
|
do
|
||||||
{
|
{
|
||||||
if (a == null || a.Length == 0)
|
Console.WriteLine("Status: " + (Math.Round(t.Status * 10000) / 100).ToString() + "%");
|
||||||
a = t.Full_Dir_Browse();
|
Task.Delay(1000).Wait();
|
||||||
else
|
} while (task.Status == TaskStatus.Running);
|
||||||
a = t.Full_Dir_Browse(a[c]);
|
var res = (task.IsCompletedSuccessfully) ?
|
||||||
Console.WriteLine((i + 1).ToString() + " test:");
|
task.GetAwaiter().GetResult() :
|
||||||
if (a != null)
|
Array.Empty<byte>();
|
||||||
foreach (var e in a) Console.WriteLine(e);
|
using (var file = new FileStream(Directory.GetCurrentDirectory() + "/test1.txt", FileMode.Create, FileAccess.Write))
|
||||||
else
|
{
|
||||||
Console.WriteLine("NULL");
|
file.Write(res, 0, res.Length);
|
||||||
c = (a == null) ? 0 : rnd.Next(0, a.Length);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -4,6 +4,9 @@
|
|||||||
<name>DataClient</name>
|
<name>DataClient</name>
|
||||||
</assembly>
|
</assembly>
|
||||||
<members>
|
<members>
|
||||||
|
<member name="T:DataClient.NETClient">
|
||||||
|
<summary>Класс для связи с СТП сервером по проботоколу TCP.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Status">
|
<member name="P:DataClient.NETClient.Status">
|
||||||
<summary>
|
<summary>
|
||||||
Статус процесса выполнения запроса.
|
Статус процесса выполнения запроса.
|
||||||
@ -14,6 +17,30 @@
|
|||||||
<member name="T:DataClient.NETClient.Code">
|
<member name="T:DataClient.NETClient.Code">
|
||||||
<summary>Коды для работы с СТП.</summary>
|
<summary>Коды для работы с СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.version">
|
||||||
|
<summary>Версия.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download">
|
||||||
|
<summary>Загрузка.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.pasp_download">
|
||||||
|
<summary>Загрузка паспорта.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.server_time">
|
||||||
|
<summary>Время сервера.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.keep_alive">
|
||||||
|
<summary>Оставаться на связи.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.download_nh">
|
||||||
|
<summary>Загрузка (nh).</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.dir_browse">
|
||||||
|
<summary>Структура директории.</summary>
|
||||||
|
</member>
|
||||||
|
<member name="F:DataClient.NETClient.Code.by_name">
|
||||||
|
<summary>Поиск команды по имени.</summary>
|
||||||
|
</member>
|
||||||
<member name="P:DataClient.NETClient.Ip">
|
<member name="P:DataClient.NETClient.Ip">
|
||||||
<summary>IP адрес СТП.</summary>
|
<summary>IP адрес СТП.</summary>
|
||||||
</member>
|
</member>
|
||||||
@ -32,8 +59,8 @@
|
|||||||
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
<member name="M:DataClient.NETClient.#ctor(System.String,System.Int32)">
|
||||||
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
<summary>Конструктор класса NetClient с параметрами.</summary><param name="ip">Ip-адрес сервера.</param><param name="port">Порт сервера.</param>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFull(System.Net.Sockets.NetworkStream)">
|
||||||
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
<summary>Получение неопределенного количество байт с сервера. Количество ограничено максимальным значением типа UInt.</summary><param name="ns">Открытый сетевой поток.</param><returns>Массив байт.</returns><exception cref="T:System.InvalidOperationException">
|
||||||
Соединение с сервером закрыто.
|
Соединение с сервером закрыто.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для Чтения.
|
Стрим недоступен для Чтения.
|
||||||
@ -41,8 +68,8 @@
|
|||||||
Сервер сбросил соединение.
|
Сервер сбросил соединение.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32,System.Int32,System.Int32)">
|
<member name="M:DataClient.NETClient.ReceiveBytesFixSize(System.Net.Sockets.NetworkStream,System.UInt32)">
|
||||||
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><param name="awaitInterval">Время ожидания между проверками буфера.</param><param name="tryCounts">Количество проверок буфера.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
<summary>Получение определенного количество байт с сервера.</summary><param name="ns">Открытый сетевой поток.</param><param name="size">Кол-во получаемых байт.</param><returns>Массив байт. Может быть меньше заданного количества.</returns><exception cref="T:System.ArgumentException">
|
||||||
Размер байт не должен равняться нулю.
|
Размер байт не должен равняться нулю.
|
||||||
</exception><exception cref="T:System.IO.IOException">
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
Стрим недоступен для записи.
|
Стрим недоступен для записи.
|
||||||
@ -144,6 +171,36 @@
|
|||||||
Не получилось соединиться с сервером.
|
Не получилось соединиться с сервером.
|
||||||
</exception>
|
</exception>
|
||||||
</member>
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Server_Time">
|
||||||
|
<summary>Получение текущее время на сервере.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>Текущее время на сервере.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Version">
|
||||||
|
<summary>Получение текущую версию сервера.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><returns>строку с названием версии сервера.</returns><exception cref="T:System.ArgumentException">
|
||||||
|
Неверный флаг окончания строки.
|
||||||
|
Неверный флаг во время получения файла.
|
||||||
|
</exception><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
|
<member name="M:DataClient.NETClient.Full_Keep_Alive">
|
||||||
|
<summary>Отправка команды для поддержания соединения.</summary><remarks>Выполняет автоподключение, если оно не установлено. Не все ошибки описаны в документации.</remarks><exception cref="T:System.IO.IOException">
|
||||||
|
Предыдущий запрос не закончен.
|
||||||
|
Поток недоступен для записи.
|
||||||
|
</exception><exception cref="T:System.InvalidOperationException">
|
||||||
|
Не получилось соединиться с сервером.
|
||||||
|
</exception>
|
||||||
|
</member>
|
||||||
<member name="T:DataClient.STPClient">
|
<member name="T:DataClient.STPClient">
|
||||||
<summary>
|
<summary>
|
||||||
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
Класс для связи с СТП. Содержит все инструменты, для получения данных.
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp0.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp0.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp1.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp1.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp10.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp10.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp100.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp100.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp101.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp101.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp102.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp102.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp103.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp103.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp104.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp104.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp105.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp105.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp106.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp106.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp107.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp107.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp108.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp108.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp109.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp109.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp11.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp11.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp110.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp110.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp111.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp111.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp112.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp112.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp113.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp113.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp12.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp12.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp13.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp13.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp14.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp14.txt
Normal file
Binary file not shown.
BIN
Test2/bin/Debug/net5.0/test/pasp15.txt
Normal file
BIN
Test2/bin/Debug/net5.0/test/pasp15.txt
Normal file
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user