Compare commits
3
Commits
main
..
9e0e316cd3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9e0e316cd3 | ||
|
|
f3e85ef138 | ||
|
|
d6ed15e1f6 |
@@ -1,45 +1,24 @@
|
|||||||
using HtmlAgilityPack;
|
using HtmlAgilityPack;
|
||||||
using System;
|
using System;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using AngleSharp;
|
|
||||||
|
|
||||||
class DrApi
|
class DrApi {
|
||||||
{
|
|
||||||
|
|
||||||
public static async Task<List<string>> DomQueryClass(string htmlContent, string className)
|
public static async Task<string> get_rants (string url) {
|
||||||
{
|
|
||||||
var config = Configuration.Default;
|
|
||||||
var context = BrowsingContext.New(config);
|
|
||||||
var document = await context.OpenAsync(req => req.Content(htmlContent));
|
|
||||||
|
|
||||||
var elements = document.QuerySelectorAll($".{className}");
|
|
||||||
|
|
||||||
return elements.Select(el => el.TextContent).ToList(); //OuterHtml).ToList()
|
string response = await HTTP.get(url).ConfigureAwait(false);;
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
+7
-27
@@ -6,16 +6,12 @@ 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){
|
|
||||||
return tr + tr;
|
private static readonly HttpClient client = new HttpClient(){
|
||||||
}
|
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();
|
||||||
@@ -24,29 +20,13 @@ partial class Program {
|
|||||||
window.SetDefaultSize(320,240);
|
window.SetDefaultSize(320,240);
|
||||||
window.DeleteEvent += (o,e) => Application.Quit();
|
window.DeleteEvent += (o,e) => Application.Quit();
|
||||||
|
|
||||||
var bgtask = RunIt();
|
string result = await DrApi.get_rants("https://devrant.com/feed/recent");
|
||||||
|
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);
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
};
|
|
||||||
|
|||||||
@@ -8,7 +8,6 @@
|
|||||||
".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"
|
||||||
},
|
},
|
||||||
@@ -16,17 +15,6 @@
|
|||||||
"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"
|
||||||
@@ -114,8 +102,7 @@
|
|||||||
"fileVersion": "3.24.24.95"
|
"fileVersion": "3.24.24.95"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
}
|
||||||
"System.Text.Encoding.CodePages/8.0.0": {}
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"libraries": {
|
"libraries": {
|
||||||
@@ -124,13 +111,6 @@
|
|||||||
"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,
|
||||||
@@ -186,13 +166,6 @@
|
|||||||
"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.
@@ -8,7 +8,6 @@
|
|||||||
</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>
|
||||||
|
|||||||
@@ -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+7fb519f419449f9dc0b2470d5e22b37ba71c9969")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+f3e85ef138f56eb1454fece36b3bc817dff8fd5d")]
|
||||||
[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 @@
|
|||||||
885952bf447ff1bea5505c35b1c8231624b933a12c032ef1d33f249f3074a7e0
|
876e47ae0af1b1b3c50d0188ea190deb89c9c2cdeca7c22e26195c0d767b83cf
|
||||||
|
|||||||
@@ -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/drnetapi/
|
build_property.ProjectDir = /home/retoor/projects/desk/
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1 +1 @@
|
|||||||
cb53997bd4f956d6fe419ccaf3b77c877689b448a89934fef62624a0029ccea3
|
5e3e99658f7cc8eb082cd7c6cd551b3ff500dd816707657a9c3f556f838b6d19
|
||||||
|
|||||||
@@ -22,28 +22,3 @@
|
|||||||
/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 @@
|
|||||||
b196298d23a3a841c1ef0e5b734aa0e27c33e7eb8e6c9434ac7ce89da4520dc1
|
81a9dd837751fb2a9ee94daadacfdaed7f0ae7769c2b3b424eba1e7c23c95c6f
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"/home/retoor/projects/drnetapi/drnetapi.csproj": {}
|
"/home/retoor/projects/desk/drnetapi.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"/home/retoor/projects/drnetapi/drnetapi.csproj": {
|
"/home/retoor/projects/desk/drnetapi.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/retoor/projects/drnetapi/drnetapi.csproj",
|
"projectUniqueName": "/home/retoor/projects/desk/drnetapi.csproj",
|
||||||
"projectName": "drnetapi",
|
"projectName": "drnetapi",
|
||||||
"projectPath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
|
"projectPath": "/home/retoor/projects/desk/drnetapi.csproj",
|
||||||
"packagesPath": "/home/retoor/.nuget/packages/",
|
"packagesPath": "/home/retoor/.nuget/packages/",
|
||||||
"outputPath": "/home/retoor/projects/drnetapi/obj/",
|
"outputPath": "/home/retoor/projects/desk/obj/",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/retoor/.nuget/NuGet/NuGet.Config"
|
"/home/retoor/.nuget/NuGet/NuGet.Config"
|
||||||
@@ -38,10 +38,6 @@
|
|||||||
"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, )"
|
||||||
|
|||||||
+3
-113
@@ -2,22 +2,6 @@
|
|||||||
"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": {
|
||||||
@@ -120,57 +104,10 @@
|
|||||||
"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",
|
||||||
@@ -311,53 +248,10 @@
|
|||||||
"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"
|
||||||
]
|
]
|
||||||
@@ -368,11 +262,11 @@
|
|||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "/home/retoor/projects/drnetapi/drnetapi.csproj",
|
"projectUniqueName": "/home/retoor/projects/desk/drnetapi.csproj",
|
||||||
"projectName": "drnetapi",
|
"projectName": "drnetapi",
|
||||||
"projectPath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
|
"projectPath": "/home/retoor/projects/desk/drnetapi.csproj",
|
||||||
"packagesPath": "/home/retoor/.nuget/packages/",
|
"packagesPath": "/home/retoor/.nuget/packages/",
|
||||||
"outputPath": "/home/retoor/projects/drnetapi/obj/",
|
"outputPath": "/home/retoor/projects/desk/obj/",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"configFilePaths": [
|
"configFilePaths": [
|
||||||
"/home/retoor/.nuget/NuGet/NuGet.Config"
|
"/home/retoor/.nuget/NuGet/NuGet.Config"
|
||||||
@@ -399,10 +293,6 @@
|
|||||||
"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, )"
|
||||||
|
|||||||
@@ -1,10 +1,9 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "vtE4V6sCh/ezJsnT0M5QEo7noKBcpCVJldaAh0oCljeGBNXR9QdZzpjKNgqgY0x1ZubZYDuNfniHqXhJPPul/Q==",
|
"dgSpecHash": "/OZxepw2BFfahk75r6cBBCnANwLp6WQjEj8K/IU3d7PD+AH4flpRGC4msQXqbWl+rMjIdBDQ2ec6q3THszZlbg==",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "/home/retoor/projects/drnetapi/drnetapi.csproj",
|
"projectFilePath": "/home/retoor/projects/desk/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",
|
||||||
@@ -12,8 +11,7 @@
|
|||||||
"/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": []
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user