create order + barcode
This commit is contained in:
parent
48d3d61340
commit
55a685a735
@ -5,5 +5,19 @@
|
||||
mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
|
||||
x:Class="demo5.FormOrderWindow"
|
||||
Title="FormOrderWindow">
|
||||
Welcome to Avalonia!
|
||||
<StackPanel Spacing="5" VerticalAlignment="Center" HorizontalAlignment="Center">
|
||||
<TextBlock Text="ID заказа:"/>
|
||||
<TextBox x:Name="OrderIdTextBox" IsReadOnly="True"/>
|
||||
|
||||
<TextBlock Text="Время проката в минутах:"/>
|
||||
<TextBox x:Name="PeriodTextBox"/>
|
||||
|
||||
<TextBlock Text="Выберите клиента:"/>
|
||||
<ComboBox x:Name="OrderClientComboBox"/>
|
||||
|
||||
<TextBlock Text="Выберите услуги:"/>
|
||||
<ListBox x:Name="OrderServicesListBox" SelectionMode="Multiple"/>
|
||||
|
||||
<Button Content="Сформировать заказ" Click="CreateOrderButton_OnClick"/>
|
||||
</StackPanel>
|
||||
</Window>
|
||||
|
@ -1,13 +1,157 @@
|
||||
using Avalonia;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Markup.Xaml;
|
||||
using Avalonia.Interactivity;
|
||||
using ZXing;
|
||||
using ZXing.Common;
|
||||
using PdfSharpCore.Drawing;
|
||||
using PdfSharpCore.Pdf;
|
||||
using SixLabors.ImageSharp;
|
||||
using SixLabors.ImageSharp.PixelFormats;
|
||||
using SixLabors.ImageSharp.Processing;
|
||||
using demo5.Models;
|
||||
|
||||
namespace demo5;
|
||||
|
||||
public partial class FormOrderWindow : Window
|
||||
{
|
||||
public List<string> OrderServicesList { get; }
|
||||
public List<string> OrderClientsList { get; }
|
||||
|
||||
public FormOrderWindow()
|
||||
{
|
||||
InitializeComponent();
|
||||
LoadOrderId();
|
||||
using var context = new Demo5Context();
|
||||
|
||||
OrderClientsList = context.Clients.Select(it => it.Fio).ToList();
|
||||
OrderClientComboBox.ItemsSource = OrderClientsList;
|
||||
|
||||
OrderServicesList = context.Services.Select(it => it.Name).ToList();
|
||||
OrderServicesListBox.ItemsSource = OrderServicesList;
|
||||
}
|
||||
|
||||
private void LoadOrderId()
|
||||
{
|
||||
using var context = new Demo5Context();
|
||||
var maxId = context.Orders.Any() ? context.Orders.Max(order => order.Id) : 0;
|
||||
var newOrderId = maxId + 1;
|
||||
OrderIdTextBox.Text = newOrderId.ToString();
|
||||
}
|
||||
|
||||
private void CreateOrderButton_OnClick(object? sender, RoutedEventArgs e)
|
||||
{
|
||||
using var context = new Demo5Context();
|
||||
|
||||
var maxId = context.Orders.Any() ? context.Orders.Max(order => order.Id) : 0;
|
||||
var newOrderId = maxId + 1;
|
||||
var newCodeOrder = $"{newOrderId}/{DateTime.Now:dd.MM.yyyy}";
|
||||
var newPeriod = int.TryParse(PeriodTextBox.Text, out int period) ? period : 0;
|
||||
|
||||
var selectedClientFio = OrderClientComboBox.SelectedItem as string;
|
||||
if (string.IsNullOrEmpty(selectedClientFio))
|
||||
{
|
||||
Console.WriteLine("Выберите клиента!");
|
||||
return;
|
||||
}
|
||||
|
||||
var client = context.Clients.FirstOrDefault(it => it.Fio == selectedClientFio);
|
||||
if (client == null)
|
||||
{
|
||||
Console.WriteLine("Ошибка: клиент не найден!");
|
||||
return;
|
||||
}
|
||||
|
||||
var selectedServices = OrderServicesListBox.SelectedItems.Cast<string>().ToList();
|
||||
if (selectedServices.Count == 0)
|
||||
{
|
||||
Console.WriteLine("Выберите хотя бы одну услугу!");
|
||||
return;
|
||||
}
|
||||
|
||||
var services = context.Services.Where(s => selectedServices.Contains(s.Name)).ToList();
|
||||
|
||||
var newOrder = new Order
|
||||
{
|
||||
Id = newOrderId,
|
||||
CodeOrder = newCodeOrder,
|
||||
Date = DateTime.Now,
|
||||
Time = TimeOnly.FromDateTime(DateTime.Now),
|
||||
CodeClient = client.Id,
|
||||
Status = "Открыт",
|
||||
Period = newPeriod
|
||||
};
|
||||
|
||||
context.Orders.Add(newOrder);
|
||||
context.SaveChanges();
|
||||
|
||||
foreach (var service in services)
|
||||
{
|
||||
var orderService = new OrdersService
|
||||
{
|
||||
OrderId = newOrder.Id,
|
||||
ServiceId = service.Id
|
||||
};
|
||||
context.OrdersServices.Add(orderService);
|
||||
}
|
||||
|
||||
context.SaveChanges();
|
||||
LoadOrderId();
|
||||
|
||||
Console.WriteLine("Заказ создан");
|
||||
|
||||
GenerateBarcodeAndSavePdf(newOrderId, DateTime.Now, newPeriod);
|
||||
}
|
||||
|
||||
public void GenerateBarcodeAndSavePdf(int orderId, DateTime orderDate, int rentalPeriod)
|
||||
{
|
||||
var random = new Random();
|
||||
string uniqueCode = string.Concat(Enumerable.Range(0, 6).Select(_ => random.Next(0, 10)));
|
||||
|
||||
string barcodeData = $"{orderId}{orderDate:ddMMyy}{rentalPeriod}{uniqueCode}";
|
||||
|
||||
var writer = new BarcodeWriterPixelData
|
||||
{
|
||||
Format = BarcodeFormat.CODE_128,
|
||||
Options = new EncodingOptions
|
||||
{
|
||||
Height = 229,
|
||||
Width = 350,
|
||||
Margin = 0
|
||||
}
|
||||
};
|
||||
var pixelData = writer.Write(barcodeData);
|
||||
|
||||
using var image = new Image<Rgba32>(pixelData.Width, pixelData.Height);
|
||||
image.Mutate(ctx =>
|
||||
{
|
||||
for (int y = 0; y < pixelData.Height; y++)
|
||||
{
|
||||
for (int x = 0; x < pixelData.Width; x++)
|
||||
{
|
||||
byte value = pixelData.Pixels[(y * pixelData.Width + x) * 4];
|
||||
image[x, y] = new Rgba32(value, value, value, 255);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
using var ms = new MemoryStream();
|
||||
image.SaveAsPng(ms);
|
||||
ms.Position = 0;
|
||||
|
||||
using var document = new PdfDocument();
|
||||
var page = document.AddPage();
|
||||
var gfx = XGraphics.FromPdfPage(page);
|
||||
|
||||
using var img = XImage.FromStream(() => new MemoryStream(ms.ToArray()));
|
||||
gfx.DrawImage(img, 10, 10, 150, 50);
|
||||
|
||||
gfx.DrawString(barcodeData, new XFont("Arial", 10), XBrushes.Black, new XPoint(10, 70));
|
||||
|
||||
string filePath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.Desktop), $"Order_{orderId}.pdf");
|
||||
document.Save(filePath);
|
||||
Console.WriteLine($"PDF сохранен: {filePath}");
|
||||
}
|
||||
}
|
@ -101,18 +101,19 @@ public partial class Demo5Context : DbContext
|
||||
|
||||
modelBuilder.Entity<OrdersService>(entity =>
|
||||
{
|
||||
entity
|
||||
.HasNoKey()
|
||||
.ToTable("orders_services");
|
||||
entity.HasKey(e => e.Id).HasName("orders_services_pkey");
|
||||
|
||||
entity.ToTable("orders_services");
|
||||
|
||||
entity.Property(e => e.Id).HasColumnName("id");
|
||||
entity.Property(e => e.OrderId).HasColumnName("order_id");
|
||||
entity.Property(e => e.ServiceId).HasColumnName("service_id");
|
||||
|
||||
entity.HasOne(d => d.Order).WithMany()
|
||||
entity.HasOne(d => d.Order).WithMany(p => p.OrdersServices)
|
||||
.HasForeignKey(d => d.OrderId)
|
||||
.HasConstraintName("orders_services_order_id_fkey");
|
||||
|
||||
entity.HasOne(d => d.Service).WithMany()
|
||||
entity.HasOne(d => d.Service).WithMany(p => p.OrdersServices)
|
||||
.HasForeignKey(d => d.ServiceId)
|
||||
.HasConstraintName("orders_services_service_id_fkey");
|
||||
});
|
||||
|
@ -22,4 +22,6 @@ public partial class Order
|
||||
public int Period { get; set; }
|
||||
|
||||
public virtual Client CodeClientNavigation { get; set; } = null!;
|
||||
|
||||
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
||||
}
|
||||
|
@ -9,6 +9,8 @@ public partial class OrdersService
|
||||
|
||||
public int ServiceId { get; set; }
|
||||
|
||||
public int Id { get; set; }
|
||||
|
||||
public virtual Order Order { get; set; } = null!;
|
||||
|
||||
public virtual Service Service { get; set; } = null!;
|
||||
|
@ -12,4 +12,6 @@ public partial class Service
|
||||
public string CodeService { get; set; } = null!;
|
||||
|
||||
public int Price { get; set; }
|
||||
|
||||
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
||||
}
|
||||
|
BIN
demo5/bin/Debug/net8.0/PdfSharpCore.dll
Executable file
BIN
demo5/bin/Debug/net8.0/PdfSharpCore.dll
Executable file
Binary file not shown.
BIN
demo5/bin/Debug/net8.0/SixLabors.Fonts.dll
Executable file
BIN
demo5/bin/Debug/net8.0/SixLabors.Fonts.dll
Executable file
Binary file not shown.
BIN
demo5/bin/Debug/net8.0/SixLabors.ImageSharp.dll
Executable file
BIN
demo5/bin/Debug/net8.0/SixLabors.ImageSharp.dll
Executable file
Binary file not shown.
BIN
demo5/bin/Debug/net8.0/de/PdfSharpCore.resources.dll
Executable file
BIN
demo5/bin/Debug/net8.0/de/PdfSharpCore.resources.dll
Executable file
Binary file not shown.
@ -15,7 +15,10 @@
|
||||
"Avalonia.Themes.Fluent": "11.2.1",
|
||||
"Microsoft.EntityFrameworkCore": "8.0.10",
|
||||
"Microsoft.EntityFrameworkCore.Design": "8.0.10",
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10"
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10",
|
||||
"PdfSharpCore": "1.3.1",
|
||||
"SixLabors.ImageSharp": "2.1.3",
|
||||
"ZXing.Net": "0.16.10"
|
||||
},
|
||||
"runtime": {
|
||||
"demo5.dll": {}
|
||||
@ -767,6 +770,47 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PdfSharpCore/1.3.1": {
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "1.0.0-beta0013",
|
||||
"SixLabors.ImageSharp": "2.1.3"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/PdfSharpCore.dll": {
|
||||
"assemblyVersion": "1.3.1.0",
|
||||
"fileVersion": "1.3.1.0"
|
||||
}
|
||||
},
|
||||
"resources": {
|
||||
"lib/net5.0/de/PdfSharpCore.resources.dll": {
|
||||
"locale": "de"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SixLabors.Fonts/1.0.0-beta0013": {
|
||||
"dependencies": {
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/SixLabors.Fonts.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SixLabors.ImageSharp/2.1.3": {
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
|
||||
"System.Text.Encoding.CodePages": "6.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
||||
"assemblyVersion": "2.0.0.0",
|
||||
"fileVersion": "2.1.3.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"dependencies": {
|
||||
"SkiaSharp.NativeAssets.Win32": "2.88.8",
|
||||
@ -916,6 +960,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {},
|
||||
"System.Reflection.Metadata/6.0.1": {
|
||||
"dependencies": {
|
||||
"System.Collections.Immutable": "6.0.0"
|
||||
@ -938,6 +983,14 @@
|
||||
"fileVersion": "0.20.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ZXing.Net/0.16.10": {
|
||||
"runtime": {
|
||||
"lib/net8.0/zxing.dll": {
|
||||
"assemblyVersion": "0.16.10.0",
|
||||
"fileVersion": "0.16.10.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -1276,6 +1329,27 @@
|
||||
"path": "npgsql.entityframeworkcore.postgresql/8.0.10",
|
||||
"hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512"
|
||||
},
|
||||
"PdfSharpCore/1.3.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QZP3MAx/OOCiSe4xpEmYgeqybjgRzsuoXlg6Lvg3NHy0HwNo7YKKEWweiwd92+1QOu9/DlB6HvTd5yPMQgwNpA==",
|
||||
"path": "pdfsharpcore/1.3.1",
|
||||
"hashPath": "pdfsharpcore.1.3.1.nupkg.sha512"
|
||||
},
|
||||
"SixLabors.Fonts/1.0.0-beta0013": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-NaD8R8GdHqnPP/3GUI6IbJNt3EHjU05CIJw/1gz11NoUBaePhtgDogG1XFguR2nSoXofGJ35W+TgW1ZTVp5W1Q==",
|
||||
"path": "sixlabors.fonts/1.0.0-beta0013",
|
||||
"hashPath": "sixlabors.fonts.1.0.0-beta0013.nupkg.sha512"
|
||||
},
|
||||
"SixLabors.ImageSharp/2.1.3": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==",
|
||||
"path": "sixlabors.imagesharp/2.1.3",
|
||||
"hashPath": "sixlabors.imagesharp.2.1.3.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@ -1374,6 +1448,13 @@
|
||||
"path": "system.io.pipelines/8.0.0",
|
||||
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Reflection.Metadata/6.0.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
@ -1408,6 +1489,13 @@
|
||||
"sha512": "sha512-2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==",
|
||||
"path": "tmds.dbus.protocol/0.20.0",
|
||||
"hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
},
|
||||
"ZXing.Net/0.16.10": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==",
|
||||
"path": "zxing.net/0.16.10",
|
||||
"hashPath": "zxing.net.0.16.10.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
BIN
demo5/bin/Debug/net8.0/zxing.dll
Executable file
BIN
demo5/bin/Debug/net8.0/zxing.dll
Executable file
Binary file not shown.
@ -9,10 +9,10 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Avalonia" Version="11.2.1"/>
|
||||
<PackageReference Include="Avalonia.Desktop" Version="11.2.1"/>
|
||||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1"/>
|
||||
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1"/>
|
||||
<PackageReference Include="Avalonia" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Desktop" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.1" />
|
||||
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.2.1" />
|
||||
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
||||
<PackageReference Include="Avalonia.Diagnostics" Version="11.2.1">
|
||||
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
|
||||
@ -24,5 +24,8 @@
|
||||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||
</PackageReference>
|
||||
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
||||
<PackageReference Include="PdfSharpCore" Version="1.3.1" />
|
||||
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.3" />
|
||||
<PackageReference Include="ZXing.Net" Version="0.16.10" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
|
@ -1 +1 @@
|
||||
d13374ee09495133f83e3063e39392fb7a826b075cf6c61a3b477d7c86689d9a
|
||||
93564d7a355513ce17cceef7285f1bf6959e7179c7ddbf1cdc1dfedf53dd240c
|
||||
|
Binary file not shown.
Binary file not shown.
@ -45,6 +45,9 @@
|
||||
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/netstandard.dll
|
||||
/Users/feitanportor/.nuget/packages/npgsql/8.0.5/lib/net8.0/Npgsql.dll
|
||||
/Users/feitanportor/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll
|
||||
/Users/feitanportor/.nuget/packages/pdfsharpcore/1.3.1/lib/net5.0/PdfSharpCore.dll
|
||||
/Users/feitanportor/.nuget/packages/sixlabors.fonts/1.0.0-beta0013/lib/netstandard2.1/SixLabors.Fonts.dll
|
||||
/Users/feitanportor/.nuget/packages/sixlabors.imagesharp/2.1.3/lib/netcoreapp3.1/SixLabors.ImageSharp.dll
|
||||
/Users/feitanportor/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
||||
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.AppContext.dll
|
||||
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.Buffers.dll
|
||||
@ -204,3 +207,4 @@
|
||||
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/System.Xml.XPath.XDocument.dll
|
||||
/Users/feitanportor/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
|
||||
/usr/local/share/dotnet/packs/Microsoft.NETCore.App.Ref/8.0.8/ref/net8.0/WindowsBase.dll
|
||||
/Users/feitanportor/.nuget/packages/zxing.net/0.16.10/lib/net8.0/zxing.dll
|
||||
|
Binary file not shown.
@ -13,7 +13,7 @@ using System.Reflection;
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("demo5")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+fafd4f40ebbda80ce5deea16d2f2b9b4de4647ab")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+48d3d6134087a826b42053bbd898787bf97406e3")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("demo5")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("demo5")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
@ -1 +1 @@
|
||||
927d8002c66c1b9968645ad5047d41eea4470c5049e02071cf2ffc8f07e94c20
|
||||
624c9ee094ad8117fe475f6857cdac298825ad77cd8458b95d7a220842734076
|
||||
|
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
50f63526e6b823c15b5234c1d359abd7c4c2cd06793a3ed14005c4093c354f81
|
||||
7b1684c65de78606aa7ea64895ae3a2ad483be67b2e9ce6ed03a5de7e6dfa344
|
||||
|
@ -146,3 +146,8 @@
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/obj/Debug/net8.0/demo5.csproj.Up2Date
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/obj/Debug/net8.0/demo5.genruntimeconfig.cache
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/obj/Debug/net8.0/ref/demo5.dll
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/bin/Debug/net8.0/PdfSharpCore.dll
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/bin/Debug/net8.0/SixLabors.Fonts.dll
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/bin/Debug/net8.0/SixLabors.ImageSharp.dll
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/bin/Debug/net8.0/zxing.dll
|
||||
/Users/feitanportor/dev/C#/demo5/demo5/bin/Debug/net8.0/de/PdfSharpCore.resources.dll
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -76,6 +76,18 @@
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.10, )"
|
||||
},
|
||||
"PdfSharpCore": {
|
||||
"target": "Package",
|
||||
"version": "[1.3.1, )"
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"target": "Package",
|
||||
"version": "[2.1.3, )"
|
||||
},
|
||||
"ZXing.Net": {
|
||||
"target": "Package",
|
||||
"version": "[0.16.10, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
|
@ -1035,6 +1035,58 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"PdfSharpCore/1.3.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"SixLabors.Fonts": "1.0.0-beta0013",
|
||||
"SixLabors.ImageSharp": "1.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net5.0/PdfSharpCore.dll": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net5.0/PdfSharpCore.dll": {}
|
||||
},
|
||||
"resource": {
|
||||
"lib/net5.0/de/PdfSharpCore.resources.dll": {
|
||||
"locale": "de"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SixLabors.Fonts/1.0.0-beta0013": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Numerics.Vectors": "4.5.0",
|
||||
"System.Runtime.CompilerServices.Unsafe": "4.7.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netstandard2.1/SixLabors.Fonts.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.1/SixLabors.Fonts.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SixLabors.ImageSharp/2.1.3": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
"System.Runtime.CompilerServices.Unsafe": "5.0.0",
|
||||
"System.Text.Encoding.CodePages": "5.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@ -1283,6 +1335,15 @@
|
||||
"buildTransitive/net6.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"ref/netcoreapp2.0/_._": {}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netcoreapp2.0/_._": {}
|
||||
}
|
||||
},
|
||||
"System.Reflection.Metadata/6.0.1": {
|
||||
"type": "package",
|
||||
"dependencies": {
|
||||
@ -1305,7 +1366,7 @@
|
||||
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net6.0/_._": {
|
||||
"lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
@ -1324,7 +1385,7 @@
|
||||
"System.Runtime.CompilerServices.Unsafe": "6.0.0"
|
||||
},
|
||||
"compile": {
|
||||
"lib/net6.0/_._": {
|
||||
"lib/net6.0/System.Text.Encoding.CodePages.dll": {
|
||||
"related": ".xml"
|
||||
}
|
||||
},
|
||||
@ -1370,6 +1431,19 @@
|
||||
"runtime": {
|
||||
"lib/net8.0/Tmds.DBus.Protocol.dll": {}
|
||||
}
|
||||
},
|
||||
"ZXing.Net/0.16.10": {
|
||||
"type": "package",
|
||||
"compile": {
|
||||
"lib/net8.0/zxing.dll": {
|
||||
"related": ".XML"
|
||||
}
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/zxing.dll": {
|
||||
"related": ".XML"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -2962,6 +3036,66 @@
|
||||
"postgresql.png"
|
||||
]
|
||||
},
|
||||
"PdfSharpCore/1.3.1": {
|
||||
"sha512": "QZP3MAx/OOCiSe4xpEmYgeqybjgRzsuoXlg6Lvg3NHy0HwNo7YKKEWweiwd92+1QOu9/DlB6HvTd5yPMQgwNpA==",
|
||||
"type": "package",
|
||||
"path": "pdfsharpcore/1.3.1",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENCE.md",
|
||||
"lib/net5.0/PdfSharpCore.dll",
|
||||
"lib/net5.0/de/PdfSharpCore.resources.dll",
|
||||
"lib/netcoreapp3.1/PdfSharpCore.dll",
|
||||
"lib/netcoreapp3.1/de/PdfSharpCore.resources.dll",
|
||||
"lib/netstandard1.3/PdfSharpCore.dll",
|
||||
"lib/netstandard1.3/de/PdfSharpCore.resources.dll",
|
||||
"lib/netstandard2.0/PdfSharpCore.dll",
|
||||
"lib/netstandard2.0/de/PdfSharpCore.resources.dll",
|
||||
"pdfsharpcore.1.3.1.nupkg.sha512",
|
||||
"pdfsharpcore.nuspec"
|
||||
]
|
||||
},
|
||||
"SixLabors.Fonts/1.0.0-beta0013": {
|
||||
"sha512": "NaD8R8GdHqnPP/3GUI6IbJNt3EHjU05CIJw/1gz11NoUBaePhtgDogG1XFguR2nSoXofGJ35W+TgW1ZTVp5W1Q==",
|
||||
"type": "package",
|
||||
"path": "sixlabors.fonts/1.0.0-beta0013",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/netstandard1.3/SixLabors.Fonts.dll",
|
||||
"lib/netstandard1.3/SixLabors.Fonts.xml",
|
||||
"lib/netstandard2.0/SixLabors.Fonts.dll",
|
||||
"lib/netstandard2.0/SixLabors.Fonts.xml",
|
||||
"lib/netstandard2.1/SixLabors.Fonts.dll",
|
||||
"lib/netstandard2.1/SixLabors.Fonts.xml",
|
||||
"sixlabors.fonts.1.0.0-beta0013.nupkg.sha512",
|
||||
"sixlabors.fonts.128.png",
|
||||
"sixlabors.fonts.nuspec"
|
||||
]
|
||||
},
|
||||
"SixLabors.ImageSharp/2.1.3": {
|
||||
"sha512": "8yonNRWX3vUE9k29ta0Hbfa0AEc0hbDjSH/nZ3vOTJEXmY6hLnGsjDKoz96Z+AgOsrdkAu6PdL/Ebaf70aitzw==",
|
||||
"type": "package",
|
||||
"path": "sixlabors.imagesharp/2.1.3",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/net472/SixLabors.ImageSharp.dll",
|
||||
"lib/net472/SixLabors.ImageSharp.xml",
|
||||
"lib/netcoreapp2.1/SixLabors.ImageSharp.dll",
|
||||
"lib/netcoreapp2.1/SixLabors.ImageSharp.xml",
|
||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.dll",
|
||||
"lib/netcoreapp3.1/SixLabors.ImageSharp.xml",
|
||||
"lib/netstandard2.0/SixLabors.ImageSharp.dll",
|
||||
"lib/netstandard2.0/SixLabors.ImageSharp.xml",
|
||||
"lib/netstandard2.1/SixLabors.ImageSharp.dll",
|
||||
"lib/netstandard2.1/SixLabors.ImageSharp.xml",
|
||||
"sixlabors.imagesharp.128.png",
|
||||
"sixlabors.imagesharp.2.1.3.nupkg.sha512",
|
||||
"sixlabors.imagesharp.nuspec"
|
||||
]
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"sha512": "bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
|
||||
"type": "package",
|
||||
@ -3341,6 +3475,53 @@
|
||||
"useSharedDesignerContext.txt"
|
||||
]
|
||||
},
|
||||
"System.Numerics.Vectors/4.5.0": {
|
||||
"sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==",
|
||||
"type": "package",
|
||||
"path": "system.numerics.vectors/4.5.0",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"LICENSE.TXT",
|
||||
"THIRD-PARTY-NOTICES.TXT",
|
||||
"lib/MonoAndroid10/_._",
|
||||
"lib/MonoTouch10/_._",
|
||||
"lib/net46/System.Numerics.Vectors.dll",
|
||||
"lib/net46/System.Numerics.Vectors.xml",
|
||||
"lib/netcoreapp2.0/_._",
|
||||
"lib/netstandard1.0/System.Numerics.Vectors.dll",
|
||||
"lib/netstandard1.0/System.Numerics.Vectors.xml",
|
||||
"lib/netstandard2.0/System.Numerics.Vectors.dll",
|
||||
"lib/netstandard2.0/System.Numerics.Vectors.xml",
|
||||
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll",
|
||||
"lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml",
|
||||
"lib/uap10.0.16299/_._",
|
||||
"lib/xamarinios10/_._",
|
||||
"lib/xamarinmac20/_._",
|
||||
"lib/xamarintvos10/_._",
|
||||
"lib/xamarinwatchos10/_._",
|
||||
"ref/MonoAndroid10/_._",
|
||||
"ref/MonoTouch10/_._",
|
||||
"ref/net45/System.Numerics.Vectors.dll",
|
||||
"ref/net45/System.Numerics.Vectors.xml",
|
||||
"ref/net46/System.Numerics.Vectors.dll",
|
||||
"ref/net46/System.Numerics.Vectors.xml",
|
||||
"ref/netcoreapp2.0/_._",
|
||||
"ref/netstandard1.0/System.Numerics.Vectors.dll",
|
||||
"ref/netstandard1.0/System.Numerics.Vectors.xml",
|
||||
"ref/netstandard2.0/System.Numerics.Vectors.dll",
|
||||
"ref/netstandard2.0/System.Numerics.Vectors.xml",
|
||||
"ref/uap10.0.16299/_._",
|
||||
"ref/xamarinios10/_._",
|
||||
"ref/xamarinmac20/_._",
|
||||
"ref/xamarintvos10/_._",
|
||||
"ref/xamarinwatchos10/_._",
|
||||
"system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||
"system.numerics.vectors.nuspec",
|
||||
"useSharedDesignerContext.txt",
|
||||
"version.txt"
|
||||
]
|
||||
},
|
||||
"System.Reflection.Metadata/6.0.1": {
|
||||
"sha512": "III/lNMSn0ZRBuM9m5Cgbiho5j81u0FAEagFX5ta2DKbljZ3T0IpD8j+BIiHQPeKqJppWS9bGEp6JnKnWKze0g==",
|
||||
"type": "package",
|
||||
@ -3469,6 +3650,93 @@
|
||||
"tmds.dbus.protocol.0.20.0.nupkg.sha512",
|
||||
"tmds.dbus.protocol.nuspec"
|
||||
]
|
||||
},
|
||||
"ZXing.Net/0.16.10": {
|
||||
"sha512": "9avtcn21T7Ndcl8PQ1LHR7/wEoCruX1QKKHvO6zBPTsDW9IdvR5vKOmd618AY+DtDWZz8NaFDTkpbZdgaF4l4w==",
|
||||
"type": "package",
|
||||
"path": "zxing.net/0.16.10",
|
||||
"files": [
|
||||
".nupkg.metadata",
|
||||
".signature.p7s",
|
||||
"lib/native/zxing.XML",
|
||||
"lib/native/zxing.pri",
|
||||
"lib/native/zxing.winmd",
|
||||
"lib/net20-cf/zxing.ce2.0.dll",
|
||||
"lib/net20-cf/zxing.ce2.0.xml",
|
||||
"lib/net20/zxing.XML",
|
||||
"lib/net20/zxing.dll",
|
||||
"lib/net35-cf/zxing.ce3.5.dll",
|
||||
"lib/net35-cf/zxing.ce3.5.xml",
|
||||
"lib/net35/zxing.XML",
|
||||
"lib/net35/zxing.dll",
|
||||
"lib/net40/zxing.XML",
|
||||
"lib/net40/zxing.dll",
|
||||
"lib/net40/zxing.presentation.XML",
|
||||
"lib/net40/zxing.presentation.dll",
|
||||
"lib/net45/zxing.XML",
|
||||
"lib/net45/zxing.dll",
|
||||
"lib/net45/zxing.presentation.XML",
|
||||
"lib/net45/zxing.presentation.dll",
|
||||
"lib/net461/zxing.XML",
|
||||
"lib/net461/zxing.dll",
|
||||
"lib/net461/zxing.presentation.XML",
|
||||
"lib/net461/zxing.presentation.dll",
|
||||
"lib/net47/zxing.XML",
|
||||
"lib/net47/zxing.dll",
|
||||
"lib/net47/zxing.presentation.XML",
|
||||
"lib/net47/zxing.presentation.dll",
|
||||
"lib/net48/zxing.XML",
|
||||
"lib/net48/zxing.dll",
|
||||
"lib/net48/zxing.presentation.XML",
|
||||
"lib/net48/zxing.presentation.dll",
|
||||
"lib/net5.0/zxing.XML",
|
||||
"lib/net5.0/zxing.dll",
|
||||
"lib/net6.0/zxing.XML",
|
||||
"lib/net6.0/zxing.dll",
|
||||
"lib/net7.0/zxing.XML",
|
||||
"lib/net7.0/zxing.dll",
|
||||
"lib/net8.0/zxing.XML",
|
||||
"lib/net8.0/zxing.dll",
|
||||
"lib/net9.0/zxing.XML",
|
||||
"lib/net9.0/zxing.dll",
|
||||
"lib/netcoreapp3.0/zxing.dll",
|
||||
"lib/netcoreapp3.0/zxing.xml",
|
||||
"lib/netcoreapp3.1/zxing.dll",
|
||||
"lib/netcoreapp3.1/zxing.xml",
|
||||
"lib/netstandard1.0/zxing.dll",
|
||||
"lib/netstandard1.0/zxing.xml",
|
||||
"lib/netstandard1.1/zxing.dll",
|
||||
"lib/netstandard1.1/zxing.xml",
|
||||
"lib/netstandard1.3/zxing.dll",
|
||||
"lib/netstandard1.3/zxing.xml",
|
||||
"lib/netstandard2.0/zxing.dll",
|
||||
"lib/netstandard2.0/zxing.xml",
|
||||
"lib/netstandard2.1/zxing.dll",
|
||||
"lib/netstandard2.1/zxing.xml",
|
||||
"lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.XML",
|
||||
"lib/portable-win+net40+sl4+sl5+wp7+wp71+wp8/zxing.portable.dll",
|
||||
"lib/sl3-wp/zxing.wp7.0.XML",
|
||||
"lib/sl3-wp/zxing.wp7.0.dll",
|
||||
"lib/sl4-wp71/zxing.wp7.1.XML",
|
||||
"lib/sl4-wp71/zxing.wp7.1.dll",
|
||||
"lib/sl4/zxing.sl4.XML",
|
||||
"lib/sl4/zxing.sl4.dll",
|
||||
"lib/sl5/zxing.sl5.XML",
|
||||
"lib/sl5/zxing.sl5.dll",
|
||||
"lib/uap10/zxing.dll",
|
||||
"lib/uap10/zxing.pri",
|
||||
"lib/uap10/zxing.xml",
|
||||
"lib/windows8-managed/zxing.winrt.XML",
|
||||
"lib/windows8-managed/zxing.winrt.dll",
|
||||
"lib/windows8/zxing.XML",
|
||||
"lib/windows8/zxing.pri",
|
||||
"lib/windows8/zxing.winmd",
|
||||
"lib/wp8/zxing.wp8.0.XML",
|
||||
"lib/wp8/zxing.wp8.0.dll",
|
||||
"logo.jpg",
|
||||
"zxing.net.0.16.10.nupkg.sha512",
|
||||
"zxing.net.nuspec"
|
||||
]
|
||||
}
|
||||
},
|
||||
"projectFileDependencyGroups": {
|
||||
@ -3480,7 +3748,10 @@
|
||||
"Avalonia.Themes.Fluent >= 11.2.1",
|
||||
"Microsoft.EntityFrameworkCore >= 8.0.10",
|
||||
"Microsoft.EntityFrameworkCore.Design >= 8.0.10",
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL >= 8.0.10"
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL >= 8.0.10",
|
||||
"PdfSharpCore >= 1.3.1",
|
||||
"SixLabors.ImageSharp >= 2.1.3",
|
||||
"ZXing.Net >= 0.16.10"
|
||||
]
|
||||
},
|
||||
"packageFolders": {
|
||||
@ -3558,6 +3829,18 @@
|
||||
"Npgsql.EntityFrameworkCore.PostgreSQL": {
|
||||
"target": "Package",
|
||||
"version": "[8.0.10, )"
|
||||
},
|
||||
"PdfSharpCore": {
|
||||
"target": "Package",
|
||||
"version": "[1.3.1, )"
|
||||
},
|
||||
"SixLabors.ImageSharp": {
|
||||
"target": "Package",
|
||||
"version": "[2.1.3, )"
|
||||
},
|
||||
"ZXing.Net": {
|
||||
"target": "Package",
|
||||
"version": "[0.16.10, )"
|
||||
}
|
||||
},
|
||||
"imports": [
|
||||
@ -3579,5 +3862,57 @@
|
||||
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-5x7m-6737-26cr",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1903",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-63p8-c4ww-9cg7",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1903",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-65x7-c272-7g7r",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-g85r-6x2q-45w7",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-qxrv-gp6x-rc23",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "fY2M1P/pz5k=",
|
||||
"dgSpecHash": "EQ4DPzxHNSo=",
|
||||
"success": true,
|
||||
"projectFilePath": "/Users/feitanportor/dev/C#/demo5/demo5/demo5.csproj",
|
||||
"expectedPackageFiles": [
|
||||
@ -51,6 +51,9 @@
|
||||
"/Users/feitanportor/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/npgsql/8.0.5/npgsql.8.0.5.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/npgsql.entityframeworkcore.postgresql/8.0.10/npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/pdfsharpcore/1.3.1/pdfsharpcore.1.3.1.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/sixlabors.fonts/1.0.0-beta0013/sixlabors.fonts.1.0.0-beta0013.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/sixlabors.imagesharp/2.1.3/sixlabors.imagesharp.2.1.3.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/skiasharp/2.88.8/skiasharp.2.88.8.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/skiasharp.nativeassets.linux/2.88.8/skiasharp.nativeassets.linux.2.88.8.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/skiasharp.nativeassets.macos/2.88.8/skiasharp.nativeassets.macos.2.88.8.nupkg.sha512",
|
||||
@ -65,11 +68,64 @@
|
||||
"/Users/feitanportor/.nuget/packages/system.composition.runtime/6.0.0/system.composition.runtime.6.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.composition.typedparts/6.0.0/system.composition.typedparts.6.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.io.pipelines/8.0.0/system.io.pipelines.8.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.reflection.metadata/6.0.1/system.reflection.metadata.6.0.1.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.text.encoding.codepages/6.0.0/system.text.encoding.codepages.6.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/system.threading.channels/6.0.0/system.threading.channels.6.0.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
"/Users/feitanportor/.nuget/packages/tmds.dbus.protocol/0.20.0/tmds.dbus.protocol.0.20.0.nupkg.sha512",
|
||||
"/Users/feitanportor/.nuget/packages/zxing.net/0.16.10/zxing.net.0.16.10.nupkg.sha512"
|
||||
],
|
||||
"logs": []
|
||||
"logs": [
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-5x7m-6737-26cr",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1903",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-63p8-c4ww-9cg7",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1903",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known high severity vulnerability, https://github.com/advisories/GHSA-65x7-c272-7g7r",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-g85r-6x2q-45w7",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
},
|
||||
{
|
||||
"code": "NU1902",
|
||||
"level": "Warning",
|
||||
"warningLevel": 1,
|
||||
"message": "Package 'SixLabors.ImageSharp' 2.1.3 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-qxrv-gp6x-rc23",
|
||||
"libraryId": "SixLabors.ImageSharp",
|
||||
"targetGraphs": [
|
||||
"net8.0"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
@ -1 +1 @@
|
||||
"restore":{"projectUniqueName":"/Users/feitanportor/dev/C#/demo5/demo5/demo5.csproj","projectName":"demo5","projectPath":"/Users/feitanportor/dev/C#/demo5/demo5/demo5.csproj","outputPath":"/Users/feitanportor/dev/C#/demo5/demo5/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}}
|
||||
"restore":{"projectUniqueName":"/Users/feitanportor/dev/C#/demo5/demo5/demo5.csproj","projectName":"demo5","projectPath":"/Users/feitanportor/dev/C#/demo5/demo5/demo5.csproj","outputPath":"/Users/feitanportor/dev/C#/demo5/demo5/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net8.0"],"sources":{"https://api.nuget.org/v3/index.json":{}},"frameworks":{"net8.0":{"targetAlias":"net8.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"}}"frameworks":{"net8.0":{"targetAlias":"net8.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"Microsoft.EntityFrameworkCore":{"target":"Package","version":"[8.0.10, )"},"Microsoft.EntityFrameworkCore.Design":{"include":"Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive","suppressParent":"All","target":"Package","version":"[8.0.10, )"},"Npgsql.EntityFrameworkCore.PostgreSQL":{"target":"Package","version":"[8.0.10, )"},"PdfSharpCore":{"target":"Package","version":"[1.3.1, )"},"SixLabors.ImageSharp":{"target":"Package","version":"[2.1.3, )"},"ZXing.Net":{"target":"Package","version":"[0.16.10, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/usr/local/share/dotnet/sdk/8.0.402/PortableRuntimeIdentifierGraph.json"}}
|
@ -1 +1 @@
|
||||
17386709532954604
|
||||
17407744351431374
|
@ -1 +1 @@
|
||||
17386709532954604
|
||||
17407744605768101
|
Loading…
Reference in New Issue
Block a user