Compare commits

..
5 Commits
Author SHA1 Message Date
retoor da6d3d747b chore: add AngleSharp dependency and refactor rant scraping to use CSS class queries
- Add AngleSharp NuGet package version 1.1.2 to csproj for HTML parsing
- Introduce DomQueryClass helper method using AngleSharp to extract elements by CSS class name
- Replace XPath-based node selection in get_rants with DomQueryClass targeting "rantlist-title-text"
- Update Program.cs to await RunIt task and add a 100-iteration loop around rant fetching
- Add transform string concatenation utility method to Program class
2024-12-17 11:10:58 +00:00
retoor a3cce3425f refactor: extract async API call into separate RunIt method and remove unused HttpClient 2024-12-16 21:45:16 +00:00
retoor c97cae710e chore: remove all .history versioned DrApi.cs stubs and add .vscode to gitignore 2024-12-16 21:31:04 +00:00
retoor eb41db087f docs: add project README with setup instructions and overview 2024-12-16 21:27:45 +00:00
retoor b4dee95f23 chore: remove all .history/DrApi_20241215* placeholder example source files 2024-12-16 21:23:13 +00:00
21 changed files with 244 additions and 34 deletions
+31 -10
View File
@@ -1,24 +1,45 @@
using HtmlAgilityPack; using HtmlAgilityPack;
using System; using System;
using System.Linq; using System.Linq;
using AngleSharp;
class DrApi { class DrApi
{
public static async Task<string> get_rants (string url) { public static async Task<List<string>> DomQueryClass(string htmlContent, string className)
{
var config = Configuration.Default;
var context = BrowsingContext.New(config);
var document = await context.OpenAsync(req => req.Content(htmlContent));
var elements = document.QuerySelectorAll($".{className}");
string response = await HTTP.get(url).ConfigureAwait(false);; return elements.Select(el => el.TextContent).ToList(); //OuterHtml).ToList()
}
public static async Task<string> get_rants(string url)
{
string response = await HTTP.get(url).ConfigureAwait(false); ;
HtmlDocument doc = new HtmlDocument(); HtmlDocument doc = new HtmlDocument();
doc.LoadHtml(response); doc.LoadHtml(response);
var nodes = doc.DocumentNode.SelectNodes("//a");
var nodes = await DomQueryClass(response, "rantlist-title-text");
foreach (var node in nodes)
{
Console.WriteLine(node);
}
//var nodes = doc.DocumentNode.SelectNodes("//a");
//var nodes = doc.DocumentNode.SelectNodes("//a[contains(@class,'rantlist-content-col')"); //var nodes = doc.DocumentNode.SelectNodes("//a[contains(@class,'rantlist-content-col')");
//var nodes = doc.DocumentNode.SelectNodes("//div[contains(@class, 'rant-comment-row-widget')]"); //var nodes = doc.DocumentNode.SelectNodes("//div[contains(@class, 'rant-comment-row-widget')]");
foreach (var node in nodes) { //foreach (var node in nodes) {
Console.WriteLine(node.GetAttributeValue("class","None")); // Console.WriteLine(node.GetAttributeValue("class","None"));
if(node.GetAttributeValue("class","None") == "rantlist-bglink"){ // if(node.GetAttributeValue("class","None") == "rantlist-bglink"){
Console.WriteLine(node.InnerText); // Console.WriteLine(node.InnerText);
} //}
} //}
return null; return null;
} }
+27 -7
View File
@@ -6,12 +6,16 @@ using System;
using System.Net.Http; using System.Net.Http;
using System.Threading.Tasks; using System.Threading.Tasks;
using System;
using System.Runtime.InteropServices;
namespace drnetapi {
partial class Program { partial class Program {
public static string transform(string tr){
private static readonly HttpClient client = new HttpClient(){ return tr + tr;
Timeout = TimeSpan.FromSeconds(10) // Set a timeout to avoid hanging }
};
static async Task Main(string[] args){ static async Task Main(string[] args){
Application.Init(); Application.Init();
@@ -20,13 +24,29 @@ partial class Program {
window.SetDefaultSize(320,240); window.SetDefaultSize(320,240);
window.DeleteEvent += (o,e) => Application.Quit(); window.DeleteEvent += (o,e) => Application.Quit();
string result = await DrApi.get_rants("https://devrant.com/feed/recent"); var bgtask = RunIt();
Console.WriteLine(result);
window.ShowAll(); window.ShowAll();
Application.Run(); Application.Run();
await bgtask;
} }
}
static async Task RunIt()
{
for(int i = 0; i < 100; i++){
//Thread.Sleep(1000);
string result = await DrApi.get_rants("https://devrant.com/feed/recent").ConfigureAwait(false);
Console.WriteLine(result);
}
}
};
};
+28 -1
View File
@@ -8,6 +8,7 @@
".NETCoreApp,Version=v8.0": { ".NETCoreApp,Version=v8.0": {
"drnetapi/1.0.0": { "drnetapi/1.0.0": {
"dependencies": { "dependencies": {
"AngleSharp": "1.1.2",
"GtkSharp": "3.24.24.95", "GtkSharp": "3.24.24.95",
"HtmlAgilityPack": "1.11.71" "HtmlAgilityPack": "1.11.71"
}, },
@@ -15,6 +16,17 @@
"drnetapi.dll": {} "drnetapi.dll": {}
} }
}, },
"AngleSharp/1.1.2": {
"dependencies": {
"System.Text.Encoding.CodePages": "8.0.0"
},
"runtime": {
"lib/net8.0/AngleSharp.dll": {
"assemblyVersion": "1.1.2.0",
"fileVersion": "1.1.2.0"
}
}
},
"AtkSharp/3.24.24.95": { "AtkSharp/3.24.24.95": {
"dependencies": { "dependencies": {
"GLibSharp": "3.24.24.95" "GLibSharp": "3.24.24.95"
@@ -102,7 +114,8 @@
"fileVersion": "3.24.24.95" "fileVersion": "3.24.24.95"
} }
} }
} },
"System.Text.Encoding.CodePages/8.0.0": {}
} }
}, },
"libraries": { "libraries": {
@@ -111,6 +124,13 @@
"serviceable": false, "serviceable": false,
"sha512": "" "sha512": ""
}, },
"AngleSharp/1.1.2": {
"type": "package",
"serviceable": true,
"sha512": "sha512-aRFpAqixbuj1Vmqy2hsWPF0PJygo1SfjvmpBvVWZv6i+/u+C/L4wDdwFIzyCGUbjqr61NsZdPNPqDE8wlmG2qA==",
"path": "anglesharp/1.1.2",
"hashPath": "anglesharp.1.1.2.nupkg.sha512"
},
"AtkSharp/3.24.24.95": { "AtkSharp/3.24.24.95": {
"type": "package", "type": "package",
"serviceable": true, "serviceable": true,
@@ -166,6 +186,13 @@
"sha512": "sha512-H7JeyEvLsgvsbamGpRgoNtdvzPiGwwsUuoeTobN1C/JRjw1J8Snw0yf2WBr7CKx5GLwbrwpQYOb7N/HD17ME8A==", "sha512": "sha512-H7JeyEvLsgvsbamGpRgoNtdvzPiGwwsUuoeTobN1C/JRjw1J8Snw0yf2WBr7CKx5GLwbrwpQYOb7N/HD17ME8A==",
"path": "pangosharp/3.24.24.95", "path": "pangosharp/3.24.24.95",
"hashPath": "pangosharp.3.24.24.95.nupkg.sha512" "hashPath": "pangosharp.3.24.24.95.nupkg.sha512"
},
"System.Text.Encoding.CodePages/8.0.0": {
"type": "package",
"serviceable": true,
"sha512": "sha512-OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==",
"path": "system.text.encoding.codepages/8.0.0",
"hashPath": "system.text.encoding.codepages.8.0.0.nupkg.sha512"
} }
} }
} }
Binary file not shown.
Binary file not shown.
+1
View File
@@ -8,6 +8,7 @@
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="AngleSharp" Version="1.1.2" />
<PackageReference Include="GtkSharp" Version="3.24.24.95" /> <PackageReference Include="GtkSharp" Version="3.24.24.95" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.71" /> <PackageReference Include="HtmlAgilityPack" Version="1.11.71" />
</ItemGroup> </ItemGroup>
+1 -1
View File
@@ -13,7 +13,7 @@ using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("drnetapi")] [assembly: System.Reflection.AssemblyCompanyAttribute("drnetapi")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f3e85ef138f56eb1454fece36b3bc817dff8fd5d")] [assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+7fb519f419449f9dc0b2470d5e22b37ba71c9969")]
[assembly: System.Reflection.AssemblyProductAttribute("drnetapi")] [assembly: System.Reflection.AssemblyProductAttribute("drnetapi")]
[assembly: System.Reflection.AssemblyTitleAttribute("drnetapi")] [assembly: System.Reflection.AssemblyTitleAttribute("drnetapi")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
@@ -1 +1 @@
876e47ae0af1b1b3c50d0188ea190deb89c9c2cdeca7c22e26195c0d767b83cf 885952bf447ff1bea5505c35b1c8231624b933a12c032ef1d33f249f3074a7e0
@@ -8,6 +8,6 @@ build_property.PlatformNeutralAssembly =
build_property.EnforceExtendedAnalyzerRules = build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = drnetapi build_property.RootNamespace = drnetapi
build_property.ProjectDir = /home/retoor/projects/desk/ build_property.ProjectDir = /home/retoor/projects/drnetapi/
build_property.EnableComHosting = build_property.EnableComHosting =
build_property.EnableGeneratedComInterfaceComImportInterop = build_property.EnableGeneratedComInterfaceComImportInterop =
Binary file not shown.
@@ -1 +1 @@
5e3e99658f7cc8eb082cd7c6cd551b3ff500dd816707657a9c3f556f838b6d19 cb53997bd4f956d6fe419ccaf3b77c877689b448a89934fef62624a0029ccea3
@@ -22,3 +22,28 @@
/home/retoor/projects/desk/obj/Debug/net8.0/drnetapi.pdb /home/retoor/projects/desk/obj/Debug/net8.0/drnetapi.pdb
/home/retoor/projects/desk/obj/Debug/net8.0/drnetapi.genruntimeconfig.cache /home/retoor/projects/desk/obj/Debug/net8.0/drnetapi.genruntimeconfig.cache
/home/retoor/projects/desk/obj/Debug/net8.0/ref/drnetapi.dll /home/retoor/projects/desk/obj/Debug/net8.0/ref/drnetapi.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/drnetapi
/home/retoor/projects/drnetapi/bin/Debug/net8.0/drnetapi.deps.json
/home/retoor/projects/drnetapi/bin/Debug/net8.0/drnetapi.runtimeconfig.json
/home/retoor/projects/drnetapi/bin/Debug/net8.0/drnetapi.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/drnetapi.pdb
/home/retoor/projects/drnetapi/bin/Debug/net8.0/AtkSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/CairoSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/GdkSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/GioSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/GLibSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/GtkSharp.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/HtmlAgilityPack.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/PangoSharp.dll
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.csproj.AssemblyReference.cache
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.GeneratedMSBuildEditorConfig.editorconfig
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.AssemblyInfoInputs.cache
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.AssemblyInfo.cs
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.csproj.CoreCompileInputs.cache
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.csproj.CopyComplete
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.dll
/home/retoor/projects/drnetapi/obj/Debug/net8.0/refint/drnetapi.dll
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.pdb
/home/retoor/projects/drnetapi/obj/Debug/net8.0/drnetapi.genruntimeconfig.cache
/home/retoor/projects/drnetapi/obj/Debug/net8.0/ref/drnetapi.dll
/home/retoor/projects/drnetapi/bin/Debug/net8.0/AngleSharp.dll
Binary file not shown.
@@ -1 +1 @@
81a9dd837751fb2a9ee94daadacfdaed7f0ae7769c2b3b424eba1e7c23c95c6f b196298d23a3a841c1ef0e5b734aa0e27c33e7eb8e6c9434ac7ce89da4520dc1
Binary file not shown.
Binary file not shown.
Binary file not shown.
+9 -5
View File
@@ -1,17 +1,17 @@
{ {
"format": 1, "format": 1,
"restore": { "restore": {
"/home/retoor/projects/desk/drnetapi.csproj": {} "/home/retoor/projects/drnetapi/drnetapi.csproj": {}
}, },
"projects": { "projects": {
"/home/retoor/projects/desk/drnetapi.csproj": { "/home/retoor/projects/drnetapi/drnetapi.csproj": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/retoor/projects/desk/drnetapi.csproj", "projectUniqueName": "/home/retoor/projects/drnetapi/drnetapi.csproj",
"projectName": "drnetapi", "projectName": "drnetapi",
"projectPath": "/home/retoor/projects/desk/drnetapi.csproj", "projectPath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
"packagesPath": "/home/retoor/.nuget/packages/", "packagesPath": "/home/retoor/.nuget/packages/",
"outputPath": "/home/retoor/projects/desk/obj/", "outputPath": "/home/retoor/projects/drnetapi/obj/",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/retoor/.nuget/NuGet/NuGet.Config" "/home/retoor/.nuget/NuGet/NuGet.Config"
@@ -38,6 +38,10 @@
"net8.0": { "net8.0": {
"targetAlias": "net8.0", "targetAlias": "net8.0",
"dependencies": { "dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[1.1.2, )"
},
"GtkSharp": { "GtkSharp": {
"target": "Package", "target": "Package",
"version": "[3.24.24.95, )" "version": "[3.24.24.95, )"
+113 -3
View File
@@ -2,6 +2,22 @@
"version": 3, "version": 3,
"targets": { "targets": {
"net8.0": { "net8.0": {
"AngleSharp/1.1.2": {
"type": "package",
"dependencies": {
"System.Text.Encoding.CodePages": "8.0.0"
},
"compile": {
"lib/net8.0/AngleSharp.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net8.0/AngleSharp.dll": {
"related": ".xml"
}
}
},
"AtkSharp/3.24.24.95": { "AtkSharp/3.24.24.95": {
"type": "package", "type": "package",
"dependencies": { "dependencies": {
@@ -104,10 +120,57 @@
"runtime": { "runtime": {
"lib/net6.0/PangoSharp.dll": {} "lib/net6.0/PangoSharp.dll": {}
} }
},
"System.Text.Encoding.CodePages/8.0.0": {
"type": "package",
"compile": {
"lib/net8.0/System.Text.Encoding.CodePages.dll": {
"related": ".xml"
}
},
"runtime": {
"lib/net8.0/System.Text.Encoding.CodePages.dll": {
"related": ".xml"
}
},
"build": {
"buildTransitive/net6.0/_._": {}
},
"runtimeTargets": {
"runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll": {
"assetType": "runtime",
"rid": "win"
}
}
} }
} }
}, },
"libraries": { "libraries": {
"AngleSharp/1.1.2": {
"sha512": "aRFpAqixbuj1Vmqy2hsWPF0PJygo1SfjvmpBvVWZv6i+/u+C/L4wDdwFIzyCGUbjqr61NsZdPNPqDE8wlmG2qA==",
"type": "package",
"path": "anglesharp/1.1.2",
"files": [
".nupkg.metadata",
".signature.p7s",
"README.md",
"anglesharp.1.1.2.nupkg.sha512",
"anglesharp.nuspec",
"lib/net461/AngleSharp.dll",
"lib/net461/AngleSharp.xml",
"lib/net472/AngleSharp.dll",
"lib/net472/AngleSharp.xml",
"lib/net6.0/AngleSharp.dll",
"lib/net6.0/AngleSharp.xml",
"lib/net7.0/AngleSharp.dll",
"lib/net7.0/AngleSharp.xml",
"lib/net8.0/AngleSharp.dll",
"lib/net8.0/AngleSharp.xml",
"lib/netstandard2.0/AngleSharp.dll",
"lib/netstandard2.0/AngleSharp.xml",
"logo.png"
]
},
"AtkSharp/3.24.24.95": { "AtkSharp/3.24.24.95": {
"sha512": "LnSfsc0y11gfzczZj5bnpwcFkXFZuVTSSd92ML/FcHIM7FU+cAfm1UkAonv5BdwTRhzDbNDE39vihao/k75sUA==", "sha512": "LnSfsc0y11gfzczZj5bnpwcFkXFZuVTSSd92ML/FcHIM7FU+cAfm1UkAonv5BdwTRhzDbNDE39vihao/k75sUA==",
"type": "package", "type": "package",
@@ -248,10 +311,53 @@
"pangosharp.3.24.24.95.nupkg.sha512", "pangosharp.3.24.24.95.nupkg.sha512",
"pangosharp.nuspec" "pangosharp.nuspec"
] ]
},
"System.Text.Encoding.CodePages/8.0.0": {
"sha512": "OZIsVplFGaVY90G2SbpgU7EnCoOO5pw1t4ic21dBF3/1omrJFpAGoNAVpPyMVOC90/hvgkGG3VFqR13YgZMQfg==",
"type": "package",
"path": "system.text.encoding.codepages/8.0.0",
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"PACKAGE.md",
"THIRD-PARTY-NOTICES.TXT",
"buildTransitive/net461/System.Text.Encoding.CodePages.targets",
"buildTransitive/net462/_._",
"buildTransitive/net6.0/_._",
"buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets",
"lib/MonoAndroid10/_._",
"lib/MonoTouch10/_._",
"lib/net462/System.Text.Encoding.CodePages.dll",
"lib/net462/System.Text.Encoding.CodePages.xml",
"lib/net6.0/System.Text.Encoding.CodePages.dll",
"lib/net6.0/System.Text.Encoding.CodePages.xml",
"lib/net7.0/System.Text.Encoding.CodePages.dll",
"lib/net7.0/System.Text.Encoding.CodePages.xml",
"lib/net8.0/System.Text.Encoding.CodePages.dll",
"lib/net8.0/System.Text.Encoding.CodePages.xml",
"lib/netstandard2.0/System.Text.Encoding.CodePages.dll",
"lib/netstandard2.0/System.Text.Encoding.CodePages.xml",
"lib/xamarinios10/_._",
"lib/xamarinmac20/_._",
"lib/xamarintvos10/_._",
"lib/xamarinwatchos10/_._",
"runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net7.0/System.Text.Encoding.CodePages.xml",
"runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.dll",
"runtimes/win/lib/net8.0/System.Text.Encoding.CodePages.xml",
"system.text.encoding.codepages.8.0.0.nupkg.sha512",
"system.text.encoding.codepages.nuspec",
"useSharedDesignerContext.txt"
]
} }
}, },
"projectFileDependencyGroups": { "projectFileDependencyGroups": {
"net8.0": [ "net8.0": [
"AngleSharp >= 1.1.2",
"GtkSharp >= 3.24.24.95", "GtkSharp >= 3.24.24.95",
"HtmlAgilityPack >= 1.11.71" "HtmlAgilityPack >= 1.11.71"
] ]
@@ -262,11 +368,11 @@
"project": { "project": {
"version": "1.0.0", "version": "1.0.0",
"restore": { "restore": {
"projectUniqueName": "/home/retoor/projects/desk/drnetapi.csproj", "projectUniqueName": "/home/retoor/projects/drnetapi/drnetapi.csproj",
"projectName": "drnetapi", "projectName": "drnetapi",
"projectPath": "/home/retoor/projects/desk/drnetapi.csproj", "projectPath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
"packagesPath": "/home/retoor/.nuget/packages/", "packagesPath": "/home/retoor/.nuget/packages/",
"outputPath": "/home/retoor/projects/desk/obj/", "outputPath": "/home/retoor/projects/drnetapi/obj/",
"projectStyle": "PackageReference", "projectStyle": "PackageReference",
"configFilePaths": [ "configFilePaths": [
"/home/retoor/.nuget/NuGet/NuGet.Config" "/home/retoor/.nuget/NuGet/NuGet.Config"
@@ -293,6 +399,10 @@
"net8.0": { "net8.0": {
"targetAlias": "net8.0", "targetAlias": "net8.0",
"dependencies": { "dependencies": {
"AngleSharp": {
"target": "Package",
"version": "[1.1.2, )"
},
"GtkSharp": { "GtkSharp": {
"target": "Package", "target": "Package",
"version": "[3.24.24.95, )" "version": "[3.24.24.95, )"
+5 -3
View File
@@ -1,9 +1,10 @@
{ {
"version": 2, "version": 2,
"dgSpecHash": "/OZxepw2BFfahk75r6cBBCnANwLp6WQjEj8K/IU3d7PD+AH4flpRGC4msQXqbWl+rMjIdBDQ2ec6q3THszZlbg==", "dgSpecHash": "vtE4V6sCh/ezJsnT0M5QEo7noKBcpCVJldaAh0oCljeGBNXR9QdZzpjKNgqgY0x1ZubZYDuNfniHqXhJPPul/Q==",
"success": true, "success": true,
"projectFilePath": "/home/retoor/projects/desk/drnetapi.csproj", "projectFilePath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
"expectedPackageFiles": [ "expectedPackageFiles": [
"/home/retoor/.nuget/packages/anglesharp/1.1.2/anglesharp.1.1.2.nupkg.sha512",
"/home/retoor/.nuget/packages/atksharp/3.24.24.95/atksharp.3.24.24.95.nupkg.sha512", "/home/retoor/.nuget/packages/atksharp/3.24.24.95/atksharp.3.24.24.95.nupkg.sha512",
"/home/retoor/.nuget/packages/cairosharp/3.24.24.95/cairosharp.3.24.24.95.nupkg.sha512", "/home/retoor/.nuget/packages/cairosharp/3.24.24.95/cairosharp.3.24.24.95.nupkg.sha512",
"/home/retoor/.nuget/packages/gdksharp/3.24.24.95/gdksharp.3.24.24.95.nupkg.sha512", "/home/retoor/.nuget/packages/gdksharp/3.24.24.95/gdksharp.3.24.24.95.nupkg.sha512",
@@ -11,7 +12,8 @@
"/home/retoor/.nuget/packages/glibsharp/3.24.24.95/glibsharp.3.24.24.95.nupkg.sha512", "/home/retoor/.nuget/packages/glibsharp/3.24.24.95/glibsharp.3.24.24.95.nupkg.sha512",
"/home/retoor/.nuget/packages/gtksharp/3.24.24.95/gtksharp.3.24.24.95.nupkg.sha512", "/home/retoor/.nuget/packages/gtksharp/3.24.24.95/gtksharp.3.24.24.95.nupkg.sha512",
"/home/retoor/.nuget/packages/htmlagilitypack/1.11.71/htmlagilitypack.1.11.71.nupkg.sha512", "/home/retoor/.nuget/packages/htmlagilitypack/1.11.71/htmlagilitypack.1.11.71.nupkg.sha512",
"/home/retoor/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512" "/home/retoor/.nuget/packages/pangosharp/3.24.24.95/pangosharp.3.24.24.95.nupkg.sha512",
"/home/retoor/.nuget/packages/system.text.encoding.codepages/8.0.0/system.text.encoding.codepages.8.0.0.nupkg.sha512"
], ],
"logs": [] "logs": []
} }