This commit is contained in:
2021-05-25 17:00:45 +05:00
parent e2fcfed44c
commit ec2dac13d8
1172 changed files with 5636 additions and 5839 deletions

View File

@@ -9,6 +9,7 @@ using System.Threading;
using System.Linq;
using Mailing;
using System.Text.RegularExpressions;
using System.Collections;
using System.Collections.Generic;
public class CustomMath
@@ -25,7 +26,8 @@ namespace Tests
{
static void Main(string[] args)
{
test11();
test14();
Console.ReadKey();
}
static void test1()
{
@@ -148,7 +150,7 @@ namespace Tests
var a = new STPClient();
var i = DateTime.Now.AddDays(-1 * new Random().Next(10));
Console.WriteLine(i.ToString());
var b = a.GetListPasport(i);
foreach (var e in b)
Console.WriteLine(e.Item1 + '\t' + e.Item2);
@@ -168,7 +170,7 @@ namespace Tests
var e = DateTime.Now.AddDays(-20);
var b = a.GetIshData(s, e, 37);
Console.WriteLine(s.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + e.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
foreach(var t in b)
foreach (var t in b)
{
Console.WriteLine(t.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + t.id.ToString("D2") + '\t' + t.value);
}
@@ -178,17 +180,17 @@ namespace Tests
var w = new STPClient();
var s = new DateTime(2020, 06, 1);
var e = new DateTime(2020, 07, 22);
var r1 = new List<Tuple<string, string>>();
var r1 = new List<(string name, string dir)>();
var r2 = new List<Pasport>();
for (var i = s; i < e; i = i.AddDays(1))
{
var a = w.GetListPasport(i);
foreach(var b in a)
foreach (var b in a)
{
var c = w.GetPasport(b.Item2);
var d = w.GetIshData(c.time_start, c.time_end, c.numVDP);
var flag = false;
foreach(var f in d)
foreach (var f in d)
{
if (f.id != 0) continue;
//Console.Write(f.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + '\t' + b.Item1 + '\t' + f.value);
@@ -213,11 +215,11 @@ namespace Tests
Console.WriteLine();
var fs = new StreamWriter(Directory.GetCurrentDirectory() + '\\' + "result.txt");
for(var i = 0; i < r1.Count; i++)
for (var i = 0; i < r1.Count; i++)
{
var a = w.GetProtectData(r2[i].time_start, r2[i].time_end, r2[i].numVDP);
var b = new List<Protect>();
foreach(var c in a)
foreach (var c in a)
if (c.id == 72) b.Add(c);
if (b.Count > 0)
{
@@ -261,9 +263,9 @@ namespace Tests
fs.WriteLine("70 - Смещение конца архивации");
fs.WriteLine();
fs.WriteLine("№ защиты \t Дата возникновения записи \t Состояние");
foreach (var b in a)
fs.WriteLine(b.id.ToString("D2") + "\t" + b.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + "\t" + b.value.ToString("D2"));
fs.WriteLine(b.id.ToString("D2") + "\t" + b.time.ToString(@"yyyy.MM.dd HH:mm:ss.ff") + "\t" + b.value.ToString("D2"));
fs.Close();
}
}
@@ -304,7 +306,7 @@ namespace Tests
};
a[0].Add(b);
b= new SZOWork()
b = new SZOWork()
{
tc = tc,
tStart = DateTime.Now.AddHours(-1.3),
@@ -332,5 +334,88 @@ namespace Tests
r.Add(CollectData.GetSZOWorks(tStart, tEnd, (ushort)i));
CreatePDF.PDFSZO(r, tStart);
}
static void test12()
{
var a = new STPClient();
var b = a.GetAnalogDiscret(DateTime.Now, DateTime.Now, 50);
foreach (var e in b.an)
{
if (e.Key == 13)
continue;
using (StreamWriter file = new StreamWriter(Directory.GetCurrentDirectory() + "/test50.txt", true))
{
file.WriteLine(e.Key.ToString());
foreach (var f in e.Value)
{
var tmp = f.Item2.HasValue ? f.Item2.Value.ToString() : "NULL";
file.WriteLine(f.Item1.ToString("yyyy-MM-dd HH:mm:ss.f") + "\t" + tmp);
}
}
}
}
static void test13()
{
var ts = new DateTime(2021, 03, 03);
var te = new DateTime(2021, 03, 04);
var a = new STPClient();
var b = a.GetProtectData(ts, te, 32);
foreach (var e in b)
if (e.id == 68)
Console.WriteLine(e.time.ToString("yyyy-MM-dd HH:mm:ss.f") + "\t" + e.id.ToString("D3") + "\t" + e.value.ToString("D2"));
}
static void test14()
{
var total = new List<(ushort, Protect)>();
var ts = new DateTime(2021, 05, 10);
var te = new DateTime(2021, 05, 25);
var a = new STPClient();
var vdp = new ushort[] { 3, 4, 5, 6, 8, 10, 17, 18, 33, 39, 40, 43, 44 };
foreach(var v in vdp)
{
Console.WriteLine("Get: vdp=" + v.ToString("D2"));
var b = a.GetProtectData(ts, te, v);
Console.WriteLine("Write: vdp=" + v.ToString("D2"));
foreach (var e in b)
{
if (e.id != 35 && e.id != 105)
continue;
total.Add((v, e));
var name = e.id == 35 ? "Отс. связь ГМП" : "Отс. связь AB ";
using (StreamWriter file = new StreamWriter(Directory.GetCurrentDirectory() + "/" + v.ToString("D2") +".txt", true))
{
file.WriteLine(
e.time.ToString("yyyy-MM-dd HH:mm:ss.f") + "\t" +
e.id.ToString("D3") + "\t" +
name + "\t" +
e.value.ToString("D2"));
}
}
Console.WriteLine("End: vdp=" + v.ToString("D2"));
}
using (StreamWriter file = new StreamWriter(Directory.GetCurrentDirectory() + "/total.txt", true))
{
total.Sort(delegate((ushort, Protect)x, (ushort, Protect) y) {
var r = DateTime.Compare(x.Item2.time, y.Item2.time);
if (r < 0) return -1;
else if (r > 0) return 1;
else return 0;
});
for (var i = 0; i < total.Count; i++)
{
var e = total[i];
var name = e.Item2.id == 35 ? "Отс. связь ГМП" : "Отс. связь AB ";
file.WriteLine(
e.Item2.time.ToString("yyyy-MM-dd HH:mm:ss.f") + "\t" +
e.Item2.id.ToString("D3") + "\t" +
name + "\t" +
e.Item2.value.ToString("D2") + "\t" +
"<- vdp" + e.Item1.ToString("D2"));
}
}
Console.WriteLine("End");
}
}
}

View File

@@ -13,6 +13,10 @@
<ItemGroup>
<ProjectReference Include="..\DataClients\DataClients.csproj" />
<ProjectReference Include="..\Mailing\Mailing.csproj" />
<ProjectReference Include="..\PrintPDF\MigraDoc.DocumentObjectModel\MigraDoc.DocumentObjectModel.csproj" />
<ProjectReference Include="..\PrintPDF\MigraDoc.Rendering\MigraDoc.Rendering.csproj" />
<ProjectReference Include="..\PrintPDF\PdfSharp.Charting\PdfSharp.Charting.csproj" />
<ProjectReference Include="..\PrintPDF\PdfSharp\PdfSharp.csproj" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,14 @@
2021-05-14 04:25:42.9 035 Отс. связь ГМП 01
2021-05-14 04:25:48.4 035 Отс. связь ГМП 00
2021-05-16 02:46:32.2 105 Отс. связь AB 01
2021-05-16 02:46:32.6 105 Отс. связь AB 00
2021-05-17 22:19:34.5 035 Отс. связь ГМП 01
2021-05-17 22:19:36.2 035 Отс. связь ГМП 00
2021-05-18 14:42:13.5 035 Отс. связь ГМП 01
2021-05-18 14:42:19.0 035 Отс. связь ГМП 00
2021-05-18 20:24:00.3 035 Отс. связь ГМП 01
2021-05-18 20:24:05.8 035 Отс. связь ГМП 00
2021-05-22 19:44:46.4 035 Отс. связь ГМП 01
2021-05-23 03:12:37.2 035 Отс. связь ГМП 00
2021-05-24 20:56:41.0 035 Отс. связь ГМП 01
2021-05-24 20:56:46.5 035 Отс. связь ГМП 00

View File

@@ -0,0 +1,8 @@
2021-05-14 02:15:45.1 105 Отс. связь AB 01
2021-05-14 02:15:45.4 105 Отс. связь AB 00
2021-05-17 09:58:39.9 035 Отс. связь ГМП 01
2021-05-17 10:07:04.5 035 Отс. связь ГМП 00
2021-05-22 01:00:38.6 035 Отс. связь ГМП 01
2021-05-22 01:00:44.1 035 Отс. связь ГМП 00
2021-05-22 12:14:53.7 035 Отс. связь ГМП 01
2021-05-22 12:14:59.2 035 Отс. связь ГМП 00

View File

@@ -0,0 +1,2 @@
2021-05-17 11:25:48.1 035 Отс. связь ГМП 01
2021-05-17 11:25:52.7 035 Отс. связь ГМП 00

View File

@@ -0,0 +1,2 @@
2021-05-21 09:32:21.8 035 Отс. связь ГМП 01
2021-05-21 09:32:23.9 035 Отс. связь ГМП 00

View File

@@ -0,0 +1,225 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Mailing/1.0.0": {
"dependencies": {
"DataClients": "1.0.0",
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0"
},
"runtime": {
"Mailing.dll": {}
}
},
"Microsoft.NETCore.Platforms/3.1.1": {},
"Microsoft.Win32.SystemEvents/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
}
},
"SharpZipLib/1.2.0": {
"runtime": {
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
"assemblyVersion": "1.2.0.246",
"fileVersion": "1.2.0.246"
}
}
},
"System.Drawing.Common/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1",
"Microsoft.Win32.SystemEvents": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
},
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
}
},
"System.Text.Encoding.CodePages/4.7.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1"
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "4.1.3.0",
"fileVersion": "4.700.20.21406"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.1.3.0",
"fileVersion": "4.700.20.21406"
}
}
},
"DataClients/1.0.0": {
"dependencies": {
"SharpZipLib": "1.2.0",
"SupportClasses": "1.0.0",
"System.Text.Encoding.CodePages": "4.7.1"
},
"runtime": {
"DataClients.dll": {}
}
},
"MigraDoc.DocumentObjectModel/3.0.0": {
"dependencies": {
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"MigraDoc.DocumentObjectModel.dll": {}
}
},
"MigraDoc.Rendering/3.0.0": {
"dependencies": {
"MigraDoc.DocumentObjectModel": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"MigraDoc.Rendering.dll": {}
},
"resources": {
"de/MigraDoc.Rendering.resources.dll": {
"locale": "de"
}
}
},
"PdfSharp/3.0.0": {
"dependencies": {
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"PdfSharp.dll": {}
}
},
"PdfSharp.Charting/3.0.0": {
"dependencies": {
"PdfSharp": "3.0.0",
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"PdfSharp.Charting.dll": {}
}
},
"SupportClasses/1.0.0": {
"runtime": {
"SupportClasses.dll": {}
}
}
}
},
"libraries": {
"Mailing/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
"path": "microsoft.netcore.platforms/3.1.1",
"hashPath": "microsoft.netcore.platforms.3.1.1.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
"path": "microsoft.win32.systemevents/4.5.0",
"hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512"
},
"SharpZipLib/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
"path": "sharpziplib/1.2.0",
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
},
"System.Drawing.Common/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
"path": "system.drawing.common/4.5.0",
"hashPath": "system.drawing.common.4.5.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
"path": "system.text.encoding.codepages/4.7.1",
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
},
"DataClients/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"MigraDoc.DocumentObjectModel/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"MigraDoc.Rendering/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"PdfSharp/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"PdfSharp.Charting/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"SupportClasses/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

View File

@@ -0,0 +1,11 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
"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"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "3.1.0"
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -10,6 +10,10 @@
"dependencies": {
"DataClients": "1.0.0",
"Mailing": "1.0.0",
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0",
"System.Text.Encoding.CodePages": "4.7.1"
},
@@ -106,6 +110,7 @@
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0"
},
"runtime": {

View File

@@ -3,7 +3,8 @@
"additionalProbingPaths": [
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\google\\.nuget\\packages",
"C:\\Microsoft\\Xamarin\\NuGet",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
]
}

View File

@@ -0,0 +1,26 @@
2021-05-14 02:15:45.1 105 Отс. связь AB 01 <- vdp10
2021-05-14 02:15:45.4 105 Отс. связь AB 00 <- vdp10
2021-05-14 04:25:42.9 035 Отс. связь ГМП 01 <- vdp03
2021-05-14 04:25:48.4 035 Отс. связь ГМП 00 <- vdp03
2021-05-16 02:46:32.2 105 Отс. связь AB 01 <- vdp03
2021-05-16 02:46:32.6 105 Отс. связь AB 00 <- vdp03
2021-05-17 09:58:39.9 035 Отс. связь ГМП 01 <- vdp10
2021-05-17 10:07:04.5 035 Отс. связь ГМП 00 <- vdp10
2021-05-17 11:25:48.1 035 Отс. связь ГМП 01 <- vdp17
2021-05-17 11:25:52.7 035 Отс. связь ГМП 00 <- vdp17
2021-05-17 22:19:34.5 035 Отс. связь ГМП 01 <- vdp03
2021-05-17 22:19:36.2 035 Отс. связь ГМП 00 <- vdp03
2021-05-18 14:42:13.5 035 Отс. связь ГМП 01 <- vdp03
2021-05-18 14:42:19.0 035 Отс. связь ГМП 00 <- vdp03
2021-05-18 20:24:00.3 035 Отс. связь ГМП 01 <- vdp03
2021-05-18 20:24:05.8 035 Отс. связь ГМП 00 <- vdp03
2021-05-21 09:32:21.8 035 Отс. связь ГМП 01 <- vdp33
2021-05-21 09:32:23.9 035 Отс. связь ГМП 00 <- vdp33
2021-05-22 01:00:38.6 035 Отс. связь ГМП 01 <- vdp10
2021-05-22 01:00:44.1 035 Отс. связь ГМП 00 <- vdp10
2021-05-22 12:14:53.7 035 Отс. связь ГМП 01 <- vdp10
2021-05-22 12:14:59.2 035 Отс. связь ГМП 00 <- vdp10
2021-05-22 19:44:46.4 035 Отс. связь ГМП 01 <- vdp03
2021-05-23 03:12:37.2 035 Отс. связь ГМП 00 <- vdp03
2021-05-24 20:56:41.0 035 Отс. связь ГМП 01 <- vdp03
2021-05-24 20:56:46.5 035 Отс. связь ГМП 00 <- vdp03

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,245 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.1",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.1": {
"Tests/1.0.0": {
"dependencies": {
"DataClients": "1.0.0",
"Mailing": "1.0.0",
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0",
"System.Text.Encoding.CodePages": "4.7.1"
},
"runtime": {
"Tests.dll": {}
}
},
"Microsoft.NETCore.Platforms/3.1.1": {},
"Microsoft.Win32.SystemEvents/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1"
},
"runtime": {
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
}
},
"SharpZipLib/1.2.0": {
"runtime": {
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {
"assemblyVersion": "1.2.0.246",
"fileVersion": "1.2.0.246"
}
}
},
"System.Drawing.Common/4.5.0": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1",
"Microsoft.Win32.SystemEvents": "4.5.0"
},
"runtime": {
"lib/netstandard2.0/System.Drawing.Common.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
},
"runtimeTargets": {
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": {
"rid": "unix",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
},
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.0.0.0",
"fileVersion": "4.6.26515.6"
}
}
},
"System.Text.Encoding.CodePages/4.7.1": {
"dependencies": {
"Microsoft.NETCore.Platforms": "3.1.1"
},
"runtime": {
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "4.1.3.0",
"fileVersion": "4.700.20.21406"
}
},
"runtimeTargets": {
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
"rid": "win",
"assetType": "runtime",
"assemblyVersion": "4.1.3.0",
"fileVersion": "4.700.20.21406"
}
}
},
"DataClients/1.0.0": {
"dependencies": {
"SharpZipLib": "1.2.0",
"SupportClasses": "1.0.0",
"System.Text.Encoding.CodePages": "4.7.1"
},
"runtime": {
"DataClients.dll": {}
}
},
"Mailing/1.0.0": {
"dependencies": {
"DataClients": "1.0.0",
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0"
},
"runtime": {
"Mailing.dll": {}
}
},
"MigraDoc.DocumentObjectModel/3.0.0": {
"dependencies": {
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"MigraDoc.DocumentObjectModel.dll": {}
}
},
"MigraDoc.Rendering/3.0.0": {
"dependencies": {
"MigraDoc.DocumentObjectModel": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"MigraDoc.Rendering.dll": {}
},
"resources": {
"de/MigraDoc.Rendering.resources.dll": {
"locale": "de"
}
}
},
"PdfSharp/3.0.0": {
"dependencies": {
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"PdfSharp.dll": {}
}
},
"PdfSharp.Charting/3.0.0": {
"dependencies": {
"PdfSharp": "3.0.0",
"System.Drawing.Common": "4.5.0"
},
"runtime": {
"PdfSharp.Charting.dll": {}
}
},
"SupportClasses/1.0.0": {
"runtime": {
"SupportClasses.dll": {}
}
}
}
},
"libraries": {
"Tests/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Microsoft.NETCore.Platforms/3.1.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
"path": "microsoft.netcore.platforms/3.1.1",
"hashPath": "microsoft.netcore.platforms.3.1.1.nupkg.sha512"
},
"Microsoft.Win32.SystemEvents/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
"path": "microsoft.win32.systemevents/4.5.0",
"hashPath": "microsoft.win32.systemevents.4.5.0.nupkg.sha512"
},
"SharpZipLib/1.2.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
"path": "sharpziplib/1.2.0",
"hashPath": "sharpziplib.1.2.0.nupkg.sha512"
},
"System.Drawing.Common/4.5.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
"path": "system.drawing.common/4.5.0",
"hashPath": "system.drawing.common.4.5.0.nupkg.sha512"
},
"System.Text.Encoding.CodePages/4.7.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
"path": "system.text.encoding.codepages/4.7.1",
"hashPath": "system.text.encoding.codepages.4.7.1.nupkg.sha512"
},
"DataClients/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"Mailing/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"MigraDoc.DocumentObjectModel/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"MigraDoc.Rendering/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"PdfSharp/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"PdfSharp.Charting/3.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"SupportClasses/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
}
}
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,10 @@
{
"runtimeOptions": {
"additionalProbingPaths": [
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\google\\.nuget\\packages",
"C:\\Microsoft\\Xamarin\\NuGet",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
]
}
}

View File

@@ -0,0 +1,9 @@
{
"runtimeOptions": {
"tfm": "netcoreapp3.1",
"framework": {
"name": "Microsoft.NETCore.App",
"version": "3.1.0"
}
}
}

View File

@@ -1 +1 @@
baef780e70a12bd4fcaf7134f5308d293405f906
3dde24ea0dc2d7e34747aad6da07fd8ab12b92a2

View File

@@ -109,3 +109,6 @@ D:\GIT\ASCKU_PC\Tests\obj\Debug\netcoreapp3.1\Tests.pdb
D:\GIT\ASCKU_PC\Tests\obj\Debug\netcoreapp3.1\Tests.genruntimeconfig.cache
D:\GIT\ASCKU_PC\Tests\bin\Debug\netcoreapp3.1\SupportClasses.dll
D:\GIT\ASCKU_PC\Tests\bin\Debug\netcoreapp3.1\SupportClasses.pdb
D:\GIT\ASCKU_PC\Tests\bin\Debug\netcoreapp3.1\Mailing.deps.json
D:\GIT\ASCKU_PC\Tests\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.json
D:\GIT\ASCKU_PC\Tests\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.dev.json

View File

@@ -1 +1 @@
86c8e15dd33445635927cfaf398408205fd11473
f84014249a8a66106475e4a2653b56d3b98a0cb8

Binary file not shown.

View File

@@ -0,0 +1 @@
e959c0640d7b154e7db970d28c358e8cbff2ba01

View File

@@ -0,0 +1,38 @@
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Mailing.exe
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.exe
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.deps.json
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.runtimeconfig.json
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.runtimeconfig.dev.json
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Tests.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Microsoft.Win32.SystemEvents.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\System.Drawing.Common.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\System.Text.Encoding.CodePages.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\Microsoft.Win32.SystemEvents.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Drawing.Common.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Drawing.Common.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\DataClients.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Mailing.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\MigraDoc.DocumentObjectModel.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\MigraDoc.Rendering.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\PdfSharp.Charting.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\PdfSharp.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\SupportClasses.dll
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\DataClients.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\Mailing.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\MigraDoc.DocumentObjectModel.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\MigraDoc.Rendering.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\PdfSharp.Charting.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\PdfSharp.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\SupportClasses.pdb
D:\GIT\ASCKU_PC\Tests\bin\Release\netcoreapp3.1\de\MigraDoc.Rendering.resources.dll
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.csprojAssemblyReference.cache
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.AssemblyInfoInputs.cache
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.AssemblyInfo.cs
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.csproj.CoreCompileInputs.cache
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.csproj.CopyComplete
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.dll
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.pdb
D:\GIT\ASCKU_PC\Tests\obj\Release\netcoreapp3.1\Tests.genruntimeconfig.cache

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1 @@
f84014249a8a66106475e4a2653b56d3b98a0cb8

Binary file not shown.

Binary file not shown.

View File

@@ -14,11 +14,13 @@
"outputPath": "D:\\GIT\\ASCKU_PC\\DataClients\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -31,6 +33,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\SupportClasses.csproj"
@@ -46,6 +49,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -72,7 +76,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
@@ -86,11 +90,13 @@
"outputPath": "D:\\GIT\\ASCKU_PC\\Mailing\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -103,18 +109,22 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
},
"D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
},
"D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
},
"D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
}
}
}
@@ -127,6 +137,7 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"dependencies": {
"SharpZipLib": {
"target": "Package",
@@ -148,25 +159,27 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"version": "3.0.0",
"restore": {
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
"projectName": "MigraDoc.DocumentObjectModel",
"projectPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\obj\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -179,6 +192,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
@@ -190,6 +204,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -212,25 +227,27 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"version": "3.0.0",
"restore": {
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
"projectName": "MigraDoc.Rendering",
"projectPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.Rendering\\obj\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -243,15 +260,16 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
},
"D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
},
"D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
}
}
}
@@ -264,6 +282,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -286,25 +305,27 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"version": "3.0.0",
"restore": {
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
"projectName": "PdfSharp.Charting",
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PdfSharp.Charting\\obj\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -317,9 +338,10 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj"
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
}
}
}
@@ -332,6 +354,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -354,25 +377,27 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
"D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj": {
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"version": "3.0.0",
"restore": {
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj",
"projectUniqueName": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
"projectName": "PdfSharp",
"projectPath": "D:\\GIT\\ASCKU_PC\\PdfSharp\\PdfSharp.csproj",
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj",
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PdfSharp\\obj\\",
"outputPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -385,6 +410,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
@@ -396,6 +422,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -418,7 +445,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
@@ -432,11 +459,13 @@
"outputPath": "D:\\GIT\\ASCKU_PC\\SupportClasses\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -449,6 +478,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"projectReferences": {}
}
},
@@ -460,6 +490,7 @@
},
"frameworks": {
"netstandard2.0": {
"targetAlias": "netstandard2.0",
"dependencies": {
"NETStandard.Library": {
"suppressParent": "All",
@@ -478,7 +509,7 @@
],
"assetTargetFallback": true,
"warn": true,
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
},
@@ -492,11 +523,13 @@
"outputPath": "D:\\GIT\\ASCKU_PC\\Tests\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -509,12 +542,25 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
},
"D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
}
}
}
@@ -527,6 +573,7 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"dependencies": {
"SharpZipLib": {
"target": "Package",
@@ -552,7 +599,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
}

View File

@@ -5,12 +5,15 @@
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\google\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\google\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages;C:\Program Files (x86)\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.7.0</NuGetToolVersion>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.9.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
<SourceRoot Include="C:\Users\google\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft\Xamarin\NuGet\" />
<SourceRoot Include="C:\Program Files\dotnet\sdk\NuGetFallbackFolder\" />
</ItemGroup>
<PropertyGroup>
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>

View File

@@ -102,6 +102,7 @@
"MigraDoc.DocumentObjectModel": "3.0.0",
"MigraDoc.Rendering": "3.0.0",
"PdfSharp": "3.0.0",
"PdfSharp.Charting": "3.0.0",
"SharpZipLib": "1.2.0"
},
"compile": {
@@ -321,23 +322,23 @@
},
"MigraDoc.DocumentObjectModel/3.0.0": {
"type": "project",
"path": "../MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj",
"msbuildProject": "../MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj"
"path": "../PrintPDF/MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj",
"msbuildProject": "../PrintPDF/MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj"
},
"MigraDoc.Rendering/3.0.0": {
"type": "project",
"path": "../MigraDoc.Rendering/MigraDoc.Rendering.csproj",
"msbuildProject": "../MigraDoc.Rendering/MigraDoc.Rendering.csproj"
"path": "../PrintPDF/MigraDoc.Rendering/MigraDoc.Rendering.csproj",
"msbuildProject": "../PrintPDF/MigraDoc.Rendering/MigraDoc.Rendering.csproj"
},
"PdfSharp/3.0.0": {
"type": "project",
"path": "../PdfSharp/PdfSharp.csproj",
"msbuildProject": "../PdfSharp/PdfSharp.csproj"
"path": "../PrintPDF/PdfSharp/PdfSharp.csproj",
"msbuildProject": "../PrintPDF/PdfSharp/PdfSharp.csproj"
},
"PdfSharp.Charting/3.0.0": {
"type": "project",
"path": "../PdfSharp.Charting/PdfSharp.Charting.csproj",
"msbuildProject": "../PdfSharp.Charting/PdfSharp.Charting.csproj"
"path": "../PrintPDF/PdfSharp.Charting/PdfSharp.Charting.csproj",
"msbuildProject": "../PrintPDF/PdfSharp.Charting/PdfSharp.Charting.csproj"
},
"SupportClasses/1.0.0": {
"type": "project",
@@ -349,13 +350,18 @@
".NETCoreApp,Version=v3.1": [
"DataClients >= 1.0.0",
"Mailing >= 1.0.0",
"MigraDoc.DocumentObjectModel >= 3.0.0",
"MigraDoc.Rendering >= 3.0.0",
"PdfSharp >= 3.0.0",
"PdfSharp.Charting >= 3.0.0",
"SharpZipLib >= 1.2.0",
"System.Text.Encoding.CodePages >= 4.7.1"
]
},
"packageFolders": {
"C:\\Users\\google\\.nuget\\packages\\": {},
"C:\\Microsoft\\Xamarin\\NuGet\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {},
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\": {},
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
},
"project": {
@@ -368,11 +374,13 @@
"outputPath": "D:\\GIT\\ASCKU_PC\\Tests\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages",
"C:\\Program Files (x86)\\Microsoft\\Xamarin\\NuGet\\",
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
],
"configFilePaths": [
"C:\\Users\\google\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
],
@@ -385,12 +393,25 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"projectReferences": {
"D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\DataClients\\DataClients.csproj"
},
"D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\Mailing\\Mailing.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
},
"D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj": {
"projectPath": "D:\\GIT\\ASCKU_PC\\PrintPDF\\PdfSharp\\PdfSharp.csproj"
}
}
}
@@ -403,6 +424,7 @@
},
"frameworks": {
"netcoreapp3.1": {
"targetAlias": "netcoreapp3.1",
"dependencies": {
"SharpZipLib": {
"target": "Package",
@@ -428,7 +450,7 @@
"privateAssets": "all"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.403\\RuntimeIdentifierGraph.json"
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\5.0.201\\RuntimeIdentifierGraph.json"
}
}
}

View File

@@ -1,6 +1,6 @@
{
"version": 2,
"dgSpecHash": "/uQWWLVSo6XokPZZUrTOSR8rFH5d2Vvq9lYHOcuqdChMgd7SVFHxYZsKAf9wrUNUGjeQpa1buFJ4tgUKP5t3fg==",
"dgSpecHash": "+JVwZP7/0pLNGuHgZlzASiN8JWedGIGhi98le9dVNBxqkkn0YIfoy1/t55ebd/PW/fwEUZP6BzK0vbkfIdOJQw==",
"success": true,
"projectFilePath": "D:\\GIT\\ASCKU_PC\\Tests\\Tests.csproj",
"expectedPackageFiles": [