feat(master : create)Create Project

This commit is contained in:
marcinlei@outlook.com 2025-04-27 22:37:42 +08:00
parent bb831cf3a1
commit ed9d7479eb
88 changed files with 2565 additions and 0 deletions

1
.gitignore vendored Normal file

@ -0,0 +1 @@
bin/

Binary file not shown.

Binary file not shown.

BIN
.vs/ASillyDog/v17/.suo Normal file

Binary file not shown.

@ -0,0 +1,12 @@
{
"Version": 1,
"WorkspaceRootPath": "E:\\Workspace\\project\\ASillyDog\\",
"Documents": [],
"DocumentGroupContainers": [
{
"Orientation": 0,
"VerticalTabListWidth": 256,
"DocumentGroups": []
}
]
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,6 @@
{
"ExpandedNodes": [
""
],
"PreviewInSolutionExplorer": false
}

BIN
.vs/slnx.sqlite Normal file

Binary file not shown.

11
ASillyDog.csproj Normal file

@ -0,0 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

11
ASillyDog.csproj.user Normal file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<_LastSelectedProfileId>E:\Workspace\project\ASillyDog\Properties\PublishProfiles\FolderProfile.pubxml</_LastSelectedProfileId>
</PropertyGroup>
<ItemGroup>
<Compile Update="Form1.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>

25
ASillyDog.sln Normal file

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34701.34
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ASillyDog", "ASillyDog.csproj", "{F6EFFEB0-19CA-4053-A026-BC5C07491D18}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F6EFFEB0-19CA-4053-A026-BC5C07491D18}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F6EFFEB0-19CA-4053-A026-BC5C07491D18}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F6EFFEB0-19CA-4053-A026-BC5C07491D18}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F6EFFEB0-19CA-4053-A026-BC5C07491D18}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {9FA2309D-14D6-4A46-94FE-A0AA60616077}
EndGlobalSection
EndGlobal

87
Form1.Designer.cs generated Normal file

@ -0,0 +1,87 @@
namespace ASillyDog
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
button1 = new Button();
button2 = new Button();
label1 = new Label();
SuspendLayout();
//
// button1
//
button1.Location = new Point(141, 261);
button1.Name = "button1";
button1.Size = new Size(229, 63);
button1.TabIndex = 0;
button1.Text = "我不是";
button1.UseVisualStyleBackColor = true;
button1.Click += button1_MouseEnter;
button1.MouseEnter += button1_MouseEnter;
//
// button2
//
button2.Location = new Point(443, 261);
button2.Name = "button2";
button2.Size = new Size(229, 63);
button2.TabIndex = 1;
button2.Text = "汪汪";
button2.UseVisualStyleBackColor = true;
button2.Click += button2_Click;
//
// label1
//
label1.AutoSize = true;
label1.Location = new Point(43, 37);
label1.Name = "label1";
label1.Size = new Size(185, 24);
label1.TabIndex = 2;
label1.Text = "亲爱的你是一只傻狗~";
//
// Form1
//
AutoScaleDimensions = new SizeF(11F, 24F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(804, 427);
Controls.Add(label1);
Controls.Add(button2);
Controls.Add(button1);
Name = "Form1";
Text = "欸嘿嘿";
Load += Form1_Load;
ResumeLayout(false);
PerformLayout();
}
#endregion
private Button button1;
private Button button2;
private Label label1;
}
}

55
Form1.cs Normal file

@ -0,0 +1,55 @@
namespace ASillyDog
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.FormClosing += Form1_FormClosing;
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
if (e.CloseReason == CloseReason.UserClosing)
{
// 检查是否是 Alt + F4 触发的关闭
if ((Control.ModifierKeys & Keys.Alt) == Keys.Alt && (Control.ModifierKeys & Keys.F4) == Keys.F4)
{
// 取消关闭操作
e.Cancel = true;
}
else
{
// 处理其他用户关闭情况(如点击关闭按钮)
e.Cancel = true;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
// MessageBox.Show("按钮被点击了!");
}
private void button2_Click(object sender, EventArgs e)
{
MessageBox.Show("你很有自知之明嘛~");
this.Close();
Application.Exit();
}
private void button1_MouseEnter(object sender, EventArgs e)
{
Button button = (Button)sender;
Random random = new Random();
int x = random.Next(0, this.ClientSize.Width - button.Width);
int y = random.Next(0, this.ClientSize.Height - button.Height);
button.Location = new Point(x, y);
}
}
}

120
Form1.resx Normal file

@ -0,0 +1,120 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
</root>

17
Program.cs Normal file

@ -0,0 +1,17 @@
namespace ASillyDog
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
// To customize application configuration such as set high DPI settings or default font,
// see https://aka.ms/applicationconfiguration.
ApplicationConfiguration.Initialize();
Application.Run(new Form1());
}
}
}

@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net8.0-windows\publish\win-x86\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
<TargetFramework>net8.0-windows</TargetFramework>
<RuntimeIdentifier>win-x86</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>true</PublishSingleFile>
<PublishReadyToRun>false</PublishReadyToRun>
</PropertyGroup>
</Project>

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<History>True|2025-04-27T14:28:17.8372598Z;</History>
<LastFailureDetails />
</PropertyGroup>
</Project>

@ -0,0 +1,75 @@
{
"format": 1,
"restore": {
"E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj": {}
},
"projects": {
"E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"projectName": "ASillyDog",
"projectPath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"packagesPath": "C:\\Users\\17508\\.nuget\\packages\\",
"outputPath": "E:\\Workspace\\project\\ASillyDog\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\17508\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
}
}
}
}

@ -0,0 +1,16 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\17508\.nuget\packages\;E:\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\17508\.nuget\packages\" />
<SourceRoot Include="E:\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
</Project>

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

@ -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>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyTitleAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1 @@
5e1cd4946d434853e311982538bd2fd70400cf30834af0bbe1b138609452c83a

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 = ASillyDog
build_property.ProjectDir = E:\Workspace\project\ASillyDog\
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.

@ -0,0 +1 @@
b0e86c6ff98fd66387a393c394235fbc8e2f0bb0509beeb4629c77c78d9cfea1

@ -0,0 +1,16 @@
E:\Workspace\project\ASillyDog\bin\Debug\net8.0-windows\ASillyDog.exe
E:\Workspace\project\ASillyDog\bin\Debug\net8.0-windows\ASillyDog.deps.json
E:\Workspace\project\ASillyDog\bin\Debug\net8.0-windows\ASillyDog.runtimeconfig.json
E:\Workspace\project\ASillyDog\bin\Debug\net8.0-windows\ASillyDog.dll
E:\Workspace\project\ASillyDog\bin\Debug\net8.0-windows\ASillyDog.pdb
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.Form1.resources
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.csproj.GenerateResource.cache
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.GeneratedMSBuildEditorConfig.editorconfig
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.AssemblyInfoInputs.cache
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.AssemblyInfo.cs
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.csproj.CoreCompileInputs.cache
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\refint\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.pdb
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ASillyDog.genruntimeconfig.cache
E:\Workspace\project\ASillyDog\obj\Debug\net8.0-windows\ref\ASillyDog.dll

@ -0,0 +1,11 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {}
},
"libraries": {}
}

@ -0,0 +1,24 @@
{
"runtimeOptions": {
"tfm": "net8.0",
"frameworks": [
{
"name": "Microsoft.NETCore.App",
"version": "8.0.0"
},
{
"name": "Microsoft.WindowsDesktop.App",
"version": "8.0.0"
}
],
"additionalProbingPaths": [
"C:\\Users\\17508\\.dotnet\\store\\|arch|\\|tfm|",
"C:\\Users\\17508\\.nuget\\packages",
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configProperties": {
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
}
}
}

Binary file not shown.

@ -0,0 +1 @@
61945eccca0bdb38191ec317b9279ac1a98c0e7bd4cc82370cb95c4e503495fc

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>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyTitleAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1 @@
72e7b0b331566fa2c4613d1a3bc93182d17649183a96c1b77425b6f687093d37

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 = ASillyDog
build_property.ProjectDir = E:\Workspace\project\ASillyDog\
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.

@ -0,0 +1 @@
7b585070d8b8869f20b1af56b619f1288960bd249ef5e8e7e5f9bb184e5669fd

@ -0,0 +1,16 @@
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\ASillyDog.exe
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\ASillyDog.deps.json
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\ASillyDog.runtimeconfig.json
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\ASillyDog.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\ASillyDog.pdb
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.Form1.resources
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.csproj.GenerateResource.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.GeneratedMSBuildEditorConfig.editorconfig
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.AssemblyInfoInputs.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.AssemblyInfo.cs
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.csproj.CoreCompileInputs.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\refint\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.pdb
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ASillyDog.genruntimeconfig.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\ref\ASillyDog.dll

Binary file not shown.

@ -0,0 +1 @@
9583dbcebb5340e8787145bba2fff4d6b6f95f3d8ebe84f6a0af1a6d852ebe79

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>
// 此代码由工具生成。
// 运行时版本:4.0.30319.42000
//
// 对此文件的更改可能会导致不正确的行为,并且如果
// 重新生成代码,这些更改将会丢失。
// </auto-generated>
//------------------------------------------------------------------------------
using System;
using System.Reflection;
[assembly: System.Reflection.AssemblyCompanyAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
[assembly: System.Reflection.AssemblyProductAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyTitleAttribute("ASillyDog")]
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
// 由 MSBuild WriteCodeFragment 类生成。

@ -0,0 +1 @@
72e7b0b331566fa2c4613d1a3bc93182d17649183a96c1b77425b6f687093d37

@ -0,0 +1,23 @@
is_global = true
build_property.EnableAotAnalyzer =
build_property.EnableSingleFileAnalyzer = true
build_property.EnableTrimAnalyzer =
build_property.IncludeAllContentForSelfExtract =
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 = ASillyDog
build_property.ProjectDir = E:\Workspace\project\ASillyDog\
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;

@ -0,0 +1 @@
985e22f6e9fab060ee99cf96be9e88b347197ff9030e80faef3bfaa3354926aa

@ -0,0 +1,476 @@
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ASillyDog.exe
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ASillyDog.deps.json
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ASillyDog.runtimeconfig.json
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ASillyDog.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ASillyDog.pdb
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.CSharp.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.VisualBasic.Core.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.Win32.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.Win32.Registry.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.AppContext.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Buffers.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Collections.Concurrent.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Collections.Immutable.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Collections.NonGeneric.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Collections.Specialized.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Collections.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.Annotations.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.DataAnnotations.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.EventBasedAsync.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.TypeConverter.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ComponentModel.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Configuration.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Console.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Core.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Data.Common.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Data.DataSetExtensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Data.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.Contracts.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.Debug.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.DiagnosticSource.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.FileVersionInfo.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.Process.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.StackTrace.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.TextWriterTraceListener.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.Tools.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.TraceSource.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.Tracing.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Drawing.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Dynamic.Runtime.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Formats.Asn1.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Formats.Tar.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Globalization.Calendars.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Globalization.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Globalization.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Compression.Brotli.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Compression.FileSystem.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Compression.ZipFile.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Compression.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.FileSystem.AccessControl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.FileSystem.DriveInfo.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.FileSystem.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.FileSystem.Watcher.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.FileSystem.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.IsolatedStorage.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.MemoryMappedFiles.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Pipes.AccessControl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Pipes.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.UnmanagedMemoryStream.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Linq.Expressions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Linq.Parallel.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Linq.Queryable.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Linq.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Memory.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Http.Json.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Http.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.HttpListener.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Mail.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.NameResolution.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.NetworkInformation.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Ping.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Quic.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Requests.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Security.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.ServicePoint.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.Sockets.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.WebClient.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.WebHeaderCollection.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.WebProxy.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.WebSockets.Client.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.WebSockets.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Net.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Numerics.Vectors.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Numerics.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ObjectModel.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Private.CoreLib.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Private.DataContractSerialization.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Private.Uri.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Private.Xml.Linq.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Private.Xml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.DispatchProxy.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Emit.ILGeneration.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Emit.Lightweight.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Emit.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Metadata.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.TypeExtensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Reflection.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Resources.Reader.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Resources.ResourceManager.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Resources.Writer.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.CompilerServices.Unsafe.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.CompilerServices.VisualC.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Handles.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.InteropServices.JavaScript.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.InteropServices.RuntimeInformation.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.InteropServices.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Intrinsics.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Loader.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Numerics.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Serialization.Formatters.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Serialization.Json.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Serialization.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Serialization.Xml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.Serialization.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Runtime.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.AccessControl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Claims.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Algorithms.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Cng.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Csp.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Encoding.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.OpenSsl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.X509Certificates.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Principal.Windows.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Principal.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.SecureString.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ServiceModel.Web.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ServiceProcess.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.Encoding.CodePages.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.Encoding.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.Encoding.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.Encodings.Web.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.Json.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Text.RegularExpressions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Channels.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Overlapped.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Tasks.Dataflow.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Tasks.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Tasks.Parallel.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Tasks.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Thread.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.ThreadPool.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.Timer.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Transactions.Local.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Transactions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.ValueTuple.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Web.HttpUtility.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Web.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.Linq.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.ReaderWriter.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.Serialization.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.XDocument.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.XPath.XDocument.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.XPath.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.XmlDocument.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.XmlSerializer.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\mscorlib.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\netstandard.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Accessibility.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\DirectWriteForwarder.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.VisualBasic.Forms.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.VisualBasic.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.Win32.Registry.AccessControl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.Win32.SystemEvents.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationCore.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework-SystemCore.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework-SystemData.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework-SystemDrawing.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework-SystemXml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework-SystemXmlLinq.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.Aero.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.Aero2.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.AeroLite.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.Classic.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.Luna.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.Royale.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationFramework.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationUI.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ReachFramework.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.CodeDom.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Configuration.ConfigurationManager.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Design.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.EventLog.Messages.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.EventLog.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Diagnostics.PerformanceCounter.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.DirectoryServices.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Drawing.Common.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Drawing.Design.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Drawing.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Packaging.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Printing.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Resources.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Pkcs.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.ProtectedData.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Cryptography.Xml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Security.Permissions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Threading.AccessControl.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Controls.Ribbon.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Extensions.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Forms.Design.Editors.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Forms.Design.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Forms.Primitives.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Forms.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Input.Manipulations.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Windows.Presentation.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.Xaml.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\UIAutomationClient.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\UIAutomationClientSideProviders.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\UIAutomationProvider.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\UIAutomationTypes.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\WindowsBase.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\WindowsFormsIntegration.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\Microsoft.DiaSymReader.Native.x86.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\System.IO.Compression.Native.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\clretwrc.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\clrgc.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\clrjit.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\coreclr.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\createdump.exe
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\hostfxr.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\hostpolicy.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\mscordaccore.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\mscordaccore_x86_x86_8.0.324.11423.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\mscordbi.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\mscorrc.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\msquic.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\D3DCompiler_47_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PenImc_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\PresentationNative_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\vcruntime140_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\wpfgfx_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\cs\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\de\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\es\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\fr\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\it\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ja\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ko\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pl\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\pt-BR\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\ru\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\tr\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hans\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\Microsoft.VisualBasic.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\PresentationCore.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\PresentationFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\PresentationUI.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\ReachFramework.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Windows.Controls.Ribbon.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Windows.Forms.Design.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Windows.Forms.Primitives.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Windows.Forms.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Windows.Input.Manipulations.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\System.Xaml.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\UIAutomationClient.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\UIAutomationClientSideProviders.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\UIAutomationProvider.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\UIAutomationTypes.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\WindowsBase.resources.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\win-x86\zh-Hant\WindowsFormsIntegration.resources.dll
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.Form1.resources
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.csproj.GenerateResource.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.GeneratedMSBuildEditorConfig.editorconfig
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.AssemblyInfoInputs.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.AssemblyInfo.cs
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.csproj.CoreCompileInputs.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.csproj.Up2Date
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\refint\ASillyDog.dll
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.pdb
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ASillyDog.genruntimeconfig.cache
E:\Workspace\project\ASillyDog\obj\Release\net8.0-windows\win-x86\ref\ASillyDog.dll

@ -0,0 +1,955 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v8.0/win-x86",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v8.0": {},
".NETCoreApp,Version=v8.0/win-x86": {
"ASillyDog/1.0.0": {
"dependencies": {
"Microsoft.NET.ILLink.Tasks": "8.0.3",
"runtimepack.Microsoft.NETCore.App.Runtime.win-x86": "8.0.3",
"runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86": "8.0.3"
},
"runtime": {
"ASillyDog.dll": {}
}
},
"runtimepack.Microsoft.NETCore.App.Runtime.win-x86/8.0.3": {
"runtime": {
"Microsoft.CSharp.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"Microsoft.VisualBasic.Core.dll": {
"assemblyVersion": "13.0.0.0",
"fileVersion": "13.0.324.11423"
},
"Microsoft.Win32.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"Microsoft.Win32.Registry.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.AppContext.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Buffers.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Collections.Concurrent.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Collections.Immutable.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Collections.NonGeneric.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Collections.Specialized.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Collections.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.Annotations.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.DataAnnotations.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.EventBasedAsync.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.TypeConverter.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ComponentModel.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Configuration.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Console.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Core.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Data.Common.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Data.DataSetExtensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Data.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.Contracts.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.Debug.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.DiagnosticSource.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.FileVersionInfo.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.Process.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.StackTrace.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.TextWriterTraceListener.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.Tools.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.TraceSource.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.Tracing.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Drawing.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Dynamic.Runtime.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Formats.Asn1.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Formats.Tar.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Globalization.Calendars.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Globalization.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Globalization.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Compression.Brotli.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Compression.FileSystem.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Compression.ZipFile.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Compression.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.FileSystem.AccessControl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.FileSystem.DriveInfo.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.FileSystem.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.FileSystem.Watcher.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.FileSystem.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.IsolatedStorage.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.MemoryMappedFiles.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Pipes.AccessControl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.Pipes.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.UnmanagedMemoryStream.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.IO.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Linq.Expressions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Linq.Parallel.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Linq.Queryable.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Linq.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Memory.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Http.Json.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Http.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.HttpListener.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Mail.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.NameResolution.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.NetworkInformation.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Ping.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Quic.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Requests.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Security.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.ServicePoint.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.Sockets.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.WebClient.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.WebHeaderCollection.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.WebProxy.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.WebSockets.Client.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.WebSockets.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Net.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Numerics.Vectors.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Numerics.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ObjectModel.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Private.CoreLib.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Private.DataContractSerialization.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Private.Uri.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Private.Xml.Linq.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Private.Xml.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.DispatchProxy.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Emit.ILGeneration.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Emit.Lightweight.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Emit.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Metadata.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.TypeExtensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Reflection.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Resources.Reader.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Resources.ResourceManager.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Resources.Writer.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.CompilerServices.Unsafe.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.CompilerServices.VisualC.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Handles.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.InteropServices.JavaScript.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.InteropServices.RuntimeInformation.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.InteropServices.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Intrinsics.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Loader.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Numerics.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Serialization.Formatters.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Serialization.Json.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Serialization.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Serialization.Xml.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.Serialization.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Runtime.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.AccessControl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Claims.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Algorithms.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Cng.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Csp.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Encoding.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.OpenSsl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.X509Certificates.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Principal.Windows.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Principal.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.SecureString.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ServiceModel.Web.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ServiceProcess.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.Encoding.CodePages.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.Encoding.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.Encoding.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.Encodings.Web.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.Json.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Text.RegularExpressions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Channels.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Overlapped.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Tasks.Dataflow.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Tasks.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Tasks.Parallel.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Tasks.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Thread.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.ThreadPool.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.Timer.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Transactions.Local.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Transactions.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.ValueTuple.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Web.HttpUtility.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Web.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Windows.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.Linq.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.ReaderWriter.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.Serialization.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.XDocument.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.XPath.XDocument.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.XPath.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.XmlDocument.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.XmlSerializer.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Xml.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"mscorlib.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11423"
},
"netstandard.dll": {
"assemblyVersion": "2.1.0.0",
"fileVersion": "8.0.324.11423"
}
}
},
"runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86/8.0.3": {
"runtime": {
"Accessibility.dll": {
"assemblyVersion": "4.0.0.0",
"fileVersion": "8.0.324.11603"
},
"DirectWriteForwarder.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"Microsoft.VisualBasic.Forms.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"Microsoft.VisualBasic.dll": {
"assemblyVersion": "10.1.0.0",
"fileVersion": "8.0.324.11603"
},
"Microsoft.Win32.Registry.AccessControl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"Microsoft.Win32.SystemEvents.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"PresentationCore.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework-SystemCore.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework-SystemData.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework-SystemDrawing.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework-SystemXml.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework-SystemXmlLinq.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.Aero.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.Aero2.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.AeroLite.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.Classic.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.Luna.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.Royale.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationFramework.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"PresentationUI.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"ReachFramework.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"System.CodeDom.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Configuration.ConfigurationManager.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Design.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Diagnostics.EventLog.Messages.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "0.0.0.0"
},
"System.Diagnostics.EventLog.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Diagnostics.PerformanceCounter.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.DirectoryServices.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Drawing.Common.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Drawing.Design.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Drawing.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.IO.Packaging.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Printing.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"System.Resources.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Pkcs.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.ProtectedData.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Cryptography.Xml.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Security.Permissions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Threading.AccessControl.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Windows.Controls.Ribbon.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"System.Windows.Extensions.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11423"
},
"System.Windows.Forms.Design.Editors.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Windows.Forms.Design.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Windows.Forms.Primitives.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Windows.Forms.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11603"
},
"System.Windows.Input.Manipulations.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"System.Windows.Presentation.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"System.Xaml.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"UIAutomationClient.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"UIAutomationClientSideProviders.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"UIAutomationProvider.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"UIAutomationTypes.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"WindowsBase.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
},
"WindowsFormsIntegration.dll": {
"assemblyVersion": "8.0.0.0",
"fileVersion": "8.0.324.11606"
}
},
"native": {
"D3DCompiler_47_cor3.dll": {
"fileVersion": "10.0.22621.2428"
},
"PenImc_cor3.dll": {
"fileVersion": "8.0.324.11606"
},
"PresentationNative_cor3.dll": {
"fileVersion": "8.0.23.56901"
},
"vcruntime140_cor3.dll": {
"fileVersion": "14.38.33130.0"
},
"wpfgfx_cor3.dll": {
"fileVersion": "8.0.324.11606"
}
}
},
"Microsoft.NET.ILLink.Tasks/8.0.3": {}
}
},
"libraries": {
"ASillyDog/1.0.0": {
"type": "project",
"serviceable": false,
"sha512": ""
},
"runtimepack.Microsoft.NETCore.App.Runtime.win-x86/8.0.3": {
"type": "runtimepack",
"serviceable": false,
"sha512": ""
},
"runtimepack.Microsoft.WindowsDesktop.App.Runtime.win-x86/8.0.3": {
"type": "runtimepack",
"serviceable": false,
"sha512": ""
},
"Microsoft.NET.ILLink.Tasks/8.0.3": {
"type": "package",
"serviceable": true,
"sha512": "sha512-0kwNg0LBIvVTx9A2mo9Mnw4wLGtaeQgjSz5P13bOOwdWPPLe9HzI+XTkwiMhS7iQCM6X4LAbFR76xScaMw0MrA==",
"path": "microsoft.net.illink.tasks/8.0.3",
"hashPath": "microsoft.net.illink.tasks.8.0.3.nupkg.sha512"
}
},
"runtimes": {
"win-x86": [
"win",
"any",
"base"
]
}
}

Binary file not shown.

@ -0,0 +1 @@
d5f0ad65462bc56f50a0c265d630e5d1a69d79f013e19c2fa35346993fd801ea

@ -0,0 +1 @@
bf883ce2d5a9ccb99f065b27a49485b3cabb1e9a39af134096e86ec9a6581653

@ -0,0 +1 @@
dccda6c20215bc9e9231b9ff47d61eee0a88bddaba87f67a9cfee3ec617b5f41

Binary file not shown.

@ -0,0 +1,7 @@
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\ASillyDog.pdb
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\D3DCompiler_47_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\PenImc_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\PresentationNative_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\vcruntime140_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\wpfgfx_cor3.dll
E:\Workspace\project\ASillyDog\bin\Release\net8.0-windows\publish\win-x86\ASillyDog.exe

Binary file not shown.

Binary file not shown.

81
obj/project.assets.json Normal file

@ -0,0 +1,81 @@
{
"version": 3,
"targets": {
"net8.0-windows7.0": {}
},
"libraries": {},
"projectFileDependencyGroups": {
"net8.0-windows7.0": []
},
"packageFolders": {
"C:\\Users\\17508\\.nuget\\packages\\": {},
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"projectName": "ASillyDog",
"projectPath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"packagesPath": "C:\\Users\\17508\\.nuget\\packages\\",
"outputPath": "E:\\Workspace\\project\\ASillyDog\\obj\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\17508\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
}
}
}

8
obj/project.nuget.cache Normal file

@ -0,0 +1,8 @@
{
"version": 2,
"dgSpecHash": "Rf1G0USvdwXdkL8r16bPnYBc6+x21zWgEUw1GEpO9KQ0+KmgWFxOIBPLz5yeMfCczIQesYM/xKKff4QWvssOYw==",
"success": true,
"projectFilePath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"expectedPackageFiles": [],
"logs": []
}

@ -0,0 +1,102 @@
{
"format": 1,
"restore": {
"E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj": {}
},
"projects": {
"E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"projectName": "ASillyDog",
"projectPath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"packagesPath": "C:\\Users\\17508\\.nuget\\packages\\",
"outputPath": "E:\\Workspace\\project\\ASillyDog\\obj\\publish\\win-x86\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\17508\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"dependencies": {
"Microsoft.NET.ILLink.Tasks": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.3, )",
"autoReferenced": true
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
},
{
"name": "Microsoft.NETCore.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
},
{
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"win-x86": {
"#import": []
}
}
}
}
}

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\17508\.nuget\packages\;E:\IDE\VisualStudio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.9.1</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\17508\.nuget\packages\" />
<SourceRoot Include="E:\IDE\VisualStudio\Shared\NuGetPackages\" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.3\build\Microsoft.NET.ILLink.Tasks.props" Condition="Exists('$(NuGetPackageRoot)microsoft.net.illink.tasks\8.0.3\build\Microsoft.NET.ILLink.Tasks.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<PkgMicrosoft_NET_ILLink_Tasks Condition=" '$(PkgMicrosoft_NET_ILLink_Tasks)' == '' ">C:\Users\17508\.nuget\packages\microsoft.net.illink.tasks\8.0.3</PkgMicrosoft_NET_ILLink_Tasks>
</PropertyGroup>
</Project>

@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" />

@ -0,0 +1,177 @@
{
"version": 3,
"targets": {
"net8.0-windows7.0": {
"Microsoft.NET.ILLink.Tasks/8.0.3": {
"type": "package",
"build": {
"build/Microsoft.NET.ILLink.Tasks.props": {}
}
}
},
"net8.0-windows7.0/win-x86": {
"Microsoft.NET.ILLink.Tasks/8.0.3": {
"type": "package",
"build": {
"build/Microsoft.NET.ILLink.Tasks.props": {}
}
}
}
},
"libraries": {
"Microsoft.NET.ILLink.Tasks/8.0.3": {
"sha512": "0kwNg0LBIvVTx9A2mo9Mnw4wLGtaeQgjSz5P13bOOwdWPPLe9HzI+XTkwiMhS7iQCM6X4LAbFR76xScaMw0MrA==",
"type": "package",
"path": "microsoft.net.illink.tasks/8.0.3",
"hasTools": true,
"files": [
".nupkg.metadata",
".signature.p7s",
"Icon.png",
"LICENSE.TXT",
"Sdk/Sdk.props",
"THIRD-PARTY-NOTICES.TXT",
"analyzers/dotnet/cs/ILLink.CodeFixProvider.dll",
"analyzers/dotnet/cs/ILLink.RoslynAnalyzer.dll",
"build/Microsoft.NET.ILLink.Analyzers.props",
"build/Microsoft.NET.ILLink.Tasks.props",
"build/Microsoft.NET.ILLink.targets",
"microsoft.net.illink.tasks.8.0.3.nupkg.sha512",
"microsoft.net.illink.tasks.nuspec",
"tools/net472/ILLink.Tasks.dll",
"tools/net472/ILLink.Tasks.dll.config",
"tools/net472/Mono.Cecil.Mdb.dll",
"tools/net472/Mono.Cecil.Pdb.dll",
"tools/net472/Mono.Cecil.Rocks.dll",
"tools/net472/Mono.Cecil.dll",
"tools/net472/Sdk/Sdk.props",
"tools/net472/System.Buffers.dll",
"tools/net472/System.Collections.Immutable.dll",
"tools/net472/System.Memory.dll",
"tools/net472/System.Numerics.Vectors.dll",
"tools/net472/System.Reflection.Metadata.dll",
"tools/net472/System.Runtime.CompilerServices.Unsafe.dll",
"tools/net472/build/Microsoft.NET.ILLink.Analyzers.props",
"tools/net472/build/Microsoft.NET.ILLink.Tasks.props",
"tools/net472/build/Microsoft.NET.ILLink.targets",
"tools/net8.0/ILLink.Tasks.deps.json",
"tools/net8.0/ILLink.Tasks.dll",
"tools/net8.0/Mono.Cecil.Mdb.dll",
"tools/net8.0/Mono.Cecil.Pdb.dll",
"tools/net8.0/Mono.Cecil.Rocks.dll",
"tools/net8.0/Mono.Cecil.dll",
"tools/net8.0/Sdk/Sdk.props",
"tools/net8.0/build/Microsoft.NET.ILLink.Analyzers.props",
"tools/net8.0/build/Microsoft.NET.ILLink.Tasks.props",
"tools/net8.0/build/Microsoft.NET.ILLink.targets",
"tools/net8.0/illink.deps.json",
"tools/net8.0/illink.dll",
"tools/net8.0/illink.runtimeconfig.json",
"useSharedDesignerContext.txt"
]
}
},
"projectFileDependencyGroups": {
"net8.0-windows7.0": [
"Microsoft.NET.ILLink.Tasks >= 8.0.3"
]
},
"packageFolders": {
"C:\\Users\\17508\\.nuget\\packages\\": {},
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages": {}
},
"project": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"projectName": "ASillyDog",
"projectPath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"packagesPath": "C:\\Users\\17508\\.nuget\\packages\\",
"outputPath": "E:\\Workspace\\project\\ASillyDog\\obj\\publish\\win-x86\\",
"projectStyle": "PackageReference",
"fallbackFolders": [
"E:\\IDE\\VisualStudio\\Shared\\NuGetPackages"
],
"configFilePaths": [
"C:\\Users\\17508\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
],
"originalTargetFrameworks": [
"net8.0-windows"
],
"sources": {
"C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
"https://api.nuget.org/v3/index.json": {}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"projectReferences": {}
}
},
"warningProperties": {
"warnAsError": [
"NU1605"
]
},
"restoreAuditProperties": {
"enableAudit": "true",
"auditLevel": "low",
"auditMode": "direct"
}
},
"frameworks": {
"net8.0-windows7.0": {
"targetAlias": "net8.0-windows",
"dependencies": {
"Microsoft.NET.ILLink.Tasks": {
"suppressParent": "All",
"target": "Package",
"version": "[8.0.3, )",
"autoReferenced": true
}
},
"imports": [
"net461",
"net462",
"net47",
"net471",
"net472",
"net48",
"net481"
],
"assetTargetFallback": true,
"warn": true,
"downloadDependencies": [
{
"name": "Microsoft.AspNetCore.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
},
{
"name": "Microsoft.NETCore.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
},
{
"name": "Microsoft.WindowsDesktop.App.Runtime.win-x86",
"version": "[8.0.3, 8.0.3]"
}
],
"frameworkReferences": {
"Microsoft.NETCore.App": {
"privateAssets": "all"
},
"Microsoft.WindowsDesktop.App.WindowsForms": {
"privateAssets": "none"
}
},
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json"
}
},
"runtimes": {
"win-x86": {
"#import": []
}
}
}
}

@ -0,0 +1,13 @@
{
"version": 2,
"dgSpecHash": "e5i7tm7abJKeWIraSW2crDeP5dkpGzTXNi6N6HD4ZjoQDzTOUufBEWh+e4LXuSLvpsZ0XiF0cENPRD9srKI8aQ==",
"success": true,
"projectFilePath": "E:\\Workspace\\project\\ASillyDog\\ASillyDog.csproj",
"expectedPackageFiles": [
"C:\\Users\\17508\\.nuget\\packages\\microsoft.net.illink.tasks\\8.0.3\\microsoft.net.illink.tasks.8.0.3.nupkg.sha512",
"C:\\Users\\17508\\.nuget\\packages\\microsoft.netcore.app.runtime.win-x86\\8.0.3\\microsoft.netcore.app.runtime.win-x86.8.0.3.nupkg.sha512",
"C:\\Users\\17508\\.nuget\\packages\\microsoft.windowsdesktop.app.runtime.win-x86\\8.0.3\\microsoft.windowsdesktop.app.runtime.win-x86.8.0.3.nupkg.sha512",
"C:\\Users\\17508\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.win-x86\\8.0.3\\microsoft.aspnetcore.app.runtime.win-x86.8.0.3.nupkg.sha512"
],
"logs": []
}