diff --git a/.vs/ARCHBLOXLauncherGUI/DesignTimeBuild/.dtbcache.v2 b/.vs/ARCHBLOXLauncherGUI/DesignTimeBuild/.dtbcache.v2 index d6f55cc..9509847 100644 Binary files a/.vs/ARCHBLOXLauncherGUI/DesignTimeBuild/.dtbcache.v2 and b/.vs/ARCHBLOXLauncherGUI/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/ARCHBLOXLauncherGUI/FileContentIndex/f96205b8-be0f-47bf-8e46-6f85b50f3993.vsidx b/.vs/ARCHBLOXLauncherGUI/FileContentIndex/2debf122-8710-4a60-b19c-f154bb20a3b8.vsidx similarity index 100% rename from .vs/ARCHBLOXLauncherGUI/FileContentIndex/f96205b8-be0f-47bf-8e46-6f85b50f3993.vsidx rename to .vs/ARCHBLOXLauncherGUI/FileContentIndex/2debf122-8710-4a60-b19c-f154bb20a3b8.vsidx diff --git a/.vs/ARCHBLOXLauncherGUI/FileContentIndex/b9ac20c1-c840-436e-ac6f-71d7633c3e54.vsidx b/.vs/ARCHBLOXLauncherGUI/FileContentIndex/b9ac20c1-c840-436e-ac6f-71d7633c3e54.vsidx new file mode 100644 index 0000000..a25a693 Binary files /dev/null and b/.vs/ARCHBLOXLauncherGUI/FileContentIndex/b9ac20c1-c840-436e-ac6f-71d7633c3e54.vsidx differ diff --git a/.vs/ARCHBLOXLauncherGUI/FileContentIndex/e613e3b4-b76d-4184-bbe5-685cbdd29437.vsidx b/.vs/ARCHBLOXLauncherGUI/FileContentIndex/e613e3b4-b76d-4184-bbe5-685cbdd29437.vsidx deleted file mode 100644 index 93d10c4..0000000 Binary files a/.vs/ARCHBLOXLauncherGUI/FileContentIndex/e613e3b4-b76d-4184-bbe5-685cbdd29437.vsidx and /dev/null differ diff --git a/.vs/ARCHBLOXLauncherGUI/FileContentIndex/51ac3f34-593c-4fd6-a710-5ad6af3e13c5.vsidx b/.vs/ARCHBLOXLauncherGUI/FileContentIndex/e74e3429-20e4-4d36-a3e2-79051410c020.vsidx similarity index 100% rename from .vs/ARCHBLOXLauncherGUI/FileContentIndex/51ac3f34-593c-4fd6-a710-5ad6af3e13c5.vsidx rename to .vs/ARCHBLOXLauncherGUI/FileContentIndex/e74e3429-20e4-4d36-a3e2-79051410c020.vsidx diff --git a/.vs/ARCHBLOXLauncherGUI/v17/.futdcache.v2 b/.vs/ARCHBLOXLauncherGUI/v17/.futdcache.v2 new file mode 100644 index 0000000..bb2d6a9 Binary files /dev/null and b/.vs/ARCHBLOXLauncherGUI/v17/.futdcache.v2 differ diff --git a/.vs/ARCHBLOXLauncherGUI/v17/.suo b/.vs/ARCHBLOXLauncherGUI/v17/.suo index 040f913..940ea6f 100644 Binary files a/.vs/ARCHBLOXLauncherGUI/v17/.suo and b/.vs/ARCHBLOXLauncherGUI/v17/.suo differ diff --git a/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v2 b/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v2 index 25fa285..0feaf43 100644 Binary files a/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v2 and b/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v2 differ diff --git a/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v5.1 b/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v5.1 new file mode 100644 index 0000000..326e226 Binary files /dev/null and b/.vs/ProjectEvaluation/archbloxlaunchergui.metadata.v5.1 differ diff --git a/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v2 b/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v2 index b772743..71e4479 100644 Binary files a/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v2 and b/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v2 differ diff --git a/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v5.1 b/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v5.1 new file mode 100644 index 0000000..e95ffd2 Binary files /dev/null and b/.vs/ProjectEvaluation/archbloxlaunchergui.projects.v5.1 differ diff --git a/ARCHBLOXLauncherGUI.csproj.user b/ARCHBLOXLauncherGUI.csproj.user index 3494964..7ac85d8 100644 --- a/ARCHBLOXLauncherGUI.csproj.user +++ b/ARCHBLOXLauncherGUI.csproj.user @@ -1,7 +1,7 @@  - <_LastSelectedProfileId>C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\Properties\PublishProfiles\x64.pubxml + <_LastSelectedProfileId>C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\Properties\PublishProfiles\x86.pubxml diff --git a/Form1.cs b/Form1.cs index 8edb98e..0724371 100644 --- a/Form1.cs +++ b/Form1.cs @@ -17,7 +17,7 @@ namespace ARCHBLOXLauncherGUI WshShell shell = new WshShell(); string shortcutAddress = (string)shell.SpecialFolders.Item(ref shDesktop) + @"\ARCHBLOX Launcher.lnk"; IWshShortcut shortcut = (IWshShortcut)shell.CreateShortcut(shortcutAddress); - shortcut.Description = "The launcher for ARCHBLOX Player."; + shortcut.Description = "ARCHBLOX Player"; shortcut.TargetPath = ARCHBLOXLauncherGUI.Extensions.GetExecutablePath(); shortcut.Save(); } @@ -61,7 +61,7 @@ namespace ARCHBLOXLauncherGUI { if (!System.IO.File.Exists(filePath)) { - DialogResult res = MessageBox.Show("An error occoured while starting ARCHBLOX\n\nDetails: Out of date client! To update the client, select Yes.", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Error); + DialogResult res = MessageBox.Show("An error occoured while starting ARCHBLOX\n\nDetails: Out of date client! To update the client select Yes.", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Error); if (res == DialogResult.Yes) { ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2(); @@ -215,6 +215,28 @@ namespace ARCHBLOXLauncherGUI } else { + // Check if RADMIN VPN ip address to protect port forwarders from exposing their ip address and potentionally causing the server hoster to be doxxed/ddossed + string phrase2 = serverip.Text; + string[] words2 = phrase2.Split('.'); + string sWord2 = ""; + bool radmin = false; + foreach (var word in words2) + { + sWord2 = word.ToLower(); + if (sWord2 == "26" || sWord2 == "localhost" || sWord2 == "192" || sWord2 == "10" || sWord2 == "127") + { + radmin = true; + } + else + { + radmin = false; + } + break; + } + if (radmin == false) + { + phrase2 = "[IP HIDDEN]"; // HAHAHA DUDE THESE DOXXERS AND DDOSSERS ARE SO FUCKING FUNNY THEY MAKE ME WANT TO MERGE WITHOUT LOOKING!!!! + } void ProcessExitHandler(object sender, EventArgs args) { hosting = false; @@ -223,7 +245,7 @@ namespace ARCHBLOXLauncherGUI client.SetPresence(new DiscordRPC.RichPresence() { Details = "Playing a Game", - State = "on " + serverip.Text + ":" + serverport.Text, + State = "on " + phrase2 + ":" + serverport.Text, Timestamps = Timestamps.Now, Assets = new Assets() { @@ -335,10 +357,34 @@ namespace ARCHBLOXLauncherGUI pProcess.Start(); pProcess.EnableRaisingEvents = true; pProcess.Exited += new EventHandler(ProcessExitHandler); + + // Check if RADMIN VPN ip address to protect port forwarders from exposing their ip address and potentionally causing the server hoster to be doxxed/ddossed + string phrase2 = serverip.Text; + string[] words2 = phrase2.Split('.'); + string sWord2 = ""; + bool radmin = false; + foreach (var word in words2) + { + sWord2 = word.ToLower(); + if (sWord2 == "26" || sWord2 == "localhost" || sWord2 == "192" || sWord2 == "10" || sWord2 == "127") + { + radmin = true; + } + else + { + radmin = false; + } + break; + } + if (radmin == false) + { + phrase2 = "[IP HIDDEN]"; // HAHAHA DUDE THESE DOXXERS AND DDOSSERS ARE SO FUCKING FUNNY THEY MAKE ME WANT TO MERGE WITHOUT LOOKING!!!! + } + client.SetPresence(new DiscordRPC.RichPresence() { Details = "Playing a Game", - State = "on " + serverip.Text + ":" + serverport.Text, + State = "on " + phrase2 + ":" + serverport.Text, Timestamps = Timestamps.Now, Assets = new Assets() { diff --git a/Form2.cs b/Form2.cs index 7aa85a0..b44f714 100644 --- a/Form2.cs +++ b/Form2.cs @@ -112,7 +112,7 @@ namespace ARCHBLOXLauncherGUI string filePath = Path.Combine(Path.GetTempPath(), version_string + ".zip"); ZipFile.ExtractToDirectory(filePath, clientPath); File.Delete(filePath); - label1.Text = "Installing URi..."; + label1.Text = "Installing URI..."; try { ARCHBLOXProtocol.ARCHBLOXURIProtocol.Register(); @@ -124,7 +124,7 @@ namespace ARCHBLOXLauncherGUI label1.Text = "ARCHBLOX has been installed!"; } else { - label1.Text = "ARCHBLOX installed without URI."; + label1.Text = "Failed to install URI."; } Thread.Sleep(1000); this.Hide(); @@ -139,7 +139,7 @@ namespace ARCHBLOXLauncherGUI double receive = double.Parse(e.BytesReceived.ToString()); double total = double.Parse(e.TotalBytesToReceive.ToString()); double percentage = receive / total * 100; - label1.Text = "Installing ARCHBLOX... (" + Math.Truncate(percentage).ToString() + "% Completed)"; + label1.Text = "Installing ARCHBLOX... (" + Math.Truncate(percentage).ToString() + "%)"; progressBar1.Value = int.Parse(Math.Truncate(percentage).ToString()); } } diff --git a/Properties/PublishProfiles/x64.pubxml.user b/Properties/PublishProfiles/x64.pubxml.user index 0daa667..ad54f60 100644 --- a/Properties/PublishProfiles/x64.pubxml.user +++ b/Properties/PublishProfiles/x64.pubxml.user @@ -4,6 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - True|2022-08-05T00:38:33.7761426Z;True|2022-07-26T15:16:38.5877346+10:00;True|2022-07-15T22:07:23.9248742+10:00;True|2022-07-15T22:05:25.5663085+10:00;True|2022-07-13T16:54:56.8432517+10:00;False|2022-07-13T16:52:26.5433436+10:00;True|2022-07-13T16:47:01.0681916+10:00;True|2022-07-13T16:28:49.6060671+10:00;False|2022-07-13T16:28:36.6234772+10:00;True|2022-07-13T16:27:25.2155759+10:00;True|2022-07-13T16:20:04.4747082+10:00;True|2022-07-13T00:37:48.5001758+10:00;True|2022-07-13T00:37:23.7218937+10:00;True|2022-07-13T00:35:56.1276705+10:00;True|2022-07-12T20:31:31.4891674+10:00;True|2022-07-12T07:42:57.8030421+10:00;True|2022-07-12T07:24:22.2110673+10:00;True|2022-07-12T07:12:22.1327523+10:00;True|2022-07-12T01:02:07.4142780+10:00;True|2022-07-12T01:01:55.1054218+10:00;True|2022-07-12T00:57:05.7704097+10:00;True|2022-07-11T19:45:06.3965836+10:00;True|2022-07-11T03:03:05.5235378+10:00;True|2022-07-11T01:29:52.2575986+10:00;True|2022-07-11T01:29:03.7081553+10:00;True|2022-07-11T01:07:30.8355486+10:00;True|2022-07-11T00:18:27.1107980+10:00;True|2022-07-10T21:59:11.0753271+10:00;True|2022-07-10T19:15:49.4105023+10:00;True|2022-07-10T19:13:41.3098116+10:00;True|2022-07-10T19:12:41.5715908+10:00; + True|2022-10-21T22:09:03.7775610Z;True|2022-08-28T12:03:45.2362021+10:00;True|2022-08-05T10:38:33.7761426+10:00;True|2022-07-26T15:16:38.5877346+10:00;True|2022-07-15T22:07:23.9248742+10:00;True|2022-07-15T22:05:25.5663085+10:00;True|2022-07-13T16:54:56.8432517+10:00;False|2022-07-13T16:52:26.5433436+10:00;True|2022-07-13T16:47:01.0681916+10:00;True|2022-07-13T16:28:49.6060671+10:00;False|2022-07-13T16:28:36.6234772+10:00;True|2022-07-13T16:27:25.2155759+10:00;True|2022-07-13T16:20:04.4747082+10:00;True|2022-07-13T00:37:48.5001758+10:00;True|2022-07-13T00:37:23.7218937+10:00;True|2022-07-13T00:35:56.1276705+10:00;True|2022-07-12T20:31:31.4891674+10:00;True|2022-07-12T07:42:57.8030421+10:00;True|2022-07-12T07:24:22.2110673+10:00;True|2022-07-12T07:12:22.1327523+10:00;True|2022-07-12T01:02:07.4142780+10:00;True|2022-07-12T01:01:55.1054218+10:00;True|2022-07-12T00:57:05.7704097+10:00;True|2022-07-11T19:45:06.3965836+10:00;True|2022-07-11T03:03:05.5235378+10:00;True|2022-07-11T01:29:52.2575986+10:00;True|2022-07-11T01:29:03.7081553+10:00;True|2022-07-11T01:07:30.8355486+10:00;True|2022-07-11T00:18:27.1107980+10:00;True|2022-07-10T21:59:11.0753271+10:00;True|2022-07-10T19:15:49.4105023+10:00;True|2022-07-10T19:13:41.3098116+10:00;True|2022-07-10T19:12:41.5715908+10:00; + \ No newline at end of file diff --git a/Properties/PublishProfiles/x86.pubxml.user b/Properties/PublishProfiles/x86.pubxml.user index 480600e..b29fba6 100644 --- a/Properties/PublishProfiles/x86.pubxml.user +++ b/Properties/PublishProfiles/x86.pubxml.user @@ -4,6 +4,7 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - True|2022-08-05T00:38:25.0782355Z;True|2022-07-26T15:16:51.0859791+10:00;True|2022-07-15T22:08:58.3308190+10:00;True|2022-07-15T22:07:37.1469826+10:00;True|2022-07-13T16:19:59.8973544+10:00;True|2022-07-13T00:38:04.2388491+10:00;True|2022-07-13T00:37:19.8958675+10:00;True|2022-07-13T00:36:07.1078472+10:00;True|2022-07-12T20:31:25.7325840+10:00;True|2022-07-12T07:43:08.7666080+10:00;True|2022-07-12T07:24:17.3722228+10:00;True|2022-07-12T07:12:29.3685122+10:00;True|2022-07-12T01:01:59.7182995+10:00;True|2022-07-12T00:56:51.3800489+10:00;True|2022-07-11T19:45:17.8917634+10:00;True|2022-07-11T03:02:35.7176035+10:00;True|2022-07-11T01:29:59.8179775+10:00;True|2022-07-11T01:28:57.8645143+10:00;True|2022-07-11T01:07:39.1190996+10:00;True|2022-07-11T00:18:18.9541704+10:00;True|2022-07-10T21:59:16.0892178+10:00;True|2022-07-10T19:13:19.3369745+10:00;True|2022-07-10T19:13:01.5256770+10:00; + True|2022-10-21T22:08:47.1592665Z;True|2022-08-28T12:03:58.5410881+10:00;True|2022-08-05T10:38:25.0782355+10:00;True|2022-07-26T15:16:51.0859791+10:00;True|2022-07-15T22:08:58.3308190+10:00;True|2022-07-15T22:07:37.1469826+10:00;True|2022-07-13T16:19:59.8973544+10:00;True|2022-07-13T00:38:04.2388491+10:00;True|2022-07-13T00:37:19.8958675+10:00;True|2022-07-13T00:36:07.1078472+10:00;True|2022-07-12T20:31:25.7325840+10:00;True|2022-07-12T07:43:08.7666080+10:00;True|2022-07-12T07:24:17.3722228+10:00;True|2022-07-12T07:12:29.3685122+10:00;True|2022-07-12T01:01:59.7182995+10:00;True|2022-07-12T00:56:51.3800489+10:00;True|2022-07-11T19:45:17.8917634+10:00;True|2022-07-11T03:02:35.7176035+10:00;True|2022-07-11T01:29:59.8179775+10:00;True|2022-07-11T01:28:57.8645143+10:00;True|2022-07-11T01:07:39.1190996+10:00;True|2022-07-11T00:18:18.9541704+10:00;True|2022-07-10T21:59:16.0892178+10:00;True|2022-07-10T19:13:19.3369745+10:00;True|2022-07-10T19:13:01.5256770+10:00; + \ No newline at end of file diff --git a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll index b8eda25..1b95f15 100644 Binary files a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll and b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll differ diff --git a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.exe b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.exe index b74fcff..ce444f1 100644 Binary files a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.exe and b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.exe differ diff --git a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb index fde4e4a..71b128a 100644 Binary files a/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb and b/bin/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb differ diff --git a/bin/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll b/bin/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll index 7449d68..4748c0d 100644 Binary files a/bin/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll and b/bin/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll differ diff --git a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll index 4b3bca9..a6972aa 100644 Binary files a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll and b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll differ diff --git a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.exe b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.exe index b74fcff..ce444f1 100644 Binary files a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.exe and b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.exe differ diff --git a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb index e1fe810..2b68ac5 100644 Binary files a/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb and b/bin/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb differ diff --git a/bin/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll b/bin/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll index 8cd6788..a568af5 100644 Binary files a/bin/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll and b/bin/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll index 82d6977..0f10e42 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll and b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.exe b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.exe index b74fcff..ce444f1 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.exe and b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.exe differ diff --git a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb index e184c15..a8d4959 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb and b/bin/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb differ diff --git a/bin/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll b/bin/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll index 7c60013..9244e07 100644 Binary files a/bin/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll and b/bin/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll index 6f7539a..46d4b1a 100644 Binary files a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll and b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll differ diff --git a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.exe b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.exe index 6dbee6f..a74edcf 100644 Binary files a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.exe and b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.exe differ diff --git a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb index 15975a3..6f1ec10 100644 Binary files a/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb and b/bin/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb differ diff --git a/bin/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll b/bin/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll index cd04647..8944656 100644 Binary files a/bin/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll and b/bin/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll differ diff --git a/obj/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json b/obj/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json index 655a220..4563b0d 100644 --- a/obj/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json +++ b/obj/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json @@ -26,6 +26,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -55,7 +56,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -67,7 +69,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/ARCHBLOXLauncherGUI.csproj.nuget.g.props b/obj/ARCHBLOXLauncherGUI.csproj.nuget.g.props index 8637efe..0d90d1d 100644 --- a/obj/ARCHBLOXLauncherGUI.csproj.nuget.g.props +++ b/obj/ARCHBLOXLauncherGUI.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Thomas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.2.1 + 6.3.0 diff --git a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache index abe5ce1..4696572 100644 Binary files a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache and b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache differ diff --git a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache index ce462c4..2899399 100644 Binary files a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache and b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache differ diff --git a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll index b8eda25..1b95f15 100644 Binary files a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll and b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.dll differ diff --git a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb index fde4e4a..71b128a 100644 Binary files a/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb and b/obj/Debug/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb differ diff --git a/obj/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll b/obj/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll index 7449d68..4748c0d 100644 Binary files a/obj/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll and b/obj/Debug/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll differ diff --git a/obj/Debug/netcoreapp3.1/apphost.exe b/obj/Debug/netcoreapp3.1/apphost.exe index b74fcff..ce444f1 100644 Binary files a/obj/Debug/netcoreapp3.1/apphost.exe and b/obj/Debug/netcoreapp3.1/apphost.exe differ diff --git a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache index b2a1404..5eb9d20 100644 Binary files a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache and b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.assets.cache differ diff --git a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache index 018991c..2899399 100644 Binary files a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache and b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache differ diff --git a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll index 4b3bca9..a6972aa 100644 Binary files a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll and b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.dll differ diff --git a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb index e1fe810..2b68ac5 100644 Binary files a/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb and b/obj/Release/netcoreapp3.1/ARCHBLOXLauncherGUI.pdb differ diff --git a/obj/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll b/obj/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll index 8cd6788..a568af5 100644 Binary files a/obj/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll and b/obj/Release/netcoreapp3.1/Interop.IWshRuntimeLibrary.dll differ diff --git a/obj/Release/netcoreapp3.1/apphost.exe b/obj/Release/netcoreapp3.1/apphost.exe index b74fcff..ce444f1 100644 Binary files a/obj/Release/netcoreapp3.1/apphost.exe and b/obj/Release/netcoreapp3.1/apphost.exe differ diff --git a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.assets.cache b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.assets.cache index e817615..4ee5e69 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.assets.cache and b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.assets.cache differ diff --git a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache index f12d1fb..40c7c6c 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache and b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache differ diff --git a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll index 82d6977..0f10e42 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll and b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.dll differ diff --git a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb index e184c15..a8d4959 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb and b/obj/Release/netcoreapp3.1/win-x64/ARCHBLOXLauncherGUI.pdb differ diff --git a/obj/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll b/obj/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll index 7c60013..9244e07 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll and b/obj/Release/netcoreapp3.1/win-x64/Interop.IWshRuntimeLibrary.dll differ diff --git a/obj/Release/netcoreapp3.1/win-x64/apphost.exe b/obj/Release/netcoreapp3.1/win-x64/apphost.exe index b74fcff..ce444f1 100644 Binary files a/obj/Release/netcoreapp3.1/win-x64/apphost.exe and b/obj/Release/netcoreapp3.1/win-x64/apphost.exe differ diff --git a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.assets.cache b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.assets.cache index 84de997..acde857 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.assets.cache and b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.assets.cache differ diff --git a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache index 38d1a08..50b5a2a 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache and b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache differ diff --git a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll index 6f7539a..46d4b1a 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll and b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.dll differ diff --git a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb index 15975a3..6f1ec10 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb and b/obj/Release/netcoreapp3.1/win-x86/ARCHBLOXLauncherGUI.pdb differ diff --git a/obj/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll b/obj/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll index cd04647..8944656 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll and b/obj/Release/netcoreapp3.1/win-x86/Interop.IWshRuntimeLibrary.dll differ diff --git a/obj/Release/netcoreapp3.1/win-x86/apphost.exe b/obj/Release/netcoreapp3.1/win-x86/apphost.exe index 6dbee6f..a74edcf 100644 Binary files a/obj/Release/netcoreapp3.1/win-x86/apphost.exe and b/obj/Release/netcoreapp3.1/win-x86/apphost.exe differ diff --git a/obj/project.assets.json b/obj/project.assets.json index 9d0d964..32cdf5a 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -9,10 +9,14 @@ "Newtonsoft.Json": "12.0.2" }, "compile": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.NETCore.Platforms/2.0.0": { @@ -31,7 +35,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -50,10 +56,14 @@ "Newtonsoft.Json/12.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.5.0": { @@ -63,7 +73,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} @@ -81,7 +93,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} @@ -321,6 +335,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -350,7 +365,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -362,7 +378,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index 376e91e..0c88863 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "OO7KD2JvEW4jCf6j6RjV9TWty5n7AETMtb0hP53LkMKUjVF89pcdAQBA4csXeSNfowFf2UOdZQ6SqhplRNwaYg==", + "dgSpecHash": "sVdo9WwGKAYEm1wxM4WAPk4o9e6oDlOOv3D31m+piMjA1FrQ8yRqAiulYRTB4AO0DX88KxAJhj9vcP//nDXlzw==", "success": true, "projectFilePath": "C:\\Users\\Thomas\\source\\repos\\ARCHBLOXLauncher1\\ARCHBLOXLauncherGUI.csproj", "expectedPackageFiles": [ diff --git a/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json b/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json index 726b4b0..8f589ba 100644 --- a/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json +++ b/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json @@ -26,6 +26,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -55,7 +56,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -67,7 +69,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.g.props b/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.g.props index 8637efe..0d90d1d 100644 --- a/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.g.props +++ b/obj/publish/win-x64/ARCHBLOXLauncherGUI.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Thomas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.2.1 + 6.3.0 diff --git a/obj/publish/win-x64/project.assets.json b/obj/publish/win-x64/project.assets.json index 1e20703..cc69c65 100644 --- a/obj/publish/win-x64/project.assets.json +++ b/obj/publish/win-x64/project.assets.json @@ -9,10 +9,14 @@ "Newtonsoft.Json": "12.0.2" }, "compile": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.NETCore.Platforms/2.0.0": { @@ -31,7 +35,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -50,10 +56,14 @@ "Newtonsoft.Json/12.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.5.0": { @@ -63,7 +73,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} @@ -81,7 +93,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} @@ -106,10 +120,14 @@ "Newtonsoft.Json": "12.0.2" }, "compile": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.NETCore.Platforms/2.0.0": { @@ -128,7 +146,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -137,10 +157,14 @@ "Newtonsoft.Json/12.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.5.0": { @@ -150,7 +174,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} @@ -162,7 +188,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {} @@ -392,6 +420,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -421,7 +450,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -433,7 +463,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/obj/publish/win-x64/project.nuget.cache b/obj/publish/win-x64/project.nuget.cache index 980e292..9afc24e 100644 --- a/obj/publish/win-x64/project.nuget.cache +++ b/obj/publish/win-x64/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "x/17t7c9TL2K7FGi8Exyizn5UbTRGgiMHe+jDW69j5x3vi1s0UX5ZqxGNCaUVJ9xH93Fodt1nzBVKVEUWywUqQ==", + "dgSpecHash": "BHtDMC6maS+DIyXqc2CKVO+HoHhFmfgn0kKcx6YfdlRuF6iksRLfVRYMgudVahuNctbMMD+HEOcqbAlbCn8W9Q==", "success": true, "projectFilePath": "C:\\Users\\Thomas\\source\\repos\\ARCHBLOXLauncher1\\ARCHBLOXLauncherGUI.csproj", "expectedPackageFiles": [ diff --git a/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json b/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json index 1bbe63e..4f4d2dc 100644 --- a/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json +++ b/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.dgspec.json @@ -26,6 +26,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -55,7 +56,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -67,7 +69,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.g.props b/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.g.props index 8637efe..0d90d1d 100644 --- a/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.g.props +++ b/obj/publish/win-x86/ARCHBLOXLauncherGUI.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\Thomas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.2.1 + 6.3.0 diff --git a/obj/publish/win-x86/project.assets.json b/obj/publish/win-x86/project.assets.json index 5c0b356..3d14b35 100644 --- a/obj/publish/win-x86/project.assets.json +++ b/obj/publish/win-x86/project.assets.json @@ -9,10 +9,14 @@ "Newtonsoft.Json": "12.0.2" }, "compile": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.NETCore.Platforms/2.0.0": { @@ -31,7 +35,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -50,10 +56,14 @@ "Newtonsoft.Json/12.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.5.0": { @@ -63,7 +73,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.AccessControl.dll": {} @@ -81,7 +93,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "lib/netstandard2.0/System.Security.Principal.Windows.dll": {} @@ -106,10 +120,14 @@ "Newtonsoft.Json": "12.0.2" }, "compile": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } }, "runtime": { - "lib/netstandard2.0/DiscordRPC.dll": {} + "lib/netstandard2.0/DiscordRPC.dll": { + "related": ".pdb;.xml" + } } }, "Microsoft.NETCore.Platforms/2.0.0": { @@ -128,7 +146,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/Microsoft.Win32.Registry.dll": {} + "ref/netstandard2.0/Microsoft.Win32.Registry.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {} @@ -137,10 +157,14 @@ "Newtonsoft.Json/12.0.2": { "type": "package", "compile": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } }, "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.dll": {} + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } } }, "System.Security.AccessControl/4.5.0": { @@ -150,7 +174,9 @@ "System.Security.Principal.Windows": "4.5.0" }, "compile": { - "ref/netstandard2.0/System.Security.AccessControl.dll": {} + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {} @@ -162,7 +188,9 @@ "Microsoft.NETCore.Platforms": "2.0.0" }, "compile": { - "ref/netstandard2.0/System.Security.Principal.Windows.dll": {} + "ref/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } }, "runtime": { "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {} @@ -392,6 +420,7 @@ ], "sources": { "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -421,7 +450,8 @@ "net47", "net471", "net472", - "net48" + "net48", + "net481" ], "assetTargetFallback": true, "warn": true, @@ -433,7 +463,7 @@ "privateAssets": "none" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.400\\RuntimeIdentifierGraph.json" } }, "runtimes": { diff --git a/obj/publish/win-x86/project.nuget.cache b/obj/publish/win-x86/project.nuget.cache index c5ad631..3f86ea7 100644 --- a/obj/publish/win-x86/project.nuget.cache +++ b/obj/publish/win-x86/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "p074WMgUVTLgfT6kuz+kjELzZAeYLPq7ZSj+ii/zgdLVomHdWjDppR3LoMFu4it6Ae9HVoIUW4NTRRudSwhvYA==", + "dgSpecHash": "g12JQfopePFm21LkkZTvC3e7BTc4OVjMgI3It3ckdm5y2dlEu9x9m3+H83uhTnYuL+QVbJi2mk9LhoFJ3Zm77w==", "success": true, "projectFilePath": "C:\\Users\\Thomas\\source\\repos\\ARCHBLOXLauncher1\\ARCHBLOXLauncherGUI.csproj", "expectedPackageFiles": [