First commit
Send all results
This commit is contained in:
19
Mailing/Mailing.csproj
Normal file
19
Mailing/Mailing.csproj
Normal file
@@ -0,0 +1,19 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="SharpZipLib" Version="1.2.0" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\DataClients\DataClients.csproj" />
|
||||
<ProjectReference Include="..\MigraDoc.DocumentObjectModel\MigraDoc.DocumentObjectModel.csproj" />
|
||||
<ProjectReference Include="..\MigraDoc.Rendering\MigraDoc.Rendering.csproj" />
|
||||
<ProjectReference Include="..\PdfSharp\PdfSharp.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
91
Mailing/Program.cs
Normal file
91
Mailing/Program.cs
Normal file
@@ -0,0 +1,91 @@
|
||||
using DataClients;
|
||||
using System;
|
||||
using System.Collections;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net.Mail;
|
||||
using System.Text;
|
||||
|
||||
namespace Mailing
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
if (args.Length < 1)
|
||||
Console.WriteLine("Need params.");
|
||||
var mailList = new List<string>();
|
||||
{
|
||||
var strings = File.ReadAllLines(args.Last());
|
||||
foreach (var e in strings)
|
||||
{
|
||||
var tmp = e.Split(' ');
|
||||
foreach (var ee in tmp)
|
||||
{
|
||||
try
|
||||
{
|
||||
MailAddress m = new MailAddress(ee.ToLower());
|
||||
if (!mailList.Contains(ee.ToLower()))
|
||||
mailList.Add(ee.ToLower());
|
||||
}
|
||||
catch (Exception) { }
|
||||
}
|
||||
}
|
||||
}
|
||||
switch (args[0])
|
||||
{
|
||||
case "SZO":
|
||||
if (args.Length != 3)
|
||||
{
|
||||
Console.WriteLine("Wrong format");
|
||||
Console.WriteLine("Example: Maling SZO 2020.07.14 /mail.list");
|
||||
return;
|
||||
}
|
||||
|
||||
var time = DateTime.Now;
|
||||
{
|
||||
try
|
||||
{
|
||||
var s = args[1].Split('.');
|
||||
time = new DateTime(
|
||||
Convert.ToInt32(s[0]),
|
||||
Convert.ToInt32(s[1]),
|
||||
Convert.ToInt32(s[2]));
|
||||
}
|
||||
catch
|
||||
{
|
||||
Console.WriteLine("Wrong format data");
|
||||
Console.WriteLine("Example: 2020.07.14");
|
||||
return;
|
||||
}
|
||||
}
|
||||
GenSZO.GetPDF(time);
|
||||
var file = Directory.GetCurrentDirectory() + "/" + time.ToString("yyyy-MM-dd") + ".pdf";
|
||||
foreach (var e in mailList)
|
||||
Mailing.SendMail(new MailAddress(e), file);
|
||||
break;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
public static class Mailing
|
||||
{
|
||||
private static readonly MailAddress From = new MailAddress("no-reply@vsmpo.ru", "ASCKU_32_ROBOT");
|
||||
private static SmtpClient Smtp = new SmtpClient("mail.vsmpo.ru", 25);
|
||||
private static string Subject = "Контроль работы SZO";
|
||||
private static string Body = "Ежедневная рассылка контроля работы " +
|
||||
"водокольцевых насосов SZO на ВДП в цехе №32";
|
||||
public static void SendMail(MailAddress to, string file)
|
||||
{
|
||||
MailMessage m = new MailMessage(From, to)
|
||||
{
|
||||
Subject = Subject,
|
||||
Body = Body
|
||||
};
|
||||
m.Attachments.Add(new Attachment(file));
|
||||
Smtp.Send(m);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
8
Mailing/Properties/launchSettings.json
Normal file
8
Mailing/Properties/launchSettings.json
Normal file
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"profiles": {
|
||||
"Mailing": {
|
||||
"commandName": "Project",
|
||||
"commandLineArgs": "SZO 2020.08.28 F:\\Projects1\\Mailing\\bin\\Debug\\netcoreapp3.1\\mailing_SZO.list"
|
||||
}
|
||||
}
|
||||
}
|
379
Mailing/SZO.cs
Normal file
379
Mailing/SZO.cs
Normal file
@@ -0,0 +1,379 @@
|
||||
using DataClients;
|
||||
using MigraDoc.DocumentObjectModel;
|
||||
using MigraDoc.DocumentObjectModel.Tables;
|
||||
using MigraDoc.Rendering;
|
||||
using PdfSharp.Drawing;
|
||||
using PdfSharp.Fonts;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace Mailing
|
||||
{
|
||||
public static class GenSZO
|
||||
{
|
||||
private static DateTime timeStart = DateTime.Now.AddDays(-1);
|
||||
private static DateTime timeEnd = DateTime.Now;
|
||||
private static Dictionary<int, List<SZOWork>> resFull = new Dictionary<int, List<SZOWork>>();
|
||||
|
||||
public static void GetPDF(DateTime time)
|
||||
{
|
||||
timeStart = new DateTime(time.Year, time.Month, time.Day, 0, 0, 0);
|
||||
timeEnd = new DateTime(time.Year, time.Month, time.Day, 0, 0, 0).AddDays(1);
|
||||
GetData();
|
||||
PDFGenSZO.AddHeader("Контроль работы водокольцевых насосов SZO ", timeStart, timeEnd);
|
||||
foreach (var e in resFull)
|
||||
PDFGenSZO.AddSZOTable(e.Key, e.Value);
|
||||
PDFGenSZO.AddTotalTime();
|
||||
PDFGenSZO.Print(time);
|
||||
}
|
||||
|
||||
private static void GetData()
|
||||
{
|
||||
var a = new STPClient();
|
||||
for (ushort i = 1; i <= 50; i++)
|
||||
{
|
||||
var tc = a.GetTechCycle(timeStart, timeEnd, i);
|
||||
var ad = a.GetAnalogDiscret(timeStart, timeEnd, i);
|
||||
foreach (var e in tc)
|
||||
{
|
||||
int[] chk1 = {
|
||||
(int)TechCycle.Operation.cooling_ingot,
|
||||
(int)TechCycle.Operation.cooling_reflow,
|
||||
(int)TechCycle.Operation.cooling_welding };
|
||||
int[] chk2 =
|
||||
{
|
||||
(int)TechCycle.Operation.end_tech_cycle,
|
||||
(int)TechCycle.Operation.unloading_loading,
|
||||
(int)TechCycle.Operation.looking_welding,
|
||||
(int)TechCycle.Operation.unloading_kit
|
||||
};
|
||||
if (!chk1.Contains((int)e.index) && !chk2.Contains((int)e.index))
|
||||
continue;
|
||||
|
||||
if (chk1.Contains((int)e.index))
|
||||
{
|
||||
var test =
|
||||
(from l in ad.an[13]
|
||||
where l.Item1 >= e.start &&
|
||||
l.Item1 <= e.end &&
|
||||
l.Item2 >= 30
|
||||
select l).ToArray();
|
||||
if (test.Length == 0)
|
||||
continue;
|
||||
}
|
||||
|
||||
var currstat = new Tuple<DateTime, bool?>(e.start, null);
|
||||
foreach (var d in ad.di[22])
|
||||
{
|
||||
if (
|
||||
currstat.Item1 <= e.end &&
|
||||
d.Item1 >= e.start &&
|
||||
currstat.Item2.HasValue &&
|
||||
currstat.Item2.Value
|
||||
)
|
||||
{
|
||||
var t1 = currstat.Item1 > e.start ? currstat.Item1 : e.start;
|
||||
var t2 = d.Item1 > e.end ? e.end : d.Item1;
|
||||
var res = t2 - t1;
|
||||
currstat = d;
|
||||
if (chk1.Contains((int)e.index) && res.TotalMinutes < 15)
|
||||
continue;
|
||||
if (!resFull.ContainsKey(i))
|
||||
resFull.Add(i, new List<SZOWork>());
|
||||
resFull[i].Add(new SZOWork()
|
||||
{
|
||||
oper = e.index,
|
||||
techCycleStart = e.start,
|
||||
WorkTime = res
|
||||
});
|
||||
}
|
||||
currstat = d;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public class SZOWork
|
||||
{
|
||||
public TechCycle.Operation oper = TechCycle.Operation.unloading_loading;
|
||||
public DateTime techCycleStart = DateTime.Now;
|
||||
public TimeSpan WorkTime = new TimeSpan();
|
||||
}
|
||||
}
|
||||
|
||||
public static class PDFGenSZO
|
||||
{
|
||||
private static TimeSpan totalTime = new TimeSpan();
|
||||
private static Document doc = new Document();
|
||||
public static void AddHeader(string name, DateTime start, DateTime end)
|
||||
{
|
||||
EZFontResolver fontRes = EZFontResolver.Get;
|
||||
GlobalFontSettings.FontResolver = fontRes;
|
||||
fontRes.AddFont("TNR", XFontStyle.Regular, @"./times.ttf");
|
||||
fontRes.AddFont("TNR", XFontStyle.Bold, @"./timesbd.ttf");
|
||||
fontRes.AddFont("TNR", XFontStyle.BoldItalic, @"./timesbi.ttf");
|
||||
fontRes.AddFont("TNR", XFontStyle.Italic, @"./timesi.ttf");
|
||||
|
||||
Section page = AddPage();
|
||||
var title = page.AddParagraph();
|
||||
title.Format.Alignment = ParagraphAlignment.Center;
|
||||
title.Format.Font.Size = 14;
|
||||
title.Format.Font.Name = "TNR";
|
||||
title.Format.SpaceAfter = new Unit(10, UnitType.Millimeter);
|
||||
|
||||
title.AddText(name + "\n");
|
||||
end = end.AddSeconds(-1);
|
||||
title.AddText("за период с " + start.ToString("dd.MM.yyyy") + " по " + end.ToString("dd.MM.yyyy") + "\n");
|
||||
}
|
||||
|
||||
public static void AddSZOTable(int vdp, List<GenSZO.SZOWork> res)
|
||||
{
|
||||
var title = doc.LastSection.AddParagraph();
|
||||
title.Format.Alignment = ParagraphAlignment.Left;
|
||||
title.Format.Font.Size = 12;
|
||||
title.Format.Font.Name = "TNR";
|
||||
title.Format.SpaceAfter = new Unit(2, UnitType.Millimeter);
|
||||
title.AddText("Работа SZO печи №" + vdp.ToString("D2") + "\n");
|
||||
|
||||
var table = doc.LastSection.AddTable();
|
||||
table.Format.Alignment = ParagraphAlignment.Center;
|
||||
table.Format.Font.Size = 12;
|
||||
table.Format.Font.Name = "TNR";
|
||||
table.Rows.LeftIndent = 0;
|
||||
|
||||
int[] colSize = { 5, 8, 4 };
|
||||
foreach (var e in colSize)
|
||||
{
|
||||
var col = table.AddColumn(new Unit(e, UnitType.Centimeter));
|
||||
col.Borders.Left.Color = new Color(0, 0, 0);
|
||||
col.Borders.Left.Width = 0.25;
|
||||
col.Borders.Right.Color = new Color(0, 0, 0);
|
||||
col.Borders.Right.Width = 0.25;
|
||||
}
|
||||
|
||||
var row = table.AddRow();
|
||||
row.Borders.Top.Color = new Color(0, 0, 0);
|
||||
row.Borders.Top.Width = 0.25;
|
||||
row.Borders.Bottom.Color = new Color(0, 0, 0);
|
||||
row.Borders.Bottom.Width = 0.25;
|
||||
row.HeadingFormat = true;
|
||||
row.VerticalAlignment = VerticalAlignment.Center;
|
||||
row.Cells[0].AddParagraph("Время начала операции");
|
||||
row.Cells[1].AddParagraph("Название операции");
|
||||
row.Cells[2].AddParagraph("Время работы SZO");
|
||||
|
||||
var totalVDP = new TimeSpan();
|
||||
foreach (var e in res)
|
||||
{
|
||||
row = table.AddRow();
|
||||
row.Borders.Bottom.Color = new Color(0, 0, 0);
|
||||
row.Borders.Bottom.Width = 0.25;
|
||||
row.VerticalAlignment = VerticalAlignment.Center;
|
||||
|
||||
row.Cells[0].AddParagraph(e.techCycleStart.ToString(@"yyyy.MM.dd HH:mm:ss.ff"));
|
||||
row.Cells[1].AddParagraph(Names.techCycle[(int)e.oper]);
|
||||
row.Cells[2].AddParagraph(e.WorkTime.ToString(@"hh\:mm\:ss"));
|
||||
totalVDP = totalVDP.Add(e.WorkTime);
|
||||
}
|
||||
|
||||
title = doc.LastSection.AddParagraph();
|
||||
title.Format.Alignment = ParagraphAlignment.Right;
|
||||
title.Format.Font.Size = 12;
|
||||
title.Format.Font.Name = "TNR";
|
||||
title.Format.SpaceAfter = new Unit(10, UnitType.Millimeter);
|
||||
title.AddText(
|
||||
"Общее время работы SZO печи №" + vdp.ToString("D2") +
|
||||
": " + totalVDP.ToString(@"hh\:mm\:ss")
|
||||
);
|
||||
totalTime = totalTime.Add(totalVDP);
|
||||
}
|
||||
public static void AddTotalTime() { AddTotalTime(totalTime); }
|
||||
public static void AddTotalTime(TimeSpan time)
|
||||
{
|
||||
var title = doc.LastSection.AddParagraph();
|
||||
title.Format.Alignment = ParagraphAlignment.Left;
|
||||
title.Format.Font.Size = 12;
|
||||
title.Format.Font.Name = "TNR";
|
||||
title.Format.SpaceAfter = new Unit(10, UnitType.Millimeter);
|
||||
title.AddText("Общее время работы SZO: " + time.ToString(@"%d\.hh\:mm\:ss"));
|
||||
}
|
||||
|
||||
public static void Print(DateTime time)
|
||||
{
|
||||
var file = Directory.GetCurrentDirectory() + '/' + time.ToString("yyyy-MM-dd") + ".pdf";
|
||||
if (File.Exists(file))
|
||||
File.Delete(file);
|
||||
var pdfRenderer = new PdfDocumentRenderer(true) { Document = doc };
|
||||
pdfRenderer.RenderDocument();
|
||||
pdfRenderer.PdfDocument.Save(file);
|
||||
}
|
||||
private static Section AddPage()
|
||||
{
|
||||
Section section = doc.AddSection();
|
||||
section.PageSetup.PageFormat = PageFormat.A4;
|
||||
section.PageSetup.Orientation = Orientation.Portrait;
|
||||
section.PageSetup.BottomMargin = new Unit(20, UnitType.Millimeter);
|
||||
section.PageSetup.TopMargin = new Unit(20, UnitType.Millimeter);
|
||||
section.PageSetup.LeftMargin = new Unit(30, UnitType.Millimeter);
|
||||
section.PageSetup.RightMargin = new Unit(15, UnitType.Millimeter);
|
||||
return section;
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// EZFontResolver is a generic font resolver for PDFsharp.
|
||||
/// It implement IFontResolver internally.
|
||||
/// To use it, just pass your fonts as filename or byte[]
|
||||
/// in calls to AddFont.
|
||||
/// </summary>
|
||||
public class EZFontResolver : IFontResolver
|
||||
{
|
||||
EZFontResolver()
|
||||
{ }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the one and only EZFontResolver object.
|
||||
/// </summary>
|
||||
public static EZFontResolver Get
|
||||
{
|
||||
get { return _singleton ?? (_singleton = new EZFontResolver()); }
|
||||
}
|
||||
private static EZFontResolver _singleton;
|
||||
|
||||
/// <summary>
|
||||
/// Adds the font passing a filename.
|
||||
/// </summary>
|
||||
/// <param name="familyName">Name of the font family.</param>
|
||||
/// <param name="style">The style.</param>
|
||||
/// <param name="filename">The filename.</param>
|
||||
/// <param name="simulateBold">if set to <c>true</c> bold will be simulated.</param>
|
||||
/// <param name="simulateItalic">if set to <c>true</c> italic will be simulated.</param>
|
||||
/// <exception cref="Exception">
|
||||
/// Font file is too big.
|
||||
/// or
|
||||
/// Reading font file failed.
|
||||
/// </exception>
|
||||
public void AddFont(string familyName, XFontStyle style, string filename,
|
||||
bool simulateBold = false, bool simulateItalic = false)
|
||||
{
|
||||
using (var fs = new FileStream(filename, FileMode.Open, FileAccess.Read, FileShare.Read))
|
||||
{
|
||||
var size = fs.Length;
|
||||
if (size > int.MaxValue)
|
||||
throw new Exception("Font file is too big.");
|
||||
var length = (int)size;
|
||||
var data = new byte[length];
|
||||
var read = fs.Read(data, 0, length);
|
||||
if (length != read)
|
||||
throw new Exception("Reading font file failed.");
|
||||
AddFont(familyName, style, data, simulateBold, simulateItalic);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Adds the font passing a byte array containing the font.
|
||||
/// </summary>
|
||||
/// <param name="familyName">Name of the font family.</param>
|
||||
/// <param name="style">The style.</param>
|
||||
/// <param name="data">The data.</param>
|
||||
/// <param name="simulateBold">if set to <c>true</c> bold will be simulated.</param>
|
||||
/// <param name="simulateItalic">if set to <c>true</c> italic will be simulated.</param>
|
||||
public void AddFont(string familyName, XFontStyle style, byte[] data,
|
||||
bool simulateBold = false, bool simulateItalic = false)
|
||||
{
|
||||
// Add the font as we get it.
|
||||
AddFontHelper(familyName, style, data, false, false);
|
||||
|
||||
// If the font is not bold and bold simulation is requested, add that, too.
|
||||
if (simulateBold && (style & XFontStyle.Bold) == 0)
|
||||
{
|
||||
AddFontHelper(familyName, style | XFontStyle.Bold, data, true, false);
|
||||
}
|
||||
|
||||
// Same for italic.
|
||||
if (simulateItalic && (style & XFontStyle.Italic) == 0)
|
||||
{
|
||||
AddFontHelper(familyName, style | XFontStyle.Italic, data, false, true);
|
||||
}
|
||||
|
||||
// Same for bold and italic.
|
||||
if (simulateBold && (style & XFontStyle.Bold) == 0 &&
|
||||
simulateItalic && (style & XFontStyle.Italic) == 0)
|
||||
{
|
||||
AddFontHelper(familyName, style | XFontStyle.BoldItalic, data, true, true);
|
||||
}
|
||||
}
|
||||
|
||||
void AddFontHelper(string familyName, XFontStyle style, byte[] data, bool simulateBold, bool simulateItalic)
|
||||
{
|
||||
// Currently we do not need FamilyName and Style.
|
||||
// FaceName is a combination of FamilyName and Style.
|
||||
var fi = new EZFontInfo
|
||||
{
|
||||
//FamilyName = familyName,
|
||||
FaceName = familyName.ToLower(),
|
||||
//Style = style,
|
||||
Data = data,
|
||||
SimulateBold = simulateBold,
|
||||
SimulateItalic = simulateItalic
|
||||
};
|
||||
if ((style & XFontStyle.Bold) != 0)
|
||||
{
|
||||
// TODO Create helper method to prevent having duplicate string literals?
|
||||
fi.FaceName += "|b";
|
||||
}
|
||||
if ((style & XFontStyle.Italic) != 0)
|
||||
{
|
||||
fi.FaceName += "|i";
|
||||
}
|
||||
|
||||
// Check if we already have this font.
|
||||
var test = GetFont(fi.FaceName);
|
||||
if (test != null)
|
||||
throw new Exception("Font " + familyName + " with this style was already registered.");
|
||||
|
||||
_fonts.Add(fi.FaceName.ToLower(), fi);
|
||||
}
|
||||
|
||||
#region IFontResolver
|
||||
public FontResolverInfo ResolveTypeface(string familyName, bool isBold, bool isItalic)
|
||||
{
|
||||
string faceName = familyName.ToLower() +
|
||||
(isBold ? "|b" : "") +
|
||||
(isItalic ? "|i" : "");
|
||||
EZFontInfo item;
|
||||
if (_fonts.TryGetValue(faceName, out item))
|
||||
{
|
||||
var result = new FontResolverInfo(item.FaceName, item.SimulateBold, item.SimulateItalic);
|
||||
return result;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public byte[] GetFont(string faceName)
|
||||
{
|
||||
EZFontInfo item;
|
||||
if (_fonts.TryGetValue(faceName, out item))
|
||||
{
|
||||
return item.Data;
|
||||
}
|
||||
return null;
|
||||
}
|
||||
#endregion
|
||||
|
||||
private readonly Dictionary<string, EZFontInfo> _fonts = new Dictionary<string, EZFontInfo>();
|
||||
|
||||
struct EZFontInfo
|
||||
{
|
||||
//internal string FamilyName;
|
||||
internal string FaceName;
|
||||
//internal XFontStyle Style;
|
||||
internal byte[] Data;
|
||||
internal bool SimulateBold;
|
||||
internal bool SimulateItalic;
|
||||
}
|
||||
}
|
||||
}
|
BIN
Mailing/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/DataClients.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/DataClients.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll
Normal file
Binary file not shown.
213
Mailing/bin/Debug/netcoreapp3.1/Mailing.deps.json
Normal file
213
Mailing/bin/Debug/netcoreapp3.1/Mailing.deps.json
Normal file
@@ -0,0 +1,213 @@
|
||||
{
|
||||
"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",
|
||||
"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",
|
||||
"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": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"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": ""
|
||||
}
|
||||
}
|
||||
}
|
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.exe
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.exe
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/Mailing.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\google\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\google\\.nuget\\packages",
|
||||
"C:\\Microsoft\\Xamarin\\NuGet",
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder"
|
||||
]
|
||||
}
|
||||
}
|
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
BIN
Mailing/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/Microsoft.Win32.SystemEvents.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.DocumentObjectModel.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/MigraDoc.Rendering.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.Charting.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.Charting.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.Charting.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.Charting.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/PdfSharp.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/STPClient.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/STPClient.dll
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/STPClient.pdb
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/STPClient.pdb
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/System.Drawing.Common.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
3
Mailing/bin/Debug/netcoreapp3.1/mailing_SZO.list
Normal file
3
Mailing/bin/Debug/netcoreapp3.1/mailing_SZO.list
Normal file
@@ -0,0 +1,3 @@
|
||||
hatuncev_gd@vsmpo.ru
|
||||
usov@vsmpo.ru
|
||||
chervyakov_ds@it.ivc.vsmpo.ru
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/times.ttf
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/times.ttf
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/timesbd.ttf
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/timesbd.ttf
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/timesbi.ttf
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/timesbi.ttf
Normal file
Binary file not shown.
BIN
Mailing/bin/Debug/netcoreapp3.1/timesi.ttf
Normal file
BIN
Mailing/bin/Debug/netcoreapp3.1/timesi.ttf
Normal file
Binary file not shown.
@@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
|
23
Mailing/obj/Debug/netcoreapp3.1/Mailing.AssemblyInfo.cs
Normal file
23
Mailing/obj/Debug/netcoreapp3.1/Mailing.AssemblyInfo.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// Этот код создан программой.
|
||||
// Исполняемая версия:4.0.30319.42000
|
||||
//
|
||||
// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
|
||||
// повторной генерации кода.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("Mailing")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("Mailing")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("Mailing")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Создано классом WriteCodeFragment MSBuild.
|
||||
|
@@ -0,0 +1 @@
|
||||
da822a2b7e37e50e0046e7261fe40de2f5b3ef2f
|
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.assets.cache
Normal file
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.assets.cache
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
ab8cb3630227757ea2e8c0fc8b7e12edbab2074e
|
@@ -0,0 +1,50 @@
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.exe
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.csprojAssemblyReference.cache
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.AssemblyInfoInputs.cache
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.AssemblyInfo.cs
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.deps.json
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.json
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.dev.json
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.dll
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\Mailing.pdb
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\STPClient.dll
|
||||
D:\Projects\Mailing\bin\Debug\netcoreapp3.1\STPClient.pdb
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.csproj.CoreCompileInputs.cache
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.csproj.CopyComplete
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.dll
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.pdb
|
||||
D:\Projects\Mailing\obj\Debug\netcoreapp3.1\Mailing.genruntimeconfig.cache
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.exe
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.deps.json
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.json
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.runtimeconfig.dev.json
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Mailing.pdb
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\System.Text.Encoding.CodePages.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Text.Encoding.CodePages.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\DataClients.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\DataClients.pdb
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.csprojAssemblyReference.cache
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.AssemblyInfoInputs.cache
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.AssemblyInfo.cs
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.csproj.CopyComplete
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.dll
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.pdb
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.genruntimeconfig.cache
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\Microsoft.Win32.SystemEvents.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\System.Drawing.Common.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\Microsoft.Win32.SystemEvents.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\runtimes\unix\lib\netcoreapp2.0\System.Drawing.Common.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\runtimes\win\lib\netcoreapp2.0\System.Drawing.Common.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\MigraDoc.DocumentObjectModel.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\MigraDoc.Rendering.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\PdfSharp.Charting.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\PdfSharp.dll
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\MigraDoc.DocumentObjectModel.pdb
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\MigraDoc.Rendering.pdb
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\PdfSharp.pdb
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\PdfSharp.Charting.pdb
|
||||
F:\Projects1\Mailing\bin\Debug\netcoreapp3.1\de\MigraDoc.Rendering.resources.dll
|
||||
F:\Projects1\Mailing\obj\Debug\netcoreapp3.1\Mailing.csproj.CoreCompileInputs.cache
|
Binary file not shown.
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.dll
Normal file
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.dll
Normal file
Binary file not shown.
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.exe
Normal file
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.exe
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
86c8e15dd33445635927cfaf398408205fd11473
|
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.pdb
Normal file
BIN
Mailing/obj/Debug/netcoreapp3.1/Mailing.pdb
Normal file
Binary file not shown.
422
Mailing/obj/Mailing.csproj.nuget.dgspec.json
Normal file
422
Mailing/obj/Mailing.csproj.nuget.dgspec.json
Normal file
@@ -0,0 +1,422 @@
|
||||
{
|
||||
"format": 1,
|
||||
"restore": {
|
||||
"F:\\Projects1\\Mailing\\Mailing.csproj": {}
|
||||
},
|
||||
"projects": {
|
||||
"F:\\Projects1\\DataClients\\DataClients.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\DataClients\\DataClients.csproj",
|
||||
"projectName": "DataClients",
|
||||
"projectPath": "F:\\Projects1\\DataClients\\DataClients.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\DataClients\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"SharpZipLib": {
|
||||
"target": "Package",
|
||||
"version": "[1.2.0, )"
|
||||
},
|
||||
"System.Text.Encoding.CodePages": {
|
||||
"target": "Package",
|
||||
"version": "[4.7.1, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"F:\\Projects1\\Mailing\\Mailing.csproj": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\Mailing\\Mailing.csproj",
|
||||
"projectName": "Mailing",
|
||||
"projectPath": "F:\\Projects1\\Mailing\\Mailing.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\Mailing\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"projectReferences": {
|
||||
"F:\\Projects1\\DataClients\\DataClients.csproj": {
|
||||
"projectPath": "F:\\Projects1\\DataClients\\DataClients.csproj"
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp\\PdfSharp.csproj": {
|
||||
"projectPath": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": {
|
||||
"target": "Package",
|
||||
"version": "[1.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||
"version": "3.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||
"projectName": "MigraDoc.DocumentObjectModel",
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[4.5.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||
"version": "3.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||
"projectName": "MigraDoc.Rendering",
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\MigraDoc.Rendering\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"projectReferences": {
|
||||
"F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||
"projectPath": "F:\\Projects1\\PdfSharp.Charting\\PdfSharp.Charting.csproj"
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp\\PdfSharp.csproj": {
|
||||
"projectPath": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[4.5.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp.Charting\\PdfSharp.Charting.csproj": {
|
||||
"version": "3.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||
"projectName": "PdfSharp.Charting",
|
||||
"projectPath": "F:\\Projects1\\PdfSharp.Charting\\PdfSharp.Charting.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\PdfSharp.Charting\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"projectReferences": {
|
||||
"F:\\Projects1\\PdfSharp\\PdfSharp.csproj": {
|
||||
"projectPath": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[4.5.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp\\PdfSharp.csproj": {
|
||||
"version": "3.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj",
|
||||
"projectName": "PdfSharp",
|
||||
"projectPath": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\PdfSharp\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netstandard2.0"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"projectReferences": {}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netstandard2.0": {
|
||||
"dependencies": {
|
||||
"NETStandard.Library": {
|
||||
"suppressParent": "All",
|
||||
"target": "Package",
|
||||
"version": "[2.0.3, )",
|
||||
"autoReferenced": true
|
||||
},
|
||||
"System.Drawing.Common": {
|
||||
"target": "Package",
|
||||
"version": "[4.5.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
15
Mailing/obj/Mailing.csproj.nuget.g.props
Normal file
15
Mailing/obj/Mailing.csproj.nuget.g.props
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
|
||||
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
|
||||
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\google\.nuget\packages\;C:\Microsoft\Xamarin\NuGet\;C:\Program Files\dotnet\sdk\NuGetFallbackFolder</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.6.0</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
6
Mailing/obj/Mailing.csproj.nuget.g.targets
Normal file
6
Mailing/obj/Mailing.csproj.nuget.g.targets
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="no"?>
|
||||
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
|
||||
</PropertyGroup>
|
||||
</Project>
|
400
Mailing/obj/project.assets.json
Normal file
400
Mailing/obj/project.assets.json
Normal file
@@ -0,0 +1,400 @@
|
||||
{
|
||||
"version": 3,
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"Microsoft.NETCore.Platforms/3.1.1": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard1.0/_._": {}
|
||||
}
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/4.5.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netstandard2.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll": {}
|
||||
}
|
||||
},
|
||||
"System.Drawing.Common/4.5.0": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0",
|
||||
"Microsoft.Win32.SystemEvents": "4.5.0"
|
||||
},
|
||||
"compile": {
|
||||
"ref/netstandard2.0/System.Drawing.Common.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "unix"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "3.1.1"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": {
|
||||
"assetType": "runtime",
|
||||
"rid": "win"
|
||||
}
|
||||
}
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"SharpZipLib": "1.2.0",
|
||||
"System.Text.Encoding.CodePages": "4.7.1"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/DataClients.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/DataClients.dll": {}
|
||||
}
|
||||
},
|
||||
"MigraDoc.DocumentObjectModel/3.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/MigraDoc.DocumentObjectModel.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/MigraDoc.DocumentObjectModel.dll": {}
|
||||
}
|
||||
},
|
||||
"MigraDoc.Rendering/3.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"MigraDoc.DocumentObjectModel": "3.0.0",
|
||||
"PdfSharp": "3.0.0",
|
||||
"PdfSharp.Charting": "3.0.0",
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/MigraDoc.Rendering.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/MigraDoc.Rendering.dll": {}
|
||||
}
|
||||
},
|
||||
"PdfSharp/3.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/PdfSharp.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/PdfSharp.dll": {}
|
||||
}
|
||||
},
|
||||
"PdfSharp.Charting/3.0.0": {
|
||||
"type": "project",
|
||||
"framework": ".NETStandard,Version=v2.0",
|
||||
"dependencies": {
|
||||
"PdfSharp": "3.0.0",
|
||||
"System.Drawing.Common": "4.5.0"
|
||||
},
|
||||
"compile": {
|
||||
"bin/placeholder/PdfSharp.Charting.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"bin/placeholder/PdfSharp.Charting.dll": {}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"Microsoft.NETCore.Platforms/3.1.1": {
|
||||
"sha512": "RmINcaqiEkawM9C8oxFMN/CZmn1fGKWVsosbSY/8ARUNdHqV47hqhPVbrG3qUqLaRQI5w4HuqFOqrbhoSWcH6w==",
|
||||
"type": "package",
|
||||
"path": "microsoft.netcore.platforms/3.1.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/netstandard1.0/_._",
|
||||
"microsoft.netcore.platforms.3.1.1.nupkg.sha512",
|
||||
"microsoft.netcore.platforms.nuspec",
|
||||
"runtime.json",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"Microsoft.Win32.SystemEvents/4.5.0": {
|
||||
"sha512": "LuI1oG+24TUj1ZRQQjM5Ew73BKnZE5NZ/7eAdh1o8ST5dPhUnJvIkiIn2re3MwnkRy6ELRnvEbBxHP8uALKhJw==",
|
||||
"type": "package",
|
||||
"path": "microsoft.win32.systemevents/4.5.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/net461/Microsoft.Win32.SystemEvents.dll",
|
||||
"lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"microsoft.win32.systemevents.4.5.0.nupkg.sha512",
|
||||
"microsoft.win32.systemevents.nuspec",
|
||||
"ref/net461/Microsoft.Win32.SystemEvents.dll",
|
||||
"ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"SharpZipLib/1.2.0": {
|
||||
"sha512": "zvWa/L02JHNatdtjya6Swpudb2YEHaOLHL1eRrqpjm71iGRNUNONO5adUF/9CHbSJbzhELW1UoH4NGy7n7+3bQ==",
|
||||
"type": "package",
|
||||
"path": "sharpziplib/1.2.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.dll",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.pdb",
|
||||
"lib/net45/ICSharpCode.SharpZipLib.xml",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
|
||||
"lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
|
||||
"sharpziplib.1.2.0.nupkg.sha512",
|
||||
"sharpziplib.nuspec"
|
||||
]
|
||||
},
|
||||
"System.Drawing.Common/4.5.0": {
|
||||
"sha512": "AiJFxxVPdeITstiRS5aAu8+8Dpf5NawTMoapZ53Gfirml24p7HIfhjmCRxdXnmmf3IUA3AX3CcW7G73CjWxW/Q==",
|
||||
"type": "package",
|
||||
"path": "system.drawing.common/4.5.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net461/System.Drawing.Common.dll",
|
||||
"lib/netstandard2.0/System.Drawing.Common.dll",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/net461/System.Drawing.Common.dll",
|
||||
"ref/netstandard2.0/System.Drawing.Common.dll",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll",
|
||||
"system.drawing.common.4.5.0.nupkg.sha512",
|
||||
"system.drawing.common.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"System.Text.Encoding.CodePages/4.7.1": {
|
||||
"sha512": "i2fOvznVVgOOTLUz8FgSap/MsR98I4Iaoz99VXcOW/e7Y2OdY42zhYpBYpZyivk5alYY/UsOWAVswhtjxceodA==",
|
||||
"type": "package",
|
||||
"path": "system.text.encoding.codepages/4.7.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"Icon.png",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net46/System.Text.Encoding.CodePages.dll",
|
||||
"lib/net461/System.Text.Encoding.CodePages.dll",
|
||||
"lib/net461/System.Text.Encoding.CodePages.xml",
|
||||
"lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||
"lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.xml",
|
||||
"runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
|
||||
"runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
|
||||
"system.text.encoding.codepages.4.7.1.nupkg.sha512",
|
||||
"system.text.encoding.codepages.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"DataClients/1.0.0": {
|
||||
"type": "project",
|
||||
"path": "../DataClients/DataClients.csproj",
|
||||
"msbuildProject": "../DataClients/DataClients.csproj"
|
||||
},
|
||||
"MigraDoc.DocumentObjectModel/3.0.0": {
|
||||
"type": "project",
|
||||
"path": "../MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj",
|
||||
"msbuildProject": "../MigraDoc.DocumentObjectModel/MigraDoc.DocumentObjectModel.csproj"
|
||||
},
|
||||
"MigraDoc.Rendering/3.0.0": {
|
||||
"type": "project",
|
||||
"path": "../MigraDoc.Rendering/MigraDoc.Rendering.csproj",
|
||||
"msbuildProject": "../MigraDoc.Rendering/MigraDoc.Rendering.csproj"
|
||||
},
|
||||
"PdfSharp/3.0.0": {
|
||||
"type": "project",
|
||||
"path": "../PdfSharp/PdfSharp.csproj",
|
||||
"msbuildProject": "../PdfSharp/PdfSharp.csproj"
|
||||
},
|
||||
"PdfSharp.Charting/3.0.0": {
|
||||
"type": "project",
|
||||
"path": "../PdfSharp.Charting/PdfSharp.Charting.csproj",
|
||||
"msbuildProject": "../PdfSharp.Charting/PdfSharp.Charting.csproj"
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
".NETCoreApp,Version=v3.1": [
|
||||
"DataClients >= 1.0.0",
|
||||
"MigraDoc.DocumentObjectModel >= 3.0.0",
|
||||
"MigraDoc.Rendering >= 3.0.0",
|
||||
"PdfSharp >= 3.0.0",
|
||||
"SharpZipLib >= 1.2.0"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
"C:\\Users\\google\\.nuget\\packages\\": {},
|
||||
"C:\\Microsoft\\Xamarin\\NuGet\\": {},
|
||||
"C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {}
|
||||
},
|
||||
"project": {
|
||||
"version": "1.0.0",
|
||||
"restore": {
|
||||
"projectUniqueName": "F:\\Projects1\\Mailing\\Mailing.csproj",
|
||||
"projectName": "Mailing",
|
||||
"projectPath": "F:\\Projects1\\Mailing\\Mailing.csproj",
|
||||
"packagesPath": "C:\\Users\\google\\.nuget\\packages\\",
|
||||
"outputPath": "F:\\Projects1\\Mailing\\obj\\",
|
||||
"projectStyle": "PackageReference",
|
||||
"fallbackFolders": [
|
||||
"C:\\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.Offline.config",
|
||||
"C:\\Program Files (x86)\\NuGet\\Config\\Xamarin.Offline.config"
|
||||
],
|
||||
"originalTargetFrameworks": [
|
||||
"netcoreapp3.1"
|
||||
],
|
||||
"sources": {
|
||||
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
|
||||
"https://api.nuget.org/v3/index.json": {}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"projectReferences": {
|
||||
"F:\\Projects1\\DataClients\\DataClients.csproj": {
|
||||
"projectPath": "F:\\Projects1\\DataClients\\DataClients.csproj"
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj": {
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.DocumentObjectModel\\MigraDoc.DocumentObjectModel.csproj"
|
||||
},
|
||||
"F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj": {
|
||||
"projectPath": "F:\\Projects1\\MigraDoc.Rendering\\MigraDoc.Rendering.csproj"
|
||||
},
|
||||
"F:\\Projects1\\PdfSharp\\PdfSharp.csproj": {
|
||||
"projectPath": "F:\\Projects1\\PdfSharp\\PdfSharp.csproj"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"warningProperties": {
|
||||
"warnAsError": [
|
||||
"NU1605"
|
||||
]
|
||||
}
|
||||
},
|
||||
"frameworks": {
|
||||
"netcoreapp3.1": {
|
||||
"dependencies": {
|
||||
"SharpZipLib": {
|
||||
"target": "Package",
|
||||
"version": "[1.2.0, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
"net461",
|
||||
"net462",
|
||||
"net47",
|
||||
"net471",
|
||||
"net472",
|
||||
"net48"
|
||||
],
|
||||
"assetTargetFallback": true,
|
||||
"warn": true,
|
||||
"frameworkReferences": {
|
||||
"Microsoft.NETCore.App": {
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\3.1.301\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
14
Mailing/obj/project.nuget.cache
Normal file
14
Mailing/obj/project.nuget.cache
Normal file
@@ -0,0 +1,14 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "mYZ0+lgFNvjdtstd498fzqCueb79WJUPV7cKbZiNr7U5DOvhqaxanZo4lE1YNRKjI9hSd7/W0qrifHxA/A4ftg==",
|
||||
"success": true,
|
||||
"projectFilePath": "F:\\Projects1\\Mailing\\Mailing.csproj",
|
||||
"expectedPackageFiles": [
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.1\\microsoft.netcore.platforms.3.1.1.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\microsoft.win32.systemevents\\4.5.0\\microsoft.win32.systemevents.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\sharpziplib\\1.2.0\\sharpziplib.1.2.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\system.drawing.common\\4.5.0\\system.drawing.common.4.5.0.nupkg.sha512",
|
||||
"C:\\Users\\google\\.nuget\\packages\\system.text.encoding.codepages\\4.7.1\\system.text.encoding.codepages.4.7.1.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
}
|
BIN
Mailing/times.ttf
Normal file
BIN
Mailing/times.ttf
Normal file
Binary file not shown.
BIN
Mailing/timesbd.ttf
Normal file
BIN
Mailing/timesbd.ttf
Normal file
Binary file not shown.
BIN
Mailing/timesbi.ttf
Normal file
BIN
Mailing/timesbi.ttf
Normal file
Binary file not shown.
BIN
Mailing/timesi.ttf
Normal file
BIN
Mailing/timesi.ttf
Normal file
Binary file not shown.
Reference in New Issue
Block a user