.
This commit is contained in:
parent
c664257bf3
commit
ec965be485
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.metadata.v8.bin
Normal file
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.metadata.v8.bin
Normal file
Binary file not shown.
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.projects.v8.bin
Normal file
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.projects.v8.bin
Normal file
Binary file not shown.
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.strings.v8.bin
Normal file
BIN
.vs/ProjectEvaluation/wordpressversionauslesen.strings.v8.bin
Normal file
Binary file not shown.
BIN
.vs/WordpressVersionAuslesen/DesignTimeBuild/.dtbcache.v2
Normal file
BIN
.vs/WordpressVersionAuslesen/DesignTimeBuild/.dtbcache.v2
Normal file
Binary file not shown.
Binary file not shown.
BIN
.vs/WordpressVersionAuslesen/v17/.futdcache.v2
Normal file
BIN
.vs/WordpressVersionAuslesen/v17/.futdcache.v2
Normal file
Binary file not shown.
BIN
.vs/WordpressVersionAuslesen/v17/.suo
Normal file
BIN
.vs/WordpressVersionAuslesen/v17/.suo
Normal file
Binary file not shown.
@ -1,12 +1,23 @@
|
|||||||
{
|
{
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"WorkspaceRootPath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\",
|
"WorkspaceRootPath": "D:\\Programmierbude\\WordpressVersionAuslesen\\",
|
||||||
"Documents": [],
|
"Documents": [],
|
||||||
"DocumentGroupContainers": [
|
"DocumentGroupContainers": [
|
||||||
{
|
{
|
||||||
"Orientation": 0,
|
"Orientation": 0,
|
||||||
"VerticalTabListWidth": 256,
|
"VerticalTabListWidth": 256,
|
||||||
"DocumentGroups": []
|
"DocumentGroups": [
|
||||||
|
{
|
||||||
|
"DockedWidth": 200,
|
||||||
|
"SelectedChildIndex": -1,
|
||||||
|
"Children": [
|
||||||
|
{
|
||||||
|
"$type": "Bookmark",
|
||||||
|
"Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
21
WinFormsApp1/Form1.Designer.cs
generated
21
WinFormsApp1/Form1.Designer.cs
generated
@ -29,42 +29,33 @@
|
|||||||
private void InitializeComponent()
|
private void InitializeComponent()
|
||||||
{
|
{
|
||||||
button1 = new Button();
|
button1 = new Button();
|
||||||
txtUrl = new TextBox();
|
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// button1
|
// button1
|
||||||
//
|
//
|
||||||
button1.Location = new Point(338, 118);
|
button1.Location = new Point(12, 12);
|
||||||
button1.Name = "button1";
|
button1.Name = "button1";
|
||||||
button1.Size = new Size(75, 23);
|
button1.Size = new Size(128, 23);
|
||||||
button1.TabIndex = 0;
|
button1.TabIndex = 0;
|
||||||
button1.Text = "button1";
|
button1.Text = "Starten";
|
||||||
button1.UseVisualStyleBackColor = true;
|
button1.UseVisualStyleBackColor = true;
|
||||||
button1.Click += button1_Click;
|
button1.Click += button1_Click;
|
||||||
//
|
//
|
||||||
// txtUrl
|
|
||||||
//
|
|
||||||
txtUrl.Location = new Point(339, 58);
|
|
||||||
txtUrl.Name = "txtUrl";
|
|
||||||
txtUrl.Size = new Size(100, 23);
|
|
||||||
txtUrl.TabIndex = 1;
|
|
||||||
//
|
|
||||||
// Form1
|
// Form1
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||||
AutoScaleMode = AutoScaleMode.Font;
|
AutoScaleMode = AutoScaleMode.Font;
|
||||||
ClientSize = new Size(800, 450);
|
ClientSize = new Size(164, 51);
|
||||||
Controls.Add(txtUrl);
|
|
||||||
Controls.Add(button1);
|
Controls.Add(button1);
|
||||||
|
FormBorderStyle = FormBorderStyle.FixedToolWindow;
|
||||||
Name = "Form1";
|
Name = "Form1";
|
||||||
|
StartPosition = FormStartPosition.WindowsDefaultBounds;
|
||||||
Text = "Form1";
|
Text = "Form1";
|
||||||
ResumeLayout(false);
|
ResumeLayout(false);
|
||||||
PerformLayout();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
private Button button1;
|
private Button button1;
|
||||||
private TextBox txtUrl;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -3,6 +3,9 @@ using System.Net.Http;
|
|||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Security.Policy;
|
using System.Security.Policy;
|
||||||
|
using MySql.Data.MySqlClient;
|
||||||
|
using System.Data.Common;
|
||||||
|
using System.Data;
|
||||||
|
|
||||||
namespace WinFormsApp1
|
namespace WinFormsApp1
|
||||||
{
|
{
|
||||||
@ -15,11 +18,168 @@ namespace WinFormsApp1
|
|||||||
|
|
||||||
private async void button1_Click(object sender, EventArgs e)
|
private async void button1_Click(object sender, EventArgs e)
|
||||||
{
|
{
|
||||||
//mit dem Button Klick kann man die Form FrmMain öffnen
|
string connectionString = "Server=192.168.178.201;Database=domainchecker;User ID=root;Password=1td5rugut8;";
|
||||||
FrmMain frmMain = new FrmMain();
|
|
||||||
frmMain.ShowDialog();
|
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
using (MySqlConnection conn = new MySqlConnection(connectionString))
|
||||||
|
{
|
||||||
|
await conn.OpenAsync();
|
||||||
|
|
||||||
|
string query = "SELECT webseite FROM webCrawler";
|
||||||
|
MySqlCommand cmd = new MySqlCommand(query, conn);
|
||||||
|
|
||||||
|
using (DbDataReader reader = await cmd.ExecuteReaderAsync())
|
||||||
|
{
|
||||||
|
while (await reader.ReadAsync())
|
||||||
|
{
|
||||||
|
string domain = reader.GetString("webseite");
|
||||||
|
//string version = await GetWordPressVersionAsync(domain);
|
||||||
|
string versionInfo = await GetCmsVersionAsync(domain); // <-- Methodenaufruf geändert
|
||||||
|
|
||||||
|
if (versionInfo != null)
|
||||||
|
{
|
||||||
|
string[] parts = versionInfo.Split('|'); // <-- Aufteilung in CMS-Namen und Version
|
||||||
|
string cmsName = parts[0];
|
||||||
|
string version = parts[1];
|
||||||
|
|
||||||
|
using (MySqlConnection insertConn = new MySqlConnection(connectionString))
|
||||||
|
{
|
||||||
|
await insertConn.OpenAsync();
|
||||||
|
await InsertOrUpdateVersionAsync(insertConn, domain, version, cmsName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
//Nothing
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Console.Beep();
|
||||||
|
MessageBox.Show("Fertig");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
Console.WriteLine($"Fehler: {ex.Message}\r\n");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<string> GetWordPressVersionAsync(string url)
|
||||||
|
{
|
||||||
|
using (HttpClient client = new HttpClient())
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string html = await client.GetStringAsync("https://" + url);
|
||||||
|
|
||||||
|
Regex regex = new Regex(@"<meta name=""generator"" content=""WordPress (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
|
Match match = regex.Match(html);
|
||||||
|
|
||||||
|
return match.Success ? match.Groups[1].Value : null;
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task InsertOrUpdateVersionAsync(MySqlConnection conn, string domain, string version, string cmsName)
|
||||||
|
{
|
||||||
|
string checkQuery = "SELECT COUNT(*) FROM wp_versionen WHERE domain = @domain";
|
||||||
|
MySqlCommand checkCmd = new MySqlCommand(checkQuery, conn);
|
||||||
|
checkCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
|
int count = Convert.ToInt32(await checkCmd.ExecuteScalarAsync());
|
||||||
|
DateTime letzte_pruefung = DateTime.Now;
|
||||||
|
if (count > 0)
|
||||||
|
{
|
||||||
|
string updateQuery = "UPDATE wp_versionen SET version = @version, letzte_pruefung = @letzte_pruefung , cms_name=@cmsname WHERE domain = @domain";
|
||||||
|
MySqlCommand updateCmd = new MySqlCommand(updateQuery, conn);
|
||||||
|
updateCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
|
updateCmd.Parameters.AddWithValue("@version", version);
|
||||||
|
updateCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
||||||
|
updateCmd.Parameters.AddWithValue("@cmsname", cmsName);
|
||||||
|
await updateCmd.ExecuteNonQueryAsync();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
string insertQuery = "INSERT INTO wp_versionen (domain, version, letzte_pruefung, cms_name) VALUES (@domain, @version, @letzte_pruefung, @cmsname)";
|
||||||
|
MySqlCommand insertCmd = new MySqlCommand(insertQuery, conn);
|
||||||
|
insertCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
|
insertCmd.Parameters.AddWithValue("@version", version);
|
||||||
|
insertCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
||||||
|
insertCmd.Parameters.AddWithValue("@cmsname", cmsName);
|
||||||
|
await insertCmd.ExecuteNonQueryAsync();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private async Task<string> GetCmsVersionAsync(string url)
|
||||||
|
{
|
||||||
|
using (HttpClient client = new HttpClient())
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string html = await client.GetStringAsync("https://" + url);
|
||||||
|
|
||||||
|
// WordPress
|
||||||
|
Regex wpRegex = new Regex(@"<meta name=""generator"" content=""WordPress (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
|
Match wpMatch = wpRegex.Match(html);
|
||||||
|
if (wpMatch.Success)
|
||||||
|
{
|
||||||
|
return $"WordPress|{wpMatch.Groups[1].Value}";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Joomla
|
||||||
|
Regex joomlaRegex = new Regex(@"<meta name=""generator"" content=""Joomla\! - Open Source Content Management (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
|
Match joomlaMatch = joomlaRegex.Match(html);
|
||||||
|
if (joomlaMatch.Success)
|
||||||
|
{
|
||||||
|
return $"Joomla|{joomlaMatch.Groups[1].Value}";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alternative Joomla-Erkennung: Prüfen auf typische Joomla-Dateien
|
||||||
|
if (html.Contains("com_content"))
|
||||||
|
{
|
||||||
|
return "Joomla|Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Drupal
|
||||||
|
Regex drupalRegex = new Regex(@"<meta name=""generator"" content=""Drupal (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
|
Match drupalMatch = drupalRegex.Match(html);
|
||||||
|
if (drupalMatch.Success)
|
||||||
|
{
|
||||||
|
return $"Drupal|{drupalMatch.Groups[1].Value}";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alternative Drupal-Erkennung: Prüfen auf typische URLs
|
||||||
|
if (html.Contains("/sites/default/files/"))
|
||||||
|
{
|
||||||
|
return "Drupal|Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Typo3
|
||||||
|
Regex typo3Regex = new Regex(@"<meta name=""generator"" content=""TYPO3 CMS (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
|
Match typo3Match = typo3Regex.Match(html);
|
||||||
|
if (typo3Match.Success)
|
||||||
|
{
|
||||||
|
return $"Typo3|{typo3Match.Groups[1].Value}";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Alternative Typo3-Erkennung: Prüfen auf typische URLs
|
||||||
|
if (html.Contains("typo3conf"))
|
||||||
|
{
|
||||||
|
return "Typo3|Unknown";
|
||||||
|
}
|
||||||
|
|
||||||
|
// Weitere CMS-Erkennung hinzufügen...
|
||||||
|
|
||||||
|
return null; // Kein CMS erkannt
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
10
WinFormsApp1/FrmMain.Designer.cs
generated
10
WinFormsApp1/FrmMain.Designer.cs
generated
@ -31,16 +31,6 @@
|
|||||||
button1 = new Button();
|
button1 = new Button();
|
||||||
SuspendLayout();
|
SuspendLayout();
|
||||||
//
|
//
|
||||||
// button1
|
|
||||||
//
|
|
||||||
button1.Location = new Point(427, 187);
|
|
||||||
button1.Name = "button1";
|
|
||||||
button1.Size = new Size(75, 23);
|
|
||||||
button1.TabIndex = 0;
|
|
||||||
button1.Text = "button1";
|
|
||||||
button1.UseVisualStyleBackColor = true;
|
|
||||||
button1.Click += button1_Click;
|
|
||||||
//
|
|
||||||
// FrmMain
|
// FrmMain
|
||||||
//
|
//
|
||||||
AutoScaleDimensions = new SizeF(7F, 15F);
|
AutoScaleDimensions = new SizeF(7F, 15F);
|
||||||
|
|||||||
@ -21,93 +21,96 @@ namespace WinFormsApp1
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
|
|
||||||
private async void button1_Click(object sender, EventArgs e)
|
//SICHERUNG
|
||||||
{
|
//private async void button1_Click(object sender, EventArgs e)
|
||||||
string connectionString = "Server=192.168.178.201;Database=domainchecker;User ID=root;Password=1td5rugut8;";
|
//{
|
||||||
|
// string connectionString = "Server=192.168.178.201;Database=domainchecker;User ID=root;Password=1td5rugut8;";
|
||||||
|
|
||||||
try
|
// try
|
||||||
{
|
// {
|
||||||
using (MySqlConnection conn = new MySqlConnection(connectionString))
|
// using (MySqlConnection conn = new MySqlConnection(connectionString))
|
||||||
{
|
// {
|
||||||
await conn.OpenAsync();
|
// await conn.OpenAsync();
|
||||||
|
|
||||||
string query = "SELECT domain FROM domains";
|
// string query = "SELECT webseite FROM webCrawler";
|
||||||
MySqlCommand cmd = new MySqlCommand(query, conn);
|
// MySqlCommand cmd = new MySqlCommand(query, conn);
|
||||||
|
|
||||||
using (DbDataReader reader = await cmd.ExecuteReaderAsync())
|
// using (DbDataReader reader = await cmd.ExecuteReaderAsync())
|
||||||
{
|
// {
|
||||||
while (await reader.ReadAsync())
|
// while (await reader.ReadAsync())
|
||||||
{
|
// {
|
||||||
string domain = reader.GetString("domain");
|
// string domain = reader.GetString("webseite");
|
||||||
string version = await GetWordPressVersionAsync(domain);
|
// string version = await GetWordPressVersionAsync(domain);
|
||||||
|
|
||||||
if (version != null)
|
// if (version != null)
|
||||||
{
|
// {
|
||||||
using (MySqlConnection insertConn = new MySqlConnection(connectionString))
|
// using (MySqlConnection insertConn = new MySqlConnection(connectionString))
|
||||||
{
|
// {
|
||||||
await insertConn.OpenAsync();
|
// await insertConn.OpenAsync();
|
||||||
await InsertOrUpdateVersionAsync(insertConn, domain, version);
|
// await InsertOrUpdateVersionAsync(insertConn, domain, version);
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
else
|
// else
|
||||||
{
|
// {
|
||||||
//Nothing
|
// //Nothing
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
// Console.Beep();
|
||||||
}
|
// MessageBox.Show("Fertig");
|
||||||
}
|
// }
|
||||||
catch (Exception ex)
|
// }
|
||||||
{
|
// }
|
||||||
Console.WriteLine($"Fehler: {ex.Message}\r\n");
|
// catch (Exception ex)
|
||||||
}
|
// {
|
||||||
}
|
// Console.WriteLine($"Fehler: {ex.Message}\r\n");
|
||||||
|
// }
|
||||||
|
//}
|
||||||
|
|
||||||
private async Task<string> GetWordPressVersionAsync(string url)
|
//private async Task<string> GetWordPressVersionAsync(string url)
|
||||||
{
|
//{
|
||||||
using (HttpClient client = new HttpClient())
|
// using (HttpClient client = new HttpClient())
|
||||||
{
|
// {
|
||||||
try
|
// try
|
||||||
{
|
// {
|
||||||
string html = await client.GetStringAsync("https://" + url);
|
// string html = await client.GetStringAsync("https://" + url);
|
||||||
|
|
||||||
Regex regex = new Regex(@"<meta name=""generator"" content=""WordPress (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
// Regex regex = new Regex(@"<meta name=""generator"" content=""WordPress (\d+\.\d+(?:\.\d+)?)""", RegexOptions.IgnoreCase);
|
||||||
Match match = regex.Match(html);
|
// Match match = regex.Match(html);
|
||||||
|
|
||||||
return match.Success ? match.Groups[1].Value : null;
|
// return match.Success ? match.Groups[1].Value : null;
|
||||||
}
|
// }
|
||||||
catch (Exception ex)
|
// catch (Exception ex)
|
||||||
{
|
// {
|
||||||
return null;
|
// return null;
|
||||||
}
|
// }
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
|
|
||||||
private async Task InsertOrUpdateVersionAsync(MySqlConnection conn, string domain, string version)
|
//private async Task InsertOrUpdateVersionAsync(MySqlConnection conn, string domain, string version)
|
||||||
{
|
//{
|
||||||
string checkQuery = "SELECT COUNT(*) FROM wp_versionen WHERE domain = @domain";
|
// string checkQuery = "SELECT COUNT(*) FROM wp_versionen WHERE domain = @domain";
|
||||||
MySqlCommand checkCmd = new MySqlCommand(checkQuery, conn);
|
// MySqlCommand checkCmd = new MySqlCommand(checkQuery, conn);
|
||||||
checkCmd.Parameters.AddWithValue("@domain", domain);
|
// checkCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
int count = Convert.ToInt32(await checkCmd.ExecuteScalarAsync());
|
// int count = Convert.ToInt32(await checkCmd.ExecuteScalarAsync());
|
||||||
DateTime letzte_pruefung = DateTime.Now;
|
// DateTime letzte_pruefung = DateTime.Now;
|
||||||
if (count > 0)
|
// if (count > 0)
|
||||||
{
|
// {
|
||||||
string updateQuery = "UPDATE wp_versionen SET version = @version, letzte_pruefung = @letzte_pruefung WHERE domain = @domain";
|
// string updateQuery = "UPDATE wp_versionen SET version = @version, letzte_pruefung = @letzte_pruefung WHERE domain = @domain";
|
||||||
MySqlCommand updateCmd = new MySqlCommand(updateQuery, conn);
|
// MySqlCommand updateCmd = new MySqlCommand(updateQuery, conn);
|
||||||
updateCmd.Parameters.AddWithValue("@domain", domain);
|
// updateCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
updateCmd.Parameters.AddWithValue("@version", version);
|
// updateCmd.Parameters.AddWithValue("@version", version);
|
||||||
updateCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
// updateCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
||||||
await updateCmd.ExecuteNonQueryAsync();
|
// await updateCmd.ExecuteNonQueryAsync();
|
||||||
}
|
// }
|
||||||
else
|
// else
|
||||||
{
|
// {
|
||||||
string insertQuery = "INSERT INTO wp_versionen (domain, version, letzte_pruefung) VALUES (@domain, @version, @letzte_pruefung)";
|
// string insertQuery = "INSERT INTO wp_versionen (domain, version, letzte_pruefung) VALUES (@domain, @version, @letzte_pruefung)";
|
||||||
MySqlCommand insertCmd = new MySqlCommand(insertQuery, conn);
|
// MySqlCommand insertCmd = new MySqlCommand(insertQuery, conn);
|
||||||
insertCmd.Parameters.AddWithValue("@domain", domain);
|
// insertCmd.Parameters.AddWithValue("@domain", domain);
|
||||||
insertCmd.Parameters.AddWithValue("@version", version);
|
// insertCmd.Parameters.AddWithValue("@version", version);
|
||||||
insertCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
// insertCmd.Parameters.AddWithValue("@letzte_pruefung", letzte_pruefung);
|
||||||
await insertCmd.ExecuteNonQueryAsync();
|
// await insertCmd.ExecuteNonQueryAsync();
|
||||||
}
|
// }
|
||||||
}
|
//}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -10,6 +10,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="MySql.Data" Version="9.0.0" />
|
<PackageReference Include="MySql.Data" Version="9.0.0" />
|
||||||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
BIN
WinFormsApp1/bin/Debug/net8.0-windows/Newtonsoft.Json.dll
Normal file
BIN
WinFormsApp1/bin/Debug/net8.0-windows/Newtonsoft.Json.dll
Normal file
Binary file not shown.
@ -8,7 +8,8 @@
|
|||||||
".NETCoreApp,Version=v8.0": {
|
".NETCoreApp,Version=v8.0": {
|
||||||
"WinFormsApp1/1.0.0": {
|
"WinFormsApp1/1.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"MySql.Data": "9.0.0"
|
"MySql.Data": "9.0.0",
|
||||||
|
"Newtonsoft.Json": "13.0.3"
|
||||||
},
|
},
|
||||||
"runtime": {
|
"runtime": {
|
||||||
"WinFormsApp1.dll": {}
|
"WinFormsApp1.dll": {}
|
||||||
@ -111,6 +112,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"assemblyVersion": "13.0.0.0",
|
||||||
|
"fileVersion": "13.0.3.27908"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {},
|
"System.Buffers/4.5.1": {},
|
||||||
"System.Configuration.ConfigurationManager/8.0.0": {
|
"System.Configuration.ConfigurationManager/8.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -268,6 +277,13 @@
|
|||||||
"path": "mysql.data/9.0.0",
|
"path": "mysql.data/9.0.0",
|
||||||
"hashPath": "mysql.data.9.0.0.nupkg.sha512"
|
"hashPath": "mysql.data.9.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||||
|
"path": "newtonsoft.json/13.0.3",
|
||||||
|
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {
|
"System.Buffers/4.5.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/Google.Protobuf.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/Google.Protobuf.dll
Normal file
Binary file not shown.
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/K4os.Compression.LZ4.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/K4os.Compression.LZ4.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/K4os.Hash.xxHash.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/K4os.Hash.xxHash.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/MySql.Data.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/MySql.Data.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/Newtonsoft.Json.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/Newtonsoft.Json.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/System.IO.Pipelines.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/System.IO.Pipelines.dll
Normal file
Binary file not shown.
435
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.deps.json
Normal file
435
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.deps.json
Normal file
@ -0,0 +1,435 @@
|
|||||||
|
{
|
||||||
|
"runtimeTarget": {
|
||||||
|
"name": ".NETCoreApp,Version=v8.0",
|
||||||
|
"signature": ""
|
||||||
|
},
|
||||||
|
"compilationOptions": {},
|
||||||
|
"targets": {
|
||||||
|
".NETCoreApp,Version=v8.0": {
|
||||||
|
"WinFormsApp1/1.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"MySql.Data": "9.0.0",
|
||||||
|
"Newtonsoft.Json": "13.0.3"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"WinFormsApp1.dll": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"BouncyCastle.Cryptography/2.3.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/BouncyCastle.Cryptography.dll": {
|
||||||
|
"assemblyVersion": "2.0.0.0",
|
||||||
|
"fileVersion": "2.3.1.17862"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Google.Protobuf/3.26.1": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net5.0/Google.Protobuf.dll": {
|
||||||
|
"assemblyVersion": "3.26.1.0",
|
||||||
|
"fileVersion": "3.26.1.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4/1.3.8": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/K4os.Compression.LZ4.dll": {
|
||||||
|
"assemblyVersion": "1.3.8.0",
|
||||||
|
"fileVersion": "1.3.8.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4.Streams/1.3.8": {
|
||||||
|
"dependencies": {
|
||||||
|
"K4os.Compression.LZ4": "1.3.8",
|
||||||
|
"K4os.Hash.xxHash": "1.0.8",
|
||||||
|
"System.IO.Pipelines": "6.0.3"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/K4os.Compression.LZ4.Streams.dll": {
|
||||||
|
"assemblyVersion": "1.3.8.0",
|
||||||
|
"fileVersion": "1.3.8.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"K4os.Hash.xxHash/1.0.8": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/K4os.Hash.xxHash.dll": {
|
||||||
|
"assemblyVersion": "1.0.8.0",
|
||||||
|
"fileVersion": "1.0.8.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/1.1.0": {},
|
||||||
|
"Microsoft.NETCore.Targets/1.1.0": {},
|
||||||
|
"MySql.Data/9.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"BouncyCastle.Cryptography": "2.3.1",
|
||||||
|
"Google.Protobuf": "3.26.1",
|
||||||
|
"K4os.Compression.LZ4.Streams": "1.3.8",
|
||||||
|
"System.Buffers": "4.5.1",
|
||||||
|
"System.Configuration.ConfigurationManager": "8.0.0",
|
||||||
|
"System.Diagnostics.DiagnosticSource": "8.0.1",
|
||||||
|
"System.Runtime.CompilerServices.Unsafe": "6.0.0",
|
||||||
|
"System.Runtime.Loader": "4.3.0",
|
||||||
|
"System.Security.Permissions": "8.0.0",
|
||||||
|
"System.Text.Encoding.CodePages": "8.0.0",
|
||||||
|
"System.Text.Json": "8.0.3",
|
||||||
|
"System.Threading.Tasks.Extensions": "4.5.4",
|
||||||
|
"ZstdSharp.Port": "0.8.0"
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/MySql.Data.dll": {
|
||||||
|
"assemblyVersion": "9.0.0.0",
|
||||||
|
"fileVersion": "9.0.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtimeTargets": {
|
||||||
|
"runtimes/win-x64/native/comerr64.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.1.0.0"
|
||||||
|
},
|
||||||
|
"runtimes/win-x64/native/gssapi64.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.1.0.0"
|
||||||
|
},
|
||||||
|
"runtimes/win-x64/native/k5sprt64.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.1.0.0"
|
||||||
|
},
|
||||||
|
"runtimes/win-x64/native/krb5_64.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.1.0.0"
|
||||||
|
},
|
||||||
|
"runtimes/win-x64/native/krbcc64.dll": {
|
||||||
|
"rid": "win-x64",
|
||||||
|
"assetType": "native",
|
||||||
|
"fileVersion": "4.1.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"assemblyVersion": "13.0.0.0",
|
||||||
|
"fileVersion": "13.0.3.27908"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Buffers/4.5.1": {},
|
||||||
|
"System.Configuration.ConfigurationManager/8.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Diagnostics.EventLog": "8.0.0",
|
||||||
|
"System.Security.Cryptography.ProtectedData": "8.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Diagnostics.DiagnosticSource/8.0.1": {},
|
||||||
|
"System.Diagnostics.EventLog/8.0.0": {},
|
||||||
|
"System.IO/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0",
|
||||||
|
"System.Runtime": "4.3.0",
|
||||||
|
"System.Text.Encoding": "4.3.0",
|
||||||
|
"System.Threading.Tasks": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.IO.Pipelines/6.0.3": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/System.IO.Pipelines.dll": {
|
||||||
|
"assemblyVersion": "6.0.0.0",
|
||||||
|
"fileVersion": "6.0.522.21309"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Reflection/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0",
|
||||||
|
"System.IO": "4.3.0",
|
||||||
|
"System.Reflection.Primitives": "4.3.0",
|
||||||
|
"System.Runtime": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Reflection.Primitives/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0",
|
||||||
|
"System.Runtime": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {},
|
||||||
|
"System.Runtime.Loader/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.IO": "4.3.0",
|
||||||
|
"System.Reflection": "4.3.0",
|
||||||
|
"System.Runtime": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Security.Cryptography.ProtectedData/8.0.0": {},
|
||||||
|
"System.Security.Permissions/8.0.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Windows.Extensions": "8.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Text.Encoding/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0",
|
||||||
|
"System.Runtime": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Text.Encoding.CodePages/8.0.0": {},
|
||||||
|
"System.Text.Encodings.Web/8.0.0": {},
|
||||||
|
"System.Text.Json/8.0.3": {
|
||||||
|
"dependencies": {
|
||||||
|
"System.Text.Encodings.Web": "8.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Threading.Tasks/4.3.0": {
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.NETCore.Platforms": "1.1.0",
|
||||||
|
"Microsoft.NETCore.Targets": "1.1.0",
|
||||||
|
"System.Runtime": "4.3.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"System.Threading.Tasks.Extensions/4.5.4": {},
|
||||||
|
"System.Windows.Extensions/8.0.0": {},
|
||||||
|
"ZstdSharp.Port/0.8.0": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net8.0/ZstdSharp.dll": {
|
||||||
|
"assemblyVersion": "0.8.0.0",
|
||||||
|
"fileVersion": "0.8.0.0"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"libraries": {
|
||||||
|
"WinFormsApp1/1.0.0": {
|
||||||
|
"type": "project",
|
||||||
|
"serviceable": false,
|
||||||
|
"sha512": ""
|
||||||
|
},
|
||||||
|
"BouncyCastle.Cryptography/2.3.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-buwoISwecYke3CmgG1AQSg+sNZjJeIb93vTAtJiHZX35hP/teYMxsfg0NDXGUKjGx6BKBTNKc77O2M3vKvlXZQ==",
|
||||||
|
"path": "bouncycastle.cryptography/2.3.1",
|
||||||
|
"hashPath": "bouncycastle.cryptography.2.3.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Google.Protobuf/3.26.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-CHZX8zXqhF/fdUtd+AYzew8T2HFkAoe5c7lbGxZY/qryAlQXckDvM5BfOJjXlMS7kyICqQTMszj4w1bX5uBJ/w==",
|
||||||
|
"path": "google.protobuf/3.26.1",
|
||||||
|
"hashPath": "google.protobuf.3.26.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4/1.3.8": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-LhwlPa7c1zs1OV2XadMtAWdImjLIsqFJPoRcIWAadSRn0Ri1DepK65UbWLPmt4riLqx2d40xjXRk0ogpqNtK7g==",
|
||||||
|
"path": "k4os.compression.lz4/1.3.8",
|
||||||
|
"hashPath": "k4os.compression.lz4.1.3.8.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"K4os.Compression.LZ4.Streams/1.3.8": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-P15qr8dZAeo9GvYbUIPEYFQ0MEJ0i5iqr37wsYeRC3la2uCldOoeCa6to0CZ1taiwxIV+Mk8NGuZi+4iWivK9w==",
|
||||||
|
"path": "k4os.compression.lz4.streams/1.3.8",
|
||||||
|
"hashPath": "k4os.compression.lz4.streams.1.3.8.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"K4os.Hash.xxHash/1.0.8": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Wp2F7BamQ2Q/7Hk834nV9vRQapgcr8kgv9Jvfm8J3D0IhDqZMMl+a2yxUq5ltJitvXvQfB8W6K4F4fCbw/P6YQ==",
|
||||||
|
"path": "k4os.hash.xxhash/1.0.8",
|
||||||
|
"hashPath": "k4os.hash.xxhash.1.0.8.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Platforms/1.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
|
||||||
|
"path": "microsoft.netcore.platforms/1.1.0",
|
||||||
|
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Microsoft.NETCore.Targets/1.1.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==",
|
||||||
|
"path": "microsoft.netcore.targets/1.1.0",
|
||||||
|
"hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"MySql.Data/9.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-YT2/fdDy3FBx5ZK0qsupEs9Gt0iFo/mZR+ND5cJwrr+6xguAOXyYpYUbEj27UcLZER5InOUrJQYyUaPIDil2Xw==",
|
||||||
|
"path": "mysql.data/9.0.0",
|
||||||
|
"hashPath": "mysql.data.9.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||||
|
"path": "newtonsoft.json/13.0.3",
|
||||||
|
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Buffers/4.5.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||||
|
"path": "system.buffers/4.5.1",
|
||||||
|
"hashPath": "system.buffers.4.5.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Configuration.ConfigurationManager/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-JlYi9XVvIREURRUlGMr1F6vOFLk7YSY4p1vHo4kX3tQ0AGrjqlRWHDi66ImHhy6qwXBG3BJ6Y1QlYQ+Qz6Xgww==",
|
||||||
|
"path": "system.configuration.configurationmanager/8.0.0",
|
||||||
|
"hashPath": "system.configuration.configurationmanager.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Diagnostics.DiagnosticSource/8.0.1": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-vaoWjvkG1aenR2XdjaVivlCV9fADfgyhW5bZtXT23qaEea0lWiUljdQuze4E31vKM7ZWJaSUsbYIKE3rnzfZUg==",
|
||||||
|
"path": "system.diagnostics.diagnosticsource/8.0.1",
|
||||||
|
"hashPath": "system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Diagnostics.EventLog/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==",
|
||||||
|
"path": "system.diagnostics.eventlog/8.0.0",
|
||||||
|
"hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.IO/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==",
|
||||||
|
"path": "system.io/4.3.0",
|
||||||
|
"hashPath": "system.io.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.IO.Pipelines/6.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-ryTgF+iFkpGZY1vRQhfCzX0xTdlV3pyaTTqRu2ETbEv+HlV7O6y7hyQURnghNIXvctl5DuZ//Dpks6HdL/Txgw==",
|
||||||
|
"path": "system.io.pipelines/6.0.3",
|
||||||
|
"hashPath": "system.io.pipelines.6.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Reflection/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==",
|
||||||
|
"path": "system.reflection/4.3.0",
|
||||||
|
"hashPath": "system.reflection.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Reflection.Primitives/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==",
|
||||||
|
"path": "system.reflection.primitives/4.3.0",
|
||||||
|
"hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==",
|
||||||
|
"path": "system.runtime/4.3.0",
|
||||||
|
"hashPath": "system.runtime.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.CompilerServices.Unsafe/6.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==",
|
||||||
|
"path": "system.runtime.compilerservices.unsafe/6.0.0",
|
||||||
|
"hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Runtime.Loader/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-DHMaRn8D8YCK2GG2pw+UzNxn/OHVfaWx7OTLBD/hPegHZZgcZh3H6seWegrC4BYwsfuGrywIuT+MQs+rPqRLTQ==",
|
||||||
|
"path": "system.runtime.loader/4.3.0",
|
||||||
|
"hashPath": "system.runtime.loader.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.Cryptography.ProtectedData/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-+TUFINV2q2ifyXauQXRwy4CiBhqvDEDZeVJU7qfxya4aRYOKzVBpN+4acx25VcPB9ywUN6C0n8drWl110PhZEg==",
|
||||||
|
"path": "system.security.cryptography.protecteddata/8.0.0",
|
||||||
|
"hashPath": "system.security.cryptography.protecteddata.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Security.Permissions/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-v/BBylw7XevuAsHXoX9dDUUfmBIcUf7Lkz8K3ZXIKz3YRKpw8YftpSir4n4e/jDTKFoaK37AsC3xnk+GNFI1Ow==",
|
||||||
|
"path": "system.security.permissions/8.0.0",
|
||||||
|
"hashPath": "system.security.permissions.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Text.Encoding/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==",
|
||||||
|
"path": "system.text.encoding/4.3.0",
|
||||||
|
"hashPath": "system.text.encoding.4.3.0.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"
|
||||||
|
},
|
||||||
|
"System.Text.Encodings.Web/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==",
|
||||||
|
"path": "system.text.encodings.web/8.0.0",
|
||||||
|
"hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Text.Json/8.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-hpagS9joOwv6efWfrMmV9MjQXpiXZH72PgN067Ysfr6AWMSD1/1hEcvh/U5mUpPLezEWsOJSuVrmqDIVD958iA==",
|
||||||
|
"path": "system.text.json/8.0.3",
|
||||||
|
"hashPath": "system.text.json.8.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Threading.Tasks/4.3.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==",
|
||||||
|
"path": "system.threading.tasks/4.3.0",
|
||||||
|
"hashPath": "system.threading.tasks.4.3.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Threading.Tasks.Extensions/4.5.4": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==",
|
||||||
|
"path": "system.threading.tasks.extensions/4.5.4",
|
||||||
|
"hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"System.Windows.Extensions/8.0.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Obg3a90MkOw9mYKxrardLpY2u0axDMrSmy4JCdq2cYbelM2cUwmUir5Bomvd1yxmPL9h5LVHU1tuKBZpUjfASg==",
|
||||||
|
"path": "system.windows.extensions/8.0.0",
|
||||||
|
"hashPath": "system.windows.extensions.8.0.0.nupkg.sha512"
|
||||||
|
},
|
||||||
|
"ZstdSharp.Port/0.8.0": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-Z62eNBIu8E8YtbqlMy57tK3dV1+m2b9NhPeaYovB5exmLKvrGCqOhJTzrEUH5VyUWU6vwX3c1XHJGhW5HVs8dA==",
|
||||||
|
"path": "zstdsharp.port/0.8.0",
|
||||||
|
"hashPath": "zstdsharp.port.0.8.0.nupkg.sha512"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.exe
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.exe
Normal file
Binary file not shown.
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.pdb
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/WinFormsApp1.pdb
Normal file
Binary file not shown.
@ -0,0 +1,19 @@
|
|||||||
|
{
|
||||||
|
"runtimeOptions": {
|
||||||
|
"tfm": "net8.0",
|
||||||
|
"frameworks": [
|
||||||
|
{
|
||||||
|
"name": "Microsoft.NETCore.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Microsoft.WindowsDesktop.App",
|
||||||
|
"version": "8.0.0"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"configProperties": {
|
||||||
|
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
||||||
|
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
BIN
WinFormsApp1/bin/Release/net8.0-windows/ZstdSharp.dll
Normal file
BIN
WinFormsApp1/bin/Release/net8.0-windows/ZstdSharp.dll
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -14,7 +14,7 @@ using System.Reflection;
|
|||||||
[assembly: System.Reflection.AssemblyCompanyAttribute("WinFormsApp1")]
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WinFormsApp1")]
|
||||||
[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")]
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c664257bf3ceb040fae375767d602ba508c50fa6")]
|
||||||
[assembly: System.Reflection.AssemblyProductAttribute("WinFormsApp1")]
|
[assembly: System.Reflection.AssemblyProductAttribute("WinFormsApp1")]
|
||||||
[assembly: System.Reflection.AssemblyTitleAttribute("WinFormsApp1")]
|
[assembly: System.Reflection.AssemblyTitleAttribute("WinFormsApp1")]
|
||||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
|||||||
@ -1 +1 @@
|
|||||||
2bcf68880bd458dfd364bcaae83ad625e658d10a66e4b65c8f69001bc00383da
|
8d38b55b34c8db320955338589cce3d8fe1dd8c225bfc0746e87e59a3fc1edf0
|
||||||
|
|||||||
@ -14,6 +14,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 = WinFormsApp1
|
build_property.RootNamespace = WinFormsApp1
|
||||||
build_property.ProjectDir = D:\Programmierbude2\WordpressVersionAuslesen\WinFormsApp1\
|
build_property.ProjectDir = D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\
|
||||||
build_property.EnableComHosting =
|
build_property.EnableComHosting =
|
||||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
|||||||
cd3ccf484a9835a9be7b18ab914961c926f24f7eea1a55a54c5fd0c8cebba67b
|
3c17d6108add73a78920b793d7c81087d7a2d0168097382fc5920789d9c5ad2e
|
||||||
|
|||||||
@ -30,3 +30,4 @@ D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Debug\net8.0-window
|
|||||||
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Debug\net8.0-windows\runtimes\win-x64\native\krbcc64.dll
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Debug\net8.0-windows\runtimes\win-x64\native\krbcc64.dll
|
||||||
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Debug\net8.0-windows\WinFormsApp1.FrmMain.resources
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Debug\net8.0-windows\WinFormsApp1.FrmMain.resources
|
||||||
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Debug\net8.0-windows\WinForms.E4050A35.Up2Date
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Debug\net8.0-windows\WinForms.E4050A35.Up2Date
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Debug\net8.0-windows\Newtonsoft.Json.dll
|
||||||
|
|||||||
Binary file not shown.
@ -103,6 +103,14 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"assemblyVersion": "13.0.0.0",
|
||||||
|
"fileVersion": "13.0.3.27908"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {},
|
"System.Buffers/4.5.1": {},
|
||||||
"System.Configuration.ConfigurationManager/8.0.0": {
|
"System.Configuration.ConfigurationManager/8.0.0": {
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
@ -366,6 +374,13 @@
|
|||||||
"path": "mysql.data/9.0.0",
|
"path": "mysql.data/9.0.0",
|
||||||
"hashPath": "mysql.data.9.0.0.nupkg.sha512"
|
"hashPath": "mysql.data.9.0.0.nupkg.sha512"
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"serviceable": true,
|
||||||
|
"sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||||
|
"path": "newtonsoft.json/13.0.3",
|
||||||
|
"hashPath": "newtonsoft.json.13.0.3.nupkg.sha512"
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {
|
"System.Buffers/4.5.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"serviceable": true,
|
"serviceable": true,
|
||||||
|
|||||||
@ -14,6 +14,7 @@
|
|||||||
"additionalProbingPaths": [
|
"additionalProbingPaths": [
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.dotnet\\store\\|arch|\\|tfm|",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.dotnet\\store\\|arch|\\|tfm|",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages",
|
||||||
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||||
],
|
],
|
||||||
"configProperties": {
|
"configProperties": {
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,4 @@
|
|||||||
|
// <autogenerated />
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")]
|
||||||
@ -0,0 +1,25 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
|
// Laufzeitversion:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
|
// der Code erneut generiert wird.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Reflection;
|
||||||
|
|
||||||
|
[assembly: System.Reflection.AssemblyCompanyAttribute("WinFormsApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
|
||||||
|
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c664257bf3ceb040fae375767d602ba508c50fa6")]
|
||||||
|
[assembly: System.Reflection.AssemblyProductAttribute("WinFormsApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyTitleAttribute("WinFormsApp1")]
|
||||||
|
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
|
||||||
|
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
|
||||||
|
|
||||||
|
// Von der MSBuild WriteCodeFragment-Klasse generiert.
|
||||||
|
|
||||||
@ -0,0 +1 @@
|
|||||||
|
b22f34aeeb47b00ade43fdff937a96d780b4b381db8e6890f7041b9810688f22
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,19 @@
|
|||||||
|
is_global = true
|
||||||
|
build_property.ApplicationManifest =
|
||||||
|
build_property.StartupObject =
|
||||||
|
build_property.ApplicationDefaultFont =
|
||||||
|
build_property.ApplicationHighDpiMode =
|
||||||
|
build_property.ApplicationUseCompatibleTextRendering =
|
||||||
|
build_property.ApplicationVisualStyles =
|
||||||
|
build_property.TargetFramework = net8.0-windows
|
||||||
|
build_property.TargetPlatformMinVersion = 7.0
|
||||||
|
build_property.UsingMicrosoftNETSdkWeb =
|
||||||
|
build_property.ProjectTypeGuids =
|
||||||
|
build_property.InvariantGlobalization =
|
||||||
|
build_property.PlatformNeutralAssembly =
|
||||||
|
build_property.EnforceExtendedAnalyzerRules =
|
||||||
|
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||||
|
build_property.RootNamespace = WinFormsApp1
|
||||||
|
build_property.ProjectDir = D:\Programmierbude\WordpressVersionAuslesen_Neu\WinFormsApp1\
|
||||||
|
build_property.EnableComHosting =
|
||||||
|
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||||
@ -0,0 +1,10 @@
|
|||||||
|
// <auto-generated/>
|
||||||
|
global using global::System;
|
||||||
|
global using global::System.Collections.Generic;
|
||||||
|
global using global::System.Drawing;
|
||||||
|
global using global::System.IO;
|
||||||
|
global using global::System.Linq;
|
||||||
|
global using global::System.Net.Http;
|
||||||
|
global using global::System.Threading;
|
||||||
|
global using global::System.Threading.Tasks;
|
||||||
|
global using global::System.Windows.Forms;
|
||||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
cb70e6912f0e0fdc5bcfbdc38ff4f7272a1aba438873b34b2d53e591e69b7ba4
|
||||||
@ -0,0 +1,33 @@
|
|||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\WinFormsApp1.exe
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\WinFormsApp1.deps.json
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\WinFormsApp1.runtimeconfig.json
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\WinFormsApp1.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\WinFormsApp1.pdb
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\BouncyCastle.Cryptography.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\Google.Protobuf.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\K4os.Compression.LZ4.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\K4os.Compression.LZ4.Streams.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\K4os.Hash.xxHash.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\MySql.Data.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\Newtonsoft.Json.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\System.IO.Pipelines.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\ZstdSharp.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\runtimes\win-x64\native\comerr64.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\runtimes\win-x64\native\gssapi64.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\runtimes\win-x64\native\k5sprt64.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\runtimes\win-x64\native\krb5_64.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\bin\Release\net8.0-windows\runtimes\win-x64\native\krbcc64.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.csproj.AssemblyReference.cache
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.Form1.resources
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.FrmMain.resources
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.csproj.GenerateResource.cache
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.GeneratedMSBuildEditorConfig.editorconfig
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.AssemblyInfoInputs.cache
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.AssemblyInfo.cs
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.csproj.CoreCompileInputs.cache
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinForms.E4050A35.Up2Date
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\refint\WinFormsApp1.dll
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.pdb
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\WinFormsApp1.genruntimeconfig.cache
|
||||||
|
D:\Programmierbude\WordpressVersionAuslesen\WinFormsApp1\obj\Release\net8.0-windows\ref\WinFormsApp1.dll
|
||||||
Binary file not shown.
BIN
WinFormsApp1/obj/Release/net8.0-windows/WinFormsApp1.dll
Normal file
BIN
WinFormsApp1/obj/Release/net8.0-windows/WinFormsApp1.dll
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
935ed072a7a806ccf9cb161960bebba54d10e860242efdb497f5f973801471d2
|
||||||
BIN
WinFormsApp1/obj/Release/net8.0-windows/WinFormsApp1.pdb
Normal file
BIN
WinFormsApp1/obj/Release/net8.0-windows/WinFormsApp1.pdb
Normal file
Binary file not shown.
BIN
WinFormsApp1/obj/Release/net8.0-windows/apphost.exe
Normal file
BIN
WinFormsApp1/obj/Release/net8.0-windows/apphost.exe
Normal file
Binary file not shown.
BIN
WinFormsApp1/obj/Release/net8.0-windows/ref/WinFormsApp1.dll
Normal file
BIN
WinFormsApp1/obj/Release/net8.0-windows/ref/WinFormsApp1.dll
Normal file
Binary file not shown.
BIN
WinFormsApp1/obj/Release/net8.0-windows/refint/WinFormsApp1.dll
Normal file
BIN
WinFormsApp1/obj/Release/net8.0-windows/refint/WinFormsApp1.dll
Normal file
Binary file not shown.
@ -1,17 +1,17 @@
|
|||||||
{
|
{
|
||||||
"format": 1,
|
"format": 1,
|
||||||
"restore": {
|
"restore": {
|
||||||
"D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj": {}
|
"D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj": {}
|
||||||
},
|
},
|
||||||
"projects": {
|
"projects": {
|
||||||
"D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj": {
|
"D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj",
|
"projectUniqueName": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj",
|
||||||
"projectName": "WinFormsApp1",
|
"projectName": "WinFormsApp1",
|
||||||
"projectPath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj",
|
"projectPath": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj",
|
||||||
"packagesPath": "C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\",
|
||||||
"outputPath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\obj\\",
|
"outputPath": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
@ -55,6 +55,10 @@
|
|||||||
"MySql.Data": {
|
"MySql.Data": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[9.0.0, )"
|
"version": "[9.0.0, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.3, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imports": [
|
"imports": [
|
||||||
|
|||||||
@ -140,6 +140,19 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"type": "package",
|
||||||
|
"compile": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"runtime": {
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll": {
|
||||||
|
"related": ".xml"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {
|
"System.Buffers/4.5.1": {
|
||||||
"type": "package",
|
"type": "package",
|
||||||
"compile": {
|
"compile": {
|
||||||
@ -644,6 +657,36 @@
|
|||||||
"runtimes/win-x64/native/krbcc64.dll"
|
"runtimes/win-x64/native/krbcc64.dll"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"Newtonsoft.Json/13.0.3": {
|
||||||
|
"sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==",
|
||||||
|
"type": "package",
|
||||||
|
"path": "newtonsoft.json/13.0.3",
|
||||||
|
"files": [
|
||||||
|
".nupkg.metadata",
|
||||||
|
".signature.p7s",
|
||||||
|
"LICENSE.md",
|
||||||
|
"README.md",
|
||||||
|
"lib/net20/Newtonsoft.Json.dll",
|
||||||
|
"lib/net20/Newtonsoft.Json.xml",
|
||||||
|
"lib/net35/Newtonsoft.Json.dll",
|
||||||
|
"lib/net35/Newtonsoft.Json.xml",
|
||||||
|
"lib/net40/Newtonsoft.Json.dll",
|
||||||
|
"lib/net40/Newtonsoft.Json.xml",
|
||||||
|
"lib/net45/Newtonsoft.Json.dll",
|
||||||
|
"lib/net45/Newtonsoft.Json.xml",
|
||||||
|
"lib/net6.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/net6.0/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard1.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard1.0/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard1.3/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard1.3/Newtonsoft.Json.xml",
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.dll",
|
||||||
|
"lib/netstandard2.0/Newtonsoft.Json.xml",
|
||||||
|
"newtonsoft.json.13.0.3.nupkg.sha512",
|
||||||
|
"newtonsoft.json.nuspec",
|
||||||
|
"packageIcon.png"
|
||||||
|
]
|
||||||
|
},
|
||||||
"System.Buffers/4.5.1": {
|
"System.Buffers/4.5.1": {
|
||||||
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
"sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==",
|
||||||
"type": "package",
|
"type": "package",
|
||||||
@ -1603,7 +1646,8 @@
|
|||||||
},
|
},
|
||||||
"projectFileDependencyGroups": {
|
"projectFileDependencyGroups": {
|
||||||
"net8.0-windows7.0": [
|
"net8.0-windows7.0": [
|
||||||
"MySql.Data >= 9.0.0"
|
"MySql.Data >= 9.0.0",
|
||||||
|
"Newtonsoft.Json >= 13.0.3"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"packageFolders": {
|
"packageFolders": {
|
||||||
@ -1614,11 +1658,11 @@
|
|||||||
"project": {
|
"project": {
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"restore": {
|
"restore": {
|
||||||
"projectUniqueName": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj",
|
"projectUniqueName": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj",
|
||||||
"projectName": "WinFormsApp1",
|
"projectName": "WinFormsApp1",
|
||||||
"projectPath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj",
|
"projectPath": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj",
|
||||||
"packagesPath": "C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\",
|
"packagesPath": "C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\",
|
||||||
"outputPath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\obj\\",
|
"outputPath": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\obj\\",
|
||||||
"projectStyle": "PackageReference",
|
"projectStyle": "PackageReference",
|
||||||
"fallbackFolders": [
|
"fallbackFolders": [
|
||||||
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
"C:\\Program Files\\DevExpress 22.2\\Components\\Offline Packages",
|
||||||
@ -1662,6 +1706,10 @@
|
|||||||
"MySql.Data": {
|
"MySql.Data": {
|
||||||
"target": "Package",
|
"target": "Package",
|
||||||
"version": "[9.0.0, )"
|
"version": "[9.0.0, )"
|
||||||
|
},
|
||||||
|
"Newtonsoft.Json": {
|
||||||
|
"target": "Package",
|
||||||
|
"version": "[13.0.3, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"imports": [
|
"imports": [
|
||||||
|
|||||||
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"version": 2,
|
"version": 2,
|
||||||
"dgSpecHash": "v3P+nBvmahI=",
|
"dgSpecHash": "NZbhM5KMpbQ=",
|
||||||
"success": true,
|
"success": true,
|
||||||
"projectFilePath": "D:\\Programmierbude2\\WordpressVersionAuslesen\\WinFormsApp1\\WinFormsApp1.csproj",
|
"projectFilePath": "D:\\Programmierbude\\WordpressVersionAuslesen_Neu\\WinFormsApp1\\WinFormsApp1.csproj",
|
||||||
"expectedPackageFiles": [
|
"expectedPackageFiles": [
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\bouncycastle.cryptography\\2.3.1\\bouncycastle.cryptography.2.3.1.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\google.protobuf\\3.26.1\\google.protobuf.3.26.1.nupkg.sha512",
|
||||||
@ -12,6 +12,7 @@
|
|||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\mysql.data\\9.0.0\\mysql.data.9.0.0.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\mysql.data\\9.0.0\\mysql.data.9.0.0.nupkg.sha512",
|
||||||
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.configuration.configurationmanager\\8.0.0\\system.configuration.configurationmanager.8.0.0.nupkg.sha512",
|
||||||
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
"C:\\Users\\MeinholC.D_LAMBERTZ\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.1\\system.diagnostics.diagnosticsource.8.0.1.nupkg.sha512",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user