diff --git a/Form1.Designer.cs b/Form1.Designer.cs
new file mode 100644
index 0000000..0cef2f0
--- /dev/null
+++ b/Form1.Designer.cs
@@ -0,0 +1,139 @@
+namespace DiscordWV
+{
+ partial class Discord
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ webView21 = new Microsoft.Web.WebView2.WinForms.WebView2();
+ trackBar1 = new TrackBar();
+ button1 = new Button();
+ textBox1 = new TextBox();
+ pictureBox1 = new PictureBox();
+ ((System.ComponentModel.ISupportInitialize)webView21).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)trackBar1).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();
+ SuspendLayout();
+ //
+ // webView21
+ //
+ webView21.AllowExternalDrop = true;
+ webView21.BackColor = Color.Black;
+ webView21.CreationProperties = null;
+ webView21.DefaultBackgroundColor = Color.DimGray;
+ webView21.Dock = DockStyle.Fill;
+ webView21.ForeColor = SystemColors.ButtonHighlight;
+ webView21.ImeMode = ImeMode.NoControl;
+ webView21.Location = new Point(0, 0);
+ webView21.Name = "webView21";
+ webView21.Size = new Size(800, 450);
+ webView21.Source = new Uri("https://discord.com/channels/", UriKind.Absolute);
+ webView21.TabIndex = 0;
+ webView21.ZoomFactor = 1D;
+ webView21.Click += webView21_Click;
+ //
+ // trackBar1
+ //
+ trackBar1.AccessibleName = "trackBar1";
+ trackBar1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
+ trackBar1.BackColor = Color.White;
+ trackBar1.LargeChange = 10;
+ trackBar1.Location = new Point(649, 426);
+ trackBar1.Margin = new Padding(0);
+ trackBar1.Maximum = 100;
+ trackBar1.Minimum = 10;
+ trackBar1.Name = "trackBar1";
+ trackBar1.RightToLeft = RightToLeft.No;
+ trackBar1.RightToLeftLayout = true;
+ trackBar1.Size = new Size(151, 45);
+ trackBar1.TabIndex = 1;
+ trackBar1.TickStyle = TickStyle.None;
+ trackBar1.Value = 80;
+ trackBar1.Scroll += trackBar1_Scroll;
+ //
+ // button1
+ //
+ button1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ button1.Location = new Point(147, 426);
+ button1.Name = "button1";
+ button1.Size = new Size(30, 23);
+ button1.TabIndex = 2;
+ button1.Text = "Go";
+ button1.UseVisualStyleBackColor = true;
+ button1.Click += button1_Click;
+ //
+ // textBox1
+ //
+ textBox1.Anchor = AnchorStyles.Bottom | AnchorStyles.Left;
+ textBox1.Location = new Point(0, 426);
+ textBox1.Name = "textBox1";
+ textBox1.Size = new Size(150, 23);
+ textBox1.TabIndex = 3;
+ textBox1.TextChanged += textBox1_TextChanged;
+ //
+ // pictureBox1
+ //
+ pictureBox1.BackColor = SystemColors.ButtonHighlight;
+ pictureBox1.Location = new Point(0, 426);
+ pictureBox1.Name = "pictureBox1";
+ pictureBox1.Size = new Size(800, 50);
+ pictureBox1.TabIndex = 4;
+ pictureBox1.TabStop = false;
+ //
+ // Discord
+ //
+ AllowDrop = true;
+ AutoScaleDimensions = new SizeF(7F, 15F);
+ AutoScaleMode = AutoScaleMode.Font;
+ AutoSizeMode = AutoSizeMode.GrowAndShrink;
+ BackgroundImageLayout = ImageLayout.None;
+ ClientSize = new Size(800, 450);
+ Controls.Add(textBox1);
+ Controls.Add(button1);
+ Controls.Add(trackBar1);
+ Controls.Add(webView21);
+ Controls.Add(pictureBox1);
+ Name = "Discord";
+ ShowIcon = false;
+ ShowInTaskbar = false;
+ SizeGripStyle = SizeGripStyle.Show;
+ Text = "Transparent Site";
+ ((System.ComponentModel.ISupportInitialize)webView21).EndInit();
+ ((System.ComponentModel.ISupportInitialize)trackBar1).EndInit();
+ ((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();
+ ResumeLayout(false);
+ PerformLayout();
+ }
+
+ #endregion
+
+ private Microsoft.Web.WebView2.WinForms.WebView2 webView21;
+ private TrackBar trackBar1;
+ private Button button1;
+ private TextBox textBox1;
+ private PictureBox pictureBox1;
+ }
+}
diff --git a/Form1.cs b/Form1.cs
new file mode 100644
index 0000000..5236388
--- /dev/null
+++ b/Form1.cs
@@ -0,0 +1,119 @@
+using Microsoft.Web.WebView2.WinForms;
+using static System.Net.WebRequestMethods;
+
+namespace DiscordWV
+{
+ public partial class Discord : Form
+ {
+ public Discord()
+ {
+ InitializeComponent();
+ textBox1.KeyDown += new KeyEventHandler(textBox1_KeyDown);
+ }
+
+ private void webView21_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void toolStripComboBox1_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void toolStripMenuItem5_Click(object sender, EventArgs e)
+ {
+
+ }
+
+ private void trackBar1_Scroll(object sender, EventArgs e)
+ {
+ this.Opacity = ((double)(trackBar1.Value) / 100.0);
+ this.Text = (trackBar1.Value.ToString());
+ }
+
+ private void button1_Click(object sender, EventArgs e)
+ {
+
+ // this.webView21.Source = new Uri(textBox1.Text);
+
+ string userInput = textBox1.Text;
+
+ // Check if the input is empty
+ if (string.IsNullOrWhiteSpace(userInput))
+ {
+ MessageBox.Show("Please enter a URL.");
+ return;
+ }
+
+ try
+ {
+ // Ensure the URL is properly formatted
+ UriBuilder uriBuilder = new UriBuilder(userInput);
+
+ // Default to "http" if no scheme is provided
+ if (string.IsNullOrWhiteSpace(uriBuilder.Scheme))
+ {
+ uriBuilder.Scheme = Uri.UriSchemeHttp;
+ }
+
+ // Set the Source of the WebView to the cleaned URL
+ this.webView21.Source = uriBuilder.Uri;
+ }
+ catch (UriFormatException ex)
+ {
+ // If the input is not a valid URL, treat it as a search term and use Google search
+ string googleSearchUrl = $"https://www.google.com/search?q={Uri.EscapeDataString(userInput)}";
+ this.webView21.Source = new Uri(googleSearchUrl);
+ }
+ }
+
+ private void textBox1_TextChanged(object sender, EventArgs e)
+ {
+
+ }
+ private void textBox1_KeyDown(object sender, KeyEventArgs e)
+ {
+ if (e.KeyCode == Keys.Enter)
+ {
+ // Prevent the beep sound on Enter key press
+ e.SuppressKeyPress = true;
+
+ // Call the method to handle the URL or search term
+ HandleUserInput();
+ }
+ }
+ private void HandleUserInput()
+ {
+ string userInput = textBox1.Text;
+
+ // Check if the input is empty
+ if (string.IsNullOrWhiteSpace(userInput))
+ {
+ MessageBox.Show("Please enter a URL or search term.");
+ return;
+ }
+
+ try
+ {
+ // Ensure the URL is properly formatted
+ UriBuilder uriBuilder = new UriBuilder(userInput);
+
+ // Default to "http" if no scheme is provided
+ if (string.IsNullOrWhiteSpace(uriBuilder.Scheme))
+ {
+ uriBuilder.Scheme = Uri.UriSchemeHttp;
+ }
+
+ // Set the Source of the WebView to the cleaned URL
+ this.webView21.Source = uriBuilder.Uri;
+ }
+ catch (UriFormatException)
+ {
+ // If the input is not a valid URL, treat it as a search term and use Google search
+ string googleSearchUrl = $"https://www.google.com/search?q={Uri.EscapeDataString(userInput)}";
+ this.webView21.Source = new Uri(googleSearchUrl);
+ }
+ }
+ }
+}
diff --git a/Form1.resx b/Form1.resx
new file mode 100644
index 0000000..af32865
--- /dev/null
+++ b/Form1.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Program.cs b/Program.cs
new file mode 100644
index 0000000..f941d71
--- /dev/null
+++ b/Program.cs
@@ -0,0 +1,17 @@
+namespace DiscordWV
+{
+ internal static class Program
+ {
+ ///
+ /// The main entry point for the application.
+ ///
+ [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 Discord());
+ }
+ }
+}
\ No newline at end of file
diff --git a/Transite.csproj b/Transite.csproj
new file mode 100644
index 0000000..f41e98a
--- /dev/null
+++ b/Transite.csproj
@@ -0,0 +1,18 @@
+
+
+
+ WinExe
+ net7.0-windows7.0
+ enable
+ true
+ enable
+ True
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Transite.csproj.user b/Transite.csproj.user
new file mode 100644
index 0000000..7814ea2
--- /dev/null
+++ b/Transite.csproj.user
@@ -0,0 +1,8 @@
+
+
+
+
+ Form
+
+
+
diff --git a/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..ed92695
--- /dev/null
+++ b/obj/Debug/net6.0-windows/.NETCoreApp,Version=v6.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v6.0", FrameworkDisplayName = ".NET 6.0")]
diff --git a/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfo.cs b/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfo.cs
new file mode 100644
index 0000000..3460477
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyTitleAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfoInputs.cache b/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..b005ef7
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+93bf2707fc8ea5327c17ec218af70b66fc9df6e97966fd6ae30e8ffcd4ee7ee3
diff --git a/obj/Debug/net6.0-windows/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0-windows/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..18a23e6
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig
@@ -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 = net6.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 = DiscordWV
+build_property.ProjectDir = C:\Users\alisa\source\repos\DiscordWV\DiscordWV\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/obj/Debug/net6.0-windows/DiscordWV.GlobalUsings.g.cs b/obj/Debug/net6.0-windows/DiscordWV.GlobalUsings.g.cs
new file mode 100644
index 0000000..84bbb89
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.GlobalUsings.g.cs
@@ -0,0 +1,10 @@
+//
+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;
diff --git a/obj/Debug/net6.0-windows/DiscordWV.assets.cache b/obj/Debug/net6.0-windows/DiscordWV.assets.cache
new file mode 100644
index 0000000..49d7b89
Binary files /dev/null and b/obj/Debug/net6.0-windows/DiscordWV.assets.cache differ
diff --git a/obj/Debug/net6.0-windows/DiscordWV.designer.deps.json b/obj/Debug/net6.0-windows/DiscordWV.designer.deps.json
new file mode 100644
index 0000000..706cdfa
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.designer.deps.json
@@ -0,0 +1,11 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v6.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v6.0": {}
+ },
+ "libraries": {}
+}
\ No newline at end of file
diff --git a/obj/Debug/net6.0-windows/DiscordWV.designer.runtimeconfig.json b/obj/Debug/net6.0-windows/DiscordWV.designer.runtimeconfig.json
new file mode 100644
index 0000000..00530b8
--- /dev/null
+++ b/obj/Debug/net6.0-windows/DiscordWV.designer.runtimeconfig.json
@@ -0,0 +1,23 @@
+{
+ "runtimeOptions": {
+ "tfm": "net6.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "6.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "6.0.0"
+ }
+ ],
+ "additionalProbingPaths": [
+ "C:\\Users\\alisa\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\alisa\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfo.cs b/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfo.cs
new file mode 100644
index 0000000..3460477
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyTitleAttribute("DiscordWV")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfoInputs.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..b005ef7
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+93bf2707fc8ea5327c17ec218af70b66fc9df6e97966fd6ae30e8ffcd4ee7ee3
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.Discord.resources b/obj/Debug/net7.0-windows7.0/DiscordWV.Discord.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.Discord.resources differ
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0-windows7.0/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..c3b4cb6
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.GeneratedMSBuildEditorConfig.editorconfig
@@ -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 = net7.0-windows7.0
+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 = DiscordWV
+build_property.ProjectDir = C:\Users\alisa\source\repos\DiscordWV\DiscordWV\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.GlobalUsings.g.cs b/obj/Debug/net7.0-windows7.0/DiscordWV.GlobalUsings.g.cs
new file mode 100644
index 0000000..29685c8
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.Drawing;
+global using global::System.Linq;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
+global using global::System.Windows.Forms;
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.assets.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.assets.cache
new file mode 100644
index 0000000..225a438
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.assets.cache differ
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.AssemblyReference.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0c1e97c
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.BuildWithSkipAnalyzers b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..d047bcf
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+c30292e6f7aa761719958243e791b88274d4dc7b2ed56b2354083e447ecc3084
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.FileListAbsolute.txt b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..6beb071
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.FileListAbsolute.txt
@@ -0,0 +1,35 @@
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\runtimes\win-x86\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\runtimes\win-x64\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\runtimes\win-arm64\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\DiscordWV.exe
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\DiscordWV.deps.json
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\DiscordWV.runtimeconfig.json
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\DiscordWV.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\DiscordWV.pdb
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Microsoft.Web.WebView2.Core.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Microsoft.Web.WebView2.WinForms.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Microsoft.Web.WebView2.Wpf.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.csproj.AssemblyReference.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.csproj.GenerateResource.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.AssemblyInfoInputs.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.AssemblyInfo.cs
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.csproj.CoreCompileInputs.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.csproj.Up2Date
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\refint\DiscordWV.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.pdb
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.genruntimeconfig.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\ref\DiscordWV.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Debug\net7.0-windows7.0\DiscordWV.Discord.resources
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\EasyTabs.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Microsoft.WindowsAPICodePack.Shell.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Microsoft.WindowsAPICodePack.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Svg.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Win32Interop.Dwmapi.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Win32Interop.Gdi32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Win32Interop.Kernel32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Win32Interop.User32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\Win32Interop.Uxtheme.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\WindowTitleControl.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Debug\net7.0-windows7.0\WindowTitleControl.Sample.exe
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.GenerateResource.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.GenerateResource.cache
new file mode 100644
index 0000000..3c92865
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.GenerateResource.cache differ
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.Up2Date b/obj/Debug/net7.0-windows7.0/DiscordWV.csproj.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.designer.deps.json b/obj/Debug/net7.0-windows7.0/DiscordWV.designer.deps.json
new file mode 100644
index 0000000..5e766fe
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.designer.deps.json
@@ -0,0 +1,217 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v7.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v7.0": {
+ "EasyTabs/2.0.0": {
+ "dependencies": {
+ "Svg": "2.4.3",
+ "Win32Interop.Dwmapi": "1.0.1",
+ "Win32Interop.Gdi32": "1.0.1",
+ "Win32Interop.Kernel32": "1.0.1",
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "runtime": {
+ "lib/net40/EasyTabs.dll": {
+ "assemblyVersion": "2.0.0.39",
+ "fileVersion": "2.0.0.39"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.Shell.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/WebView2Loader.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ },
+ "runtimes/win-x64/native/WebView2Loader.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ },
+ "runtimes/win-x86/native/WebView2Loader.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ }
+ }
+ },
+ "Svg/2.4.3": {
+ "runtime": {
+ "lib/Svg.dll": {
+ "assemblyVersion": "2.4.3.29446",
+ "fileVersion": "2.4.3.29446"
+ }
+ }
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Dwmapi.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Gdi32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "runtime": {
+ "lib/Win32Interop.Kernel32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.User32/1.0.1": {
+ "runtime": {
+ "lib/Win32Interop.User32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Uxtheme.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "runtime": {
+ "lib/net45/WindowTitleControl.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "dependencies": {
+ "windowtitlebar-wpf.WindowTitleControl": "1.0.20"
+ },
+ "runtime": {
+ "lib/net45/WindowTitleControl.Sample.exe": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "EasyTabs/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Kfh4mATMLMpWPW+yM3jKndDkJ4LpTtOBjjh0kVHENohcJJyXAQ+OmeMR1qV1Tj70r2tRsTDohcorG5XnC/1+A==",
+ "path": "easytabs/2.0.0",
+ "hashPath": "easytabs.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AC9aWCthS2JvddYA1jl4dFpLBW3GsLRInhp5dkcBzaFXsRehfoUN9olIUsrH41eNaNYd7z9NRvmy81aUA5aD1g==",
+ "path": "microsoft.web.webview2/1.0.2592.51",
+ "hashPath": "microsoft.web.webview2.1.0.2592.51.nupkg.sha512"
+ },
+ "Svg/2.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5HuSl7iaYbMZG9lnuGHnJ+hgiy6stmiRgVYdwAdyPVAdeDG9P5is2K0UT9kM6mKOnhHDjXRok85nx5DNKRgZEg==",
+ "path": "svg/2.4.3",
+ "hashPath": "svg.2.4.3.nupkg.sha512"
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Jkaj/RhMmW0h/eSWV1YKlCW1bkjW9MCGxn21I6cJscz1zb5bq/I6iSfwZxSI63aVo18BSKyONQ78iNZzd4frWA==",
+ "path": "win32interop.dwmapi/1.0.1",
+ "hashPath": "win32interop.dwmapi.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+rtmt0ae7tRfBIEb7kPlw2cWNABLUp5JLqIPi7rMK3HQLWdWIs8T3iEwki2SCSdRHmDSH5S34HE+ytxRsUDEhQ==",
+ "path": "win32interop.gdi32/1.0.1",
+ "hashPath": "win32interop.gdi32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8ApAA5F8N7qZm+SLkfY61qk1mzCsbu8KFEBNnTMwyWO5vbTTXl/0PfT99thP3X5Di+lKWvXvj381N2UG3DYhNQ==",
+ "path": "win32interop.kernel32/1.0.1",
+ "hashPath": "win32interop.kernel32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.User32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrtMD4QYCys/wHKDrvIM62YJJQCeQfPkCK7kYN+dlcz+jVTi2Abtsy+4rzfFzHfhYWpBeA3EoXzqQAJVfN9N/w==",
+ "path": "win32interop.user32/1.0.1",
+ "hashPath": "win32interop.user32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2EjHI+iExj5gl+p4LceG6wOz8FsWLVrbP51D60/ANHiYBSPS5NL3dms1jMNT+0VFQv3vJ0j8FAeWZCFLC1RC+A==",
+ "path": "win32interop.uxtheme/1.0.1",
+ "hashPath": "win32interop.uxtheme.1.0.1.nupkg.sha512"
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IAkDKmUrp2lZpfnmRfcsy2euCnHVo0EbjiSxK9TwEO4MCUJg6AWiIllhJTU0yi/VHY2jEU7/YRSuV2oYGm4f7A==",
+ "path": "windowtitlebar-wpf.windowtitlecontrol/1.0.20",
+ "hashPath": "windowtitlebar-wpf.windowtitlecontrol.1.0.20.nupkg.sha512"
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xM7E7iudWnM8bMjQuPXLGBSdPNHvJ5skM2bbcKI0r2dzAR5fhw97F3s7dl6K2viruXI+Nezop7Gi/gAem5omZA==",
+ "path": "windowtitlebar-wpf.windowtitlecontrol.sample/1.0.20",
+ "hashPath": "windowtitlebar-wpf.windowtitlecontrol.sample.1.0.20.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.designer.runtimeconfig.json b/obj/Debug/net7.0-windows7.0/DiscordWV.designer.runtimeconfig.json
new file mode 100644
index 0000000..b27e6c4
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.designer.runtimeconfig.json
@@ -0,0 +1,24 @@
+{
+ "runtimeOptions": {
+ "tfm": "net7.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "7.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "7.0.0"
+ }
+ ],
+ "additionalProbingPaths": [
+ "C:\\Users\\alisa\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\alisa\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.dll b/obj/Debug/net7.0-windows7.0/DiscordWV.dll
new file mode 100644
index 0000000..3b329bd
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.dll differ
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.genruntimeconfig.cache b/obj/Debug/net7.0-windows7.0/DiscordWV.genruntimeconfig.cache
new file mode 100644
index 0000000..2fbe76e
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/DiscordWV.genruntimeconfig.cache
@@ -0,0 +1 @@
+4dbd0d27f031798b4cd53f3377afd12e8474e8f4de30c6c6a06dc4c44a23e72e
diff --git a/obj/Debug/net7.0-windows7.0/DiscordWV.pdb b/obj/Debug/net7.0-windows7.0/DiscordWV.pdb
new file mode 100644
index 0000000..8ecc40e
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/DiscordWV.pdb differ
diff --git a/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfo.cs b/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfo.cs
new file mode 100644
index 0000000..dc34414
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Transite")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Transite")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Transite")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache b/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..df21062
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+c562373ef59510ffca416619ce0945a311067d43a9ef1c461d3d9ceaa28759f7
diff --git a/obj/Debug/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..826f3db
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig
@@ -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 = net7.0-windows7.0
+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 = Transite
+build_property.ProjectDir = C:\Users\alisa\source\repos\DiscordWV\DiscordWV\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/obj/Debug/net7.0-windows7.0/Transite.GlobalUsings.g.cs b/obj/Debug/net7.0-windows7.0/Transite.GlobalUsings.g.cs
new file mode 100644
index 0000000..29685c8
--- /dev/null
+++ b/obj/Debug/net7.0-windows7.0/Transite.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.Drawing;
+global using global::System.Linq;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
+global using global::System.Windows.Forms;
diff --git a/obj/Debug/net7.0-windows7.0/Transite.assets.cache b/obj/Debug/net7.0-windows7.0/Transite.assets.cache
new file mode 100644
index 0000000..409f27c
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/Transite.assets.cache differ
diff --git a/obj/Debug/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache b/obj/Debug/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0c1e97c
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net7.0-windows7.0/apphost.exe b/obj/Debug/net7.0-windows7.0/apphost.exe
new file mode 100644
index 0000000..6e9216d
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/apphost.exe differ
diff --git a/obj/Debug/net7.0-windows7.0/ref/DiscordWV.dll b/obj/Debug/net7.0-windows7.0/ref/DiscordWV.dll
new file mode 100644
index 0000000..e60fe67
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/ref/DiscordWV.dll differ
diff --git a/obj/Debug/net7.0-windows7.0/refint/DiscordWV.dll b/obj/Debug/net7.0-windows7.0/refint/DiscordWV.dll
new file mode 100644
index 0000000..e60fe67
Binary files /dev/null and b/obj/Debug/net7.0-windows7.0/refint/DiscordWV.dll differ
diff --git a/obj/DiscordWV.csproj.nuget.dgspec.json b/obj/DiscordWV.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..d3c9483
--- /dev/null
+++ b/obj/DiscordWV.csproj.nuget.dgspec.json
@@ -0,0 +1,90 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\DiscordWV.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\DiscordWV.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\DiscordWV.csproj",
+ "projectName": "DiscordWV",
+ "projectPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\DiscordWV.csproj",
+ "packagesPath": "C:\\Users\\alisa\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\alisa\\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": [
+ "net7.0-windows7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "dependencies": {
+ "EasyTabs": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "Microsoft.Web.WebView2": {
+ "target": "Package",
+ "version": "[1.0.2592.51, )"
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample": {
+ "target": "Package",
+ "version": "[1.0.20, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/DiscordWV.csproj.nuget.g.props b/obj/DiscordWV.csproj.nuget.g.props
new file mode 100644
index 0000000..cb00e25
--- /dev/null
+++ b/obj/DiscordWV.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\alisa\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.9.1
+
+
+
+
+
+
+ C:\Users\alisa\.nuget\packages\microsoft.web.webview2\1.0.2592.51
+
+
\ No newline at end of file
diff --git a/obj/DiscordWV.csproj.nuget.g.targets b/obj/DiscordWV.csproj.nuget.g.targets
new file mode 100644
index 0000000..ba33771
--- /dev/null
+++ b/obj/DiscordWV.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Release/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
new file mode 100644
index 0000000..4257f4b
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")]
diff --git a/obj/Release/net7.0-windows7.0/DiscordWV.Discord.resources b/obj/Release/net7.0-windows7.0/DiscordWV.Discord.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/DiscordWV.Discord.resources differ
diff --git a/obj/Release/net7.0-windows7.0/Transite.AssemblyInfo.cs b/obj/Release/net7.0-windows7.0/Transite.AssemblyInfo.cs
new file mode 100644
index 0000000..b620f48
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.AssemblyInfo.cs
@@ -0,0 +1,25 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Transite")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("Transite")]
+[assembly: System.Reflection.AssemblyTitleAttribute("Transite")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+[assembly: System.Runtime.Versioning.TargetPlatformAttribute("Windows7.0")]
+[assembly: System.Runtime.Versioning.SupportedOSPlatformAttribute("Windows7.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/obj/Release/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache b/obj/Release/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..9ab8958
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+08ac9f5b231798627f5a47066ee9660918192d8ebc85d16c07451a149f4d7450
diff --git a/obj/Release/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..826f3db
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.GeneratedMSBuildEditorConfig.editorconfig
@@ -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 = net7.0-windows7.0
+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 = Transite
+build_property.ProjectDir = C:\Users\alisa\source\repos\DiscordWV\DiscordWV\
+build_property.EnableComHosting =
+build_property.EnableGeneratedComInterfaceComImportInterop =
diff --git a/obj/Release/net7.0-windows7.0/Transite.GlobalUsings.g.cs b/obj/Release/net7.0-windows7.0/Transite.GlobalUsings.g.cs
new file mode 100644
index 0000000..29685c8
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.GlobalUsings.g.cs
@@ -0,0 +1,8 @@
+//
+global using global::System;
+global using global::System.Collections.Generic;
+global using global::System.Drawing;
+global using global::System.Linq;
+global using global::System.Threading;
+global using global::System.Threading.Tasks;
+global using global::System.Windows.Forms;
diff --git a/obj/Release/net7.0-windows7.0/Transite.assets.cache b/obj/Release/net7.0-windows7.0/Transite.assets.cache
new file mode 100644
index 0000000..820b07f
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/Transite.assets.cache differ
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache b/obj/Release/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..0c1e97c
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/Transite.csproj.AssemblyReference.cache differ
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.BuildWithSkipAnalyzers b/obj/Release/net7.0-windows7.0/Transite.csproj.BuildWithSkipAnalyzers
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.CoreCompileInputs.cache b/obj/Release/net7.0-windows7.0/Transite.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..b21bab3
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+c4a25ca7c7c00daa849d0e1d4566c853b1e9564c4c28d678a7d3fe8c71c47657
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.FileListAbsolute.txt b/obj/Release/net7.0-windows7.0/Transite.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..11e8a50
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.csproj.FileListAbsolute.txt
@@ -0,0 +1,35 @@
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\runtimes\win-x86\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\runtimes\win-x64\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\runtimes\win-arm64\native\WebView2Loader.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Transite.exe
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Transite.deps.json
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Transite.runtimeconfig.json
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Transite.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Transite.pdb
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\EasyTabs.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Microsoft.WindowsAPICodePack.Shell.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Microsoft.WindowsAPICodePack.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Microsoft.Web.WebView2.Core.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Microsoft.Web.WebView2.WinForms.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Microsoft.Web.WebView2.Wpf.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Svg.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Win32Interop.Dwmapi.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Win32Interop.Gdi32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Win32Interop.Kernel32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Win32Interop.User32.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\Win32Interop.Uxtheme.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\WindowTitleControl.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\bin\Release\net7.0-windows7.0\WindowTitleControl.Sample.exe
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.csproj.AssemblyReference.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\DiscordWV.Discord.resources
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.csproj.GenerateResource.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.AssemblyInfoInputs.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.AssemblyInfo.cs
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.csproj.CoreCompileInputs.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.csproj.Up2Date
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\refint\Transite.dll
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.pdb
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\Transite.genruntimeconfig.cache
+C:\Users\alisa\source\repos\DiscordWV\DiscordWV\obj\Release\net7.0-windows7.0\ref\Transite.dll
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.GenerateResource.cache b/obj/Release/net7.0-windows7.0/Transite.csproj.GenerateResource.cache
new file mode 100644
index 0000000..3c92865
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/Transite.csproj.GenerateResource.cache differ
diff --git a/obj/Release/net7.0-windows7.0/Transite.csproj.Up2Date b/obj/Release/net7.0-windows7.0/Transite.csproj.Up2Date
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Release/net7.0-windows7.0/Transite.designer.deps.json b/obj/Release/net7.0-windows7.0/Transite.designer.deps.json
new file mode 100644
index 0000000..5e766fe
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.designer.deps.json
@@ -0,0 +1,217 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v7.0",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v7.0": {
+ "EasyTabs/2.0.0": {
+ "dependencies": {
+ "Svg": "2.4.3",
+ "Win32Interop.Dwmapi": "1.0.1",
+ "Win32Interop.Gdi32": "1.0.1",
+ "Win32Interop.Kernel32": "1.0.1",
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "runtime": {
+ "lib/net40/EasyTabs.dll": {
+ "assemblyVersion": "2.0.0.39",
+ "fileVersion": "2.0.0.39"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.Shell.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll": {
+ "assemblyVersion": "1.0.2592.51",
+ "fileVersion": "1.0.2592.51"
+ }
+ },
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/WebView2Loader.dll": {
+ "rid": "win-arm64",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ },
+ "runtimes/win-x64/native/WebView2Loader.dll": {
+ "rid": "win-x64",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ },
+ "runtimes/win-x86/native/WebView2Loader.dll": {
+ "rid": "win-x86",
+ "assetType": "native",
+ "fileVersion": "1.0.2592.51"
+ }
+ }
+ },
+ "Svg/2.4.3": {
+ "runtime": {
+ "lib/Svg.dll": {
+ "assemblyVersion": "2.4.3.29446",
+ "fileVersion": "2.4.3.29446"
+ }
+ }
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Dwmapi.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Gdi32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "runtime": {
+ "lib/Win32Interop.Kernel32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.User32/1.0.1": {
+ "runtime": {
+ "lib/Win32Interop.User32.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "runtime": {
+ "lib/Win32Interop.Uxtheme.dll": {
+ "assemblyVersion": "1.0.1.0",
+ "fileVersion": "1.0.1.0"
+ }
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "runtime": {
+ "lib/net45/WindowTitleControl.dll": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "dependencies": {
+ "windowtitlebar-wpf.WindowTitleControl": "1.0.20"
+ },
+ "runtime": {
+ "lib/net45/WindowTitleControl.Sample.exe": {
+ "assemblyVersion": "1.0.0.0",
+ "fileVersion": "1.0.0.0"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "EasyTabs/2.0.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-3Kfh4mATMLMpWPW+yM3jKndDkJ4LpTtOBjjh0kVHENohcJJyXAQ+OmeMR1qV1Tj70r2tRsTDohcorG5XnC/1+A==",
+ "path": "easytabs/2.0.0",
+ "hashPath": "easytabs.2.0.0.nupkg.sha512"
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-AC9aWCthS2JvddYA1jl4dFpLBW3GsLRInhp5dkcBzaFXsRehfoUN9olIUsrH41eNaNYd7z9NRvmy81aUA5aD1g==",
+ "path": "microsoft.web.webview2/1.0.2592.51",
+ "hashPath": "microsoft.web.webview2.1.0.2592.51.nupkg.sha512"
+ },
+ "Svg/2.4.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-5HuSl7iaYbMZG9lnuGHnJ+hgiy6stmiRgVYdwAdyPVAdeDG9P5is2K0UT9kM6mKOnhHDjXRok85nx5DNKRgZEg==",
+ "path": "svg/2.4.3",
+ "hashPath": "svg.2.4.3.nupkg.sha512"
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-Jkaj/RhMmW0h/eSWV1YKlCW1bkjW9MCGxn21I6cJscz1zb5bq/I6iSfwZxSI63aVo18BSKyONQ78iNZzd4frWA==",
+ "path": "win32interop.dwmapi/1.0.1",
+ "hashPath": "win32interop.dwmapi.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-+rtmt0ae7tRfBIEb7kPlw2cWNABLUp5JLqIPi7rMK3HQLWdWIs8T3iEwki2SCSdRHmDSH5S34HE+ytxRsUDEhQ==",
+ "path": "win32interop.gdi32/1.0.1",
+ "hashPath": "win32interop.gdi32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-8ApAA5F8N7qZm+SLkfY61qk1mzCsbu8KFEBNnTMwyWO5vbTTXl/0PfT99thP3X5Di+lKWvXvj381N2UG3DYhNQ==",
+ "path": "win32interop.kernel32/1.0.1",
+ "hashPath": "win32interop.kernel32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.User32/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-GrtMD4QYCys/wHKDrvIM62YJJQCeQfPkCK7kYN+dlcz+jVTi2Abtsy+4rzfFzHfhYWpBeA3EoXzqQAJVfN9N/w==",
+ "path": "win32interop.user32/1.0.1",
+ "hashPath": "win32interop.user32.1.0.1.nupkg.sha512"
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-2EjHI+iExj5gl+p4LceG6wOz8FsWLVrbP51D60/ANHiYBSPS5NL3dms1jMNT+0VFQv3vJ0j8FAeWZCFLC1RC+A==",
+ "path": "win32interop.uxtheme/1.0.1",
+ "hashPath": "win32interop.uxtheme.1.0.1.nupkg.sha512"
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-IAkDKmUrp2lZpfnmRfcsy2euCnHVo0EbjiSxK9TwEO4MCUJg6AWiIllhJTU0yi/VHY2jEU7/YRSuV2oYGm4f7A==",
+ "path": "windowtitlebar-wpf.windowtitlecontrol/1.0.20",
+ "hashPath": "windowtitlebar-wpf.windowtitlecontrol.1.0.20.nupkg.sha512"
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-xM7E7iudWnM8bMjQuPXLGBSdPNHvJ5skM2bbcKI0r2dzAR5fhw97F3s7dl6K2viruXI+Nezop7Gi/gAem5omZA==",
+ "path": "windowtitlebar-wpf.windowtitlecontrol.sample/1.0.20",
+ "hashPath": "windowtitlebar-wpf.windowtitlecontrol.sample.1.0.20.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Release/net7.0-windows7.0/Transite.designer.runtimeconfig.json b/obj/Release/net7.0-windows7.0/Transite.designer.runtimeconfig.json
new file mode 100644
index 0000000..a022d58
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.designer.runtimeconfig.json
@@ -0,0 +1,25 @@
+{
+ "runtimeOptions": {
+ "tfm": "net7.0",
+ "frameworks": [
+ {
+ "name": "Microsoft.NETCore.App",
+ "version": "7.0.0"
+ },
+ {
+ "name": "Microsoft.WindowsDesktop.App",
+ "version": "7.0.0"
+ }
+ ],
+ "additionalProbingPaths": [
+ "C:\\Users\\alisa\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\alisa\\.nuget\\packages",
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configProperties": {
+ "System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
+ "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": true,
+ "Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Release/net7.0-windows7.0/Transite.dll b/obj/Release/net7.0-windows7.0/Transite.dll
new file mode 100644
index 0000000..301ff08
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/Transite.dll differ
diff --git a/obj/Release/net7.0-windows7.0/Transite.genruntimeconfig.cache b/obj/Release/net7.0-windows7.0/Transite.genruntimeconfig.cache
new file mode 100644
index 0000000..7532fce
--- /dev/null
+++ b/obj/Release/net7.0-windows7.0/Transite.genruntimeconfig.cache
@@ -0,0 +1 @@
+414bb37e3b5e187957e8c9c51330c1595269ebe5d56ee73385a3e7b11e8e3d7e
diff --git a/obj/Release/net7.0-windows7.0/Transite.pdb b/obj/Release/net7.0-windows7.0/Transite.pdb
new file mode 100644
index 0000000..a8aa406
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/Transite.pdb differ
diff --git a/obj/Release/net7.0-windows7.0/apphost.exe b/obj/Release/net7.0-windows7.0/apphost.exe
new file mode 100644
index 0000000..c425eb6
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/apphost.exe differ
diff --git a/obj/Release/net7.0-windows7.0/ref/Transite.dll b/obj/Release/net7.0-windows7.0/ref/Transite.dll
new file mode 100644
index 0000000..6365fa7
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/ref/Transite.dll differ
diff --git a/obj/Release/net7.0-windows7.0/refint/Transite.dll b/obj/Release/net7.0-windows7.0/refint/Transite.dll
new file mode 100644
index 0000000..6365fa7
Binary files /dev/null and b/obj/Release/net7.0-windows7.0/refint/Transite.dll differ
diff --git a/obj/Transite.csproj.nuget.dgspec.json b/obj/Transite.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..a41bdaa
--- /dev/null
+++ b/obj/Transite.csproj.nuget.dgspec.json
@@ -0,0 +1,90 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj",
+ "projectName": "Transite",
+ "projectPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj",
+ "packagesPath": "C:\\Users\\alisa\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\alisa\\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": [
+ "net7.0-windows7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "dependencies": {
+ "EasyTabs": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "Microsoft.Web.WebView2": {
+ "target": "Package",
+ "version": "[1.0.2592.51, )"
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample": {
+ "target": "Package",
+ "version": "[1.0.20, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/obj/Transite.csproj.nuget.g.props b/obj/Transite.csproj.nuget.g.props
new file mode 100644
index 0000000..cb00e25
--- /dev/null
+++ b/obj/Transite.csproj.nuget.g.props
@@ -0,0 +1,19 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\alisa\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ PackageReference
+ 6.9.1
+
+
+
+
+
+
+ C:\Users\alisa\.nuget\packages\microsoft.web.webview2\1.0.2592.51
+
+
\ No newline at end of file
diff --git a/obj/Transite.csproj.nuget.g.targets b/obj/Transite.csproj.nuget.g.targets
new file mode 100644
index 0000000..ba33771
--- /dev/null
+++ b/obj/Transite.csproj.nuget.g.targets
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
new file mode 100644
index 0000000..9c744ca
--- /dev/null
+++ b/obj/project.assets.json
@@ -0,0 +1,557 @@
+{
+ "version": 3,
+ "targets": {
+ "net7.0-windows7.0": {
+ "EasyTabs/2.0.0": {
+ "type": "package",
+ "dependencies": {
+ "Svg": "2.4.3",
+ "Win32Interop.Dwmapi": "1.0.1",
+ "Win32Interop.Gdi32": "1.0.1",
+ "Win32Interop.Kernel32": "1.0.1",
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "compile": {
+ "lib/net40/EasyTabs.dll": {
+ "related": ".XML"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.Shell.dll": {},
+ "lib/net40/Microsoft.WindowsAPICodePack.dll": {}
+ },
+ "runtime": {
+ "lib/net40/EasyTabs.dll": {
+ "related": ".XML"
+ },
+ "lib/net40/Microsoft.WindowsAPICodePack.Shell.dll": {},
+ "lib/net40/Microsoft.WindowsAPICodePack.dll": {}
+ }
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "type": "package",
+ "compile": {
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll": {
+ "related": ".xml"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll": {
+ "related": ".xml"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll": {
+ "related": ".xml"
+ }
+ },
+ "runtime": {
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll": {
+ "related": ".xml"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll": {
+ "related": ".xml"
+ },
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll": {
+ "related": ".xml"
+ }
+ },
+ "build": {
+ "build/Microsoft.Web.WebView2.targets": {}
+ },
+ "runtimeTargets": {
+ "runtimes/win-arm64/native/WebView2Loader.dll": {
+ "assetType": "native",
+ "rid": "win-arm64"
+ },
+ "runtimes/win-x64/native/WebView2Loader.dll": {
+ "assetType": "native",
+ "rid": "win-x64"
+ },
+ "runtimes/win-x86/native/WebView2Loader.dll": {
+ "assetType": "native",
+ "rid": "win-x86"
+ }
+ }
+ },
+ "Svg/2.4.3": {
+ "type": "package",
+ "compile": {
+ "lib/Svg.dll": {}
+ },
+ "runtime": {
+ "lib/Svg.dll": {}
+ }
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1",
+ "Win32Interop.Uxtheme": "1.0.1"
+ },
+ "compile": {
+ "lib/Win32Interop.Dwmapi.dll": {}
+ },
+ "runtime": {
+ "lib/Win32Interop.Dwmapi.dll": {}
+ }
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "compile": {
+ "lib/Win32Interop.Gdi32.dll": {}
+ },
+ "runtime": {
+ "lib/Win32Interop.Gdi32.dll": {}
+ }
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/Win32Interop.Kernel32.dll": {}
+ },
+ "runtime": {
+ "lib/Win32Interop.Kernel32.dll": {}
+ }
+ },
+ "Win32Interop.User32/1.0.1": {
+ "type": "package",
+ "compile": {
+ "lib/Win32Interop.User32.dll": {}
+ },
+ "runtime": {
+ "lib/Win32Interop.User32.dll": {}
+ }
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "type": "package",
+ "dependencies": {
+ "Win32Interop.User32": "1.0.1"
+ },
+ "compile": {
+ "lib/Win32Interop.Uxtheme.dll": {}
+ },
+ "runtime": {
+ "lib/Win32Interop.Uxtheme.dll": {}
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "type": "package",
+ "compile": {
+ "lib/net45/WindowTitleControl.dll": {}
+ },
+ "runtime": {
+ "lib/net45/WindowTitleControl.dll": {}
+ }
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "type": "package",
+ "dependencies": {
+ "windowtitlebar-wpf.WindowTitleControl": "1.0.20"
+ },
+ "compile": {
+ "lib/net45/WindowTitleControl.Sample.exe": {}
+ },
+ "runtime": {
+ "lib/net45/WindowTitleControl.Sample.exe": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "EasyTabs/2.0.0": {
+ "sha512": "3Kfh4mATMLMpWPW+yM3jKndDkJ4LpTtOBjjh0kVHENohcJJyXAQ+OmeMR1qV1Tj70r2tRsTDohcorG5XnC/1+A==",
+ "type": "package",
+ "path": "easytabs/2.0.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "easytabs.2.0.0.nupkg.sha512",
+ "easytabs.nuspec",
+ "lib/net40/EasyTabs.XML",
+ "lib/net40/EasyTabs.dll",
+ "lib/net40/Microsoft.WindowsAPICodePack.Shell.dll",
+ "lib/net40/Microsoft.WindowsAPICodePack.dll"
+ ]
+ },
+ "Microsoft.Web.WebView2/1.0.2592.51": {
+ "sha512": "AC9aWCthS2JvddYA1jl4dFpLBW3GsLRInhp5dkcBzaFXsRehfoUN9olIUsrH41eNaNYd7z9NRvmy81aUA5aD1g==",
+ "type": "package",
+ "path": "microsoft.web.webview2/1.0.2592.51",
+ "hasTools": true,
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "LICENSE.txt",
+ "NOTICE.txt",
+ "WebView2.idl",
+ "WebView2.tlb",
+ "build/Common.targets",
+ "build/Microsoft.Web.WebView2.targets",
+ "build/WebView2Rules.Project.xml",
+ "build/native/Microsoft.Web.WebView2.targets",
+ "build/native/arm64/WebView2Loader.dll",
+ "build/native/arm64/WebView2Loader.dll.lib",
+ "build/native/arm64/WebView2LoaderStatic.lib",
+ "build/native/include-winrt/WebView2Interop.h",
+ "build/native/include-winrt/WebView2Interop.idl",
+ "build/native/include-winrt/WebView2Interop.tlb",
+ "build/native/include/WebView2.h",
+ "build/native/include/WebView2EnvironmentOptions.h",
+ "build/native/x64/WebView2Loader.dll",
+ "build/native/x64/WebView2Loader.dll.lib",
+ "build/native/x64/WebView2LoaderStatic.lib",
+ "build/native/x86/WebView2Loader.dll",
+ "build/native/x86/WebView2Loader.dll.lib",
+ "build/native/x86/WebView2LoaderStatic.lib",
+ "build/wv2winrt.targets",
+ "lib/Microsoft.Web.WebView2.Core.winmd",
+ "lib/net462/Microsoft.Web.WebView2.Core.dll",
+ "lib/net462/Microsoft.Web.WebView2.Core.xml",
+ "lib/net462/Microsoft.Web.WebView2.WinForms.dll",
+ "lib/net462/Microsoft.Web.WebView2.WinForms.xml",
+ "lib/net462/Microsoft.Web.WebView2.Wpf.dll",
+ "lib/net462/Microsoft.Web.WebView2.Wpf.xml",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.dll",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Core.xml",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.dll",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.WinForms.xml",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.dll",
+ "lib/netcoreapp3.0/Microsoft.Web.WebView2.Wpf.xml",
+ "microsoft.web.webview2.1.0.2592.51.nupkg.sha512",
+ "microsoft.web.webview2.nuspec",
+ "runtimes/win-arm64/native/WebView2Loader.dll",
+ "runtimes/win-arm64/native_uap/Microsoft.Web.WebView2.Core.dll",
+ "runtimes/win-x64/native/WebView2Loader.dll",
+ "runtimes/win-x64/native_uap/Microsoft.Web.WebView2.Core.dll",
+ "runtimes/win-x86/native/WebView2Loader.dll",
+ "runtimes/win-x86/native_uap/Microsoft.Web.WebView2.Core.dll",
+ "tools/VisualStudioToolsManifest.xml",
+ "tools/wv2winrt/Antlr3.Runtime.dll",
+ "tools/wv2winrt/Antlr4.StringTemplate.dll",
+ "tools/wv2winrt/System.Buffers.dll",
+ "tools/wv2winrt/System.CommandLine.DragonFruit.dll",
+ "tools/wv2winrt/System.CommandLine.Rendering.dll",
+ "tools/wv2winrt/System.CommandLine.dll",
+ "tools/wv2winrt/System.Memory.dll",
+ "tools/wv2winrt/System.Numerics.Vectors.dll",
+ "tools/wv2winrt/System.Runtime.CompilerServices.Unsafe.dll",
+ "tools/wv2winrt/codegen_util.dll",
+ "tools/wv2winrt/concrt140_app.dll",
+ "tools/wv2winrt/cs/System.CommandLine.resources.dll",
+ "tools/wv2winrt/de/System.CommandLine.resources.dll",
+ "tools/wv2winrt/es/System.CommandLine.resources.dll",
+ "tools/wv2winrt/fr/System.CommandLine.resources.dll",
+ "tools/wv2winrt/it/System.CommandLine.resources.dll",
+ "tools/wv2winrt/ja/System.CommandLine.resources.dll",
+ "tools/wv2winrt/ko/System.CommandLine.resources.dll",
+ "tools/wv2winrt/msvcp140_1_app.dll",
+ "tools/wv2winrt/msvcp140_2_app.dll",
+ "tools/wv2winrt/msvcp140_app.dll",
+ "tools/wv2winrt/pl/System.CommandLine.resources.dll",
+ "tools/wv2winrt/pt-BR/System.CommandLine.resources.dll",
+ "tools/wv2winrt/ru/System.CommandLine.resources.dll",
+ "tools/wv2winrt/tr/System.CommandLine.resources.dll",
+ "tools/wv2winrt/type_hierarchy.dll",
+ "tools/wv2winrt/vcamp140_app.dll",
+ "tools/wv2winrt/vccorlib140_app.dll",
+ "tools/wv2winrt/vcomp140_app.dll",
+ "tools/wv2winrt/vcruntime140_app.dll",
+ "tools/wv2winrt/winrt_winmd.dll",
+ "tools/wv2winrt/winrt_winmd.winmd",
+ "tools/wv2winrt/wv2winrt.exe",
+ "tools/wv2winrt/wv2winrt.exe.config",
+ "tools/wv2winrt/wv2winrt.xml",
+ "tools/wv2winrt/zh-Hans/System.CommandLine.resources.dll",
+ "tools/wv2winrt/zh-Hant/System.CommandLine.resources.dll"
+ ]
+ },
+ "Svg/2.4.3": {
+ "sha512": "5HuSl7iaYbMZG9lnuGHnJ+hgiy6stmiRgVYdwAdyPVAdeDG9P5is2K0UT9kM6mKOnhHDjXRok85nx5DNKRgZEg==",
+ "type": "package",
+ "path": "svg/2.4.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Svg.XML",
+ "lib/Svg.dll",
+ "lib/Svg.pdb",
+ "svg.2.4.3.nupkg.sha512",
+ "svg.nuspec"
+ ]
+ },
+ "Win32Interop.Dwmapi/1.0.1": {
+ "sha512": "Jkaj/RhMmW0h/eSWV1YKlCW1bkjW9MCGxn21I6cJscz1zb5bq/I6iSfwZxSI63aVo18BSKyONQ78iNZzd4frWA==",
+ "type": "package",
+ "path": "win32interop.dwmapi/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Win32Interop.Dwmapi.dll",
+ "lib/Win32Interop.Dwmapi.pdb",
+ "win32interop.dwmapi.1.0.1.nupkg.sha512",
+ "win32interop.dwmapi.nuspec"
+ ]
+ },
+ "Win32Interop.Gdi32/1.0.1": {
+ "sha512": "+rtmt0ae7tRfBIEb7kPlw2cWNABLUp5JLqIPi7rMK3HQLWdWIs8T3iEwki2SCSdRHmDSH5S34HE+ytxRsUDEhQ==",
+ "type": "package",
+ "path": "win32interop.gdi32/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Win32Interop.Gdi32.XML",
+ "lib/Win32Interop.Gdi32.dll",
+ "lib/Win32Interop.Gdi32.pdb",
+ "win32interop.gdi32.1.0.1.nupkg.sha512",
+ "win32interop.gdi32.nuspec"
+ ]
+ },
+ "Win32Interop.Kernel32/1.0.1": {
+ "sha512": "8ApAA5F8N7qZm+SLkfY61qk1mzCsbu8KFEBNnTMwyWO5vbTTXl/0PfT99thP3X5Di+lKWvXvj381N2UG3DYhNQ==",
+ "type": "package",
+ "path": "win32interop.kernel32/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Win32Interop.Kernel32.dll",
+ "lib/Win32Interop.Kernel32.pdb",
+ "win32interop.kernel32.1.0.1.nupkg.sha512",
+ "win32interop.kernel32.nuspec"
+ ]
+ },
+ "Win32Interop.User32/1.0.1": {
+ "sha512": "GrtMD4QYCys/wHKDrvIM62YJJQCeQfPkCK7kYN+dlcz+jVTi2Abtsy+4rzfFzHfhYWpBeA3EoXzqQAJVfN9N/w==",
+ "type": "package",
+ "path": "win32interop.user32/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Win32Interop.User32.dll",
+ "lib/Win32Interop.User32.pdb",
+ "win32interop.user32.1.0.1.nupkg.sha512",
+ "win32interop.user32.nuspec"
+ ]
+ },
+ "Win32Interop.Uxtheme/1.0.1": {
+ "sha512": "2EjHI+iExj5gl+p4LceG6wOz8FsWLVrbP51D60/ANHiYBSPS5NL3dms1jMNT+0VFQv3vJ0j8FAeWZCFLC1RC+A==",
+ "type": "package",
+ "path": "win32interop.uxtheme/1.0.1",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/Win32Interop.Uxtheme.dll",
+ "lib/Win32Interop.Uxtheme.pdb",
+ "win32interop.uxtheme.1.0.1.nupkg.sha512",
+ "win32interop.uxtheme.nuspec"
+ ]
+ },
+ "windowtitlebar-wpf.WindowTitleControl/1.0.20": {
+ "sha512": "IAkDKmUrp2lZpfnmRfcsy2euCnHVo0EbjiSxK9TwEO4MCUJg6AWiIllhJTU0yi/VHY2jEU7/YRSuV2oYGm4f7A==",
+ "type": "package",
+ "path": "windowtitlebar-wpf.windowtitlecontrol/1.0.20",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/WindowTitleControl.dll",
+ "windowtitlebar-wpf.windowtitlecontrol.1.0.20.nupkg.sha512",
+ "windowtitlebar-wpf.windowtitlecontrol.nuspec"
+ ]
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample/1.0.20": {
+ "sha512": "xM7E7iudWnM8bMjQuPXLGBSdPNHvJ5skM2bbcKI0r2dzAR5fhw97F3s7dl6K2viruXI+Nezop7Gi/gAem5omZA==",
+ "type": "package",
+ "path": "windowtitlebar-wpf.windowtitlecontrol.sample/1.0.20",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "lib/net45/WindowTitleControl.Sample.exe",
+ "windowtitlebar-wpf.windowtitlecontrol.sample.1.0.20.nupkg.sha512",
+ "windowtitlebar-wpf.windowtitlecontrol.sample.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ "net7.0-windows7.0": [
+ "EasyTabs >= 2.0.0",
+ "Microsoft.Web.WebView2 >= 1.0.2592.51",
+ "windowtitlebar-wpf.WindowTitleControl.Sample >= 1.0.20"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\alisa\\.nuget\\packages\\": {},
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj",
+ "projectName": "Transite",
+ "projectPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj",
+ "packagesPath": "C:\\Users\\alisa\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\obj\\",
+ "projectStyle": "PackageReference",
+ "fallbackFolders": [
+ "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
+ ],
+ "configFilePaths": [
+ "C:\\Users\\alisa\\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": [
+ "net7.0-windows7.0"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "C:\\Program Files\\dotnet\\library-packs": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ },
+ "restoreAuditProperties": {
+ "enableAudit": "true",
+ "auditLevel": "low",
+ "auditMode": "direct"
+ }
+ },
+ "frameworks": {
+ "net7.0-windows7.0": {
+ "targetAlias": "net7.0-windows7.0",
+ "dependencies": {
+ "EasyTabs": {
+ "target": "Package",
+ "version": "[2.0.0, )"
+ },
+ "Microsoft.Web.WebView2": {
+ "target": "Package",
+ "version": "[1.0.2592.51, )"
+ },
+ "windowtitlebar-wpf.WindowTitleControl.Sample": {
+ "target": "Package",
+ "version": "[1.0.20, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48",
+ "net481"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ },
+ "Microsoft.WindowsDesktop.App": {
+ "privateAssets": "none"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.200\\RuntimeIdentifierGraph.json"
+ }
+ }
+ },
+ "logs": [
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'EasyTabs 2.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "EasyTabs",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Svg 2.4.3' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Svg",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Dwmapi 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Dwmapi",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Gdi32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Gdi32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Kernel32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Kernel32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.User32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.User32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Uxtheme 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Uxtheme",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'windowtitlebar-wpf.WindowTitleControl 1.0.20' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "windowtitlebar-wpf.WindowTitleControl",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'windowtitlebar-wpf.WindowTitleControl.Sample 1.0.20' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "windowtitlebar-wpf.WindowTitleControl.Sample",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ }
+ ]
+}
\ No newline at end of file
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
new file mode 100644
index 0000000..9e35e83
--- /dev/null
+++ b/obj/project.nuget.cache
@@ -0,0 +1,110 @@
+{
+ "version": 2,
+ "dgSpecHash": "3BASQJaJElQIIbHswtQ1iuTzST2ItoSGUXZ6m/OiUtuIFrEtbg59avyXMYPtRIPpNUfYyAV2UOysZjQV1CvFpA==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\alisa\\source\\repos\\DiscordWV\\DiscordWV\\Transite.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\alisa\\.nuget\\packages\\easytabs\\2.0.0\\easytabs.2.0.0.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\microsoft.web.webview2\\1.0.2592.51\\microsoft.web.webview2.1.0.2592.51.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\svg\\2.4.3\\svg.2.4.3.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\win32interop.dwmapi\\1.0.1\\win32interop.dwmapi.1.0.1.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\win32interop.gdi32\\1.0.1\\win32interop.gdi32.1.0.1.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\win32interop.kernel32\\1.0.1\\win32interop.kernel32.1.0.1.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\win32interop.user32\\1.0.1\\win32interop.user32.1.0.1.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\win32interop.uxtheme\\1.0.1\\win32interop.uxtheme.1.0.1.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\windowtitlebar-wpf.windowtitlecontrol\\1.0.20\\windowtitlebar-wpf.windowtitlecontrol.1.0.20.nupkg.sha512",
+ "C:\\Users\\alisa\\.nuget\\packages\\windowtitlebar-wpf.windowtitlecontrol.sample\\1.0.20\\windowtitlebar-wpf.windowtitlecontrol.sample.1.0.20.nupkg.sha512"
+ ],
+ "logs": [
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'EasyTabs 2.0.0' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "EasyTabs",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Svg 2.4.3' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Svg",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Dwmapi 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Dwmapi",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Gdi32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Gdi32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Kernel32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Kernel32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.User32 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.User32",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'Win32Interop.Uxtheme 1.0.1' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "Win32Interop.Uxtheme",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'windowtitlebar-wpf.WindowTitleControl 1.0.20' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "windowtitlebar-wpf.WindowTitleControl",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ },
+ {
+ "code": "NU1701",
+ "level": "Warning",
+ "warningLevel": 1,
+ "message": "Package 'windowtitlebar-wpf.WindowTitleControl.Sample 1.0.20' was restored using '.NETFramework,Version=v4.6.1, .NETFramework,Version=v4.6.2, .NETFramework,Version=v4.7, .NETFramework,Version=v4.7.1, .NETFramework,Version=v4.7.2, .NETFramework,Version=v4.8, .NETFramework,Version=v4.8.1' instead of the project target framework 'net7.0-windows7.0'. This package may not be fully compatible with your project.",
+ "libraryId": "windowtitlebar-wpf.WindowTitleControl.Sample",
+ "targetGraphs": [
+ "net7.0-windows7.0"
+ ]
+ }
+ ]
+}
\ No newline at end of file