tons of additions ig
This commit is contained in:
parent
99b9aac2ee
commit
eb87d04b91
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -7,6 +7,18 @@
|
|||
<ApplicationIcon>archblox.ico</ApplicationIcon>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<COMReference Include="IWshRuntimeLibrary">
|
||||
<WrapperTool>tlbimp</WrapperTool>
|
||||
<VersionMinor>0</VersionMinor>
|
||||
<VersionMajor>1</VersionMajor>
|
||||
<Guid>f935dc20-1cf0-11d0-adb9-00c04fd58a0b</Guid>
|
||||
<Lcid>0</Lcid>
|
||||
<Isolated>false</Isolated>
|
||||
<EmbedInteropTypes>true</EmbedInteropTypes>
|
||||
</COMReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Content Include="archblox.ico" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<_LastSelectedProfileId>C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\Properties\PublishProfiles\x64.pubxml</_LastSelectedProfileId>
|
||||
<_LastSelectedProfileId>C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\Properties\PublishProfiles\x64_netcoreincluded.pubxml</_LastSelectedProfileId>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Compile Update="Form1.cs">
|
||||
|
|
|
|||
|
|
@ -0,0 +1,25 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 17
|
||||
VisualStudioVersion = 17.2.32516.85
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ARCHBLOXLauncherGUI", "ARCHBLOXLauncherGUI.csproj", "{2C3AC3C0-EFA7-4A85-BDE2-99DA398B5A76}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{2C3AC3C0-EFA7-4A85-BDE2-99DA398B5A76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{2C3AC3C0-EFA7-4A85-BDE2-99DA398B5A76}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{2C3AC3C0-EFA7-4A85-BDE2-99DA398B5A76}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{2C3AC3C0-EFA7-4A85-BDE2-99DA398B5A76}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {8BBF50A1-31F7-48A7-BFFB-70692FC4BA96}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
using System;
|
||||
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
public static class Extensions
|
||||
{
|
||||
[System.Runtime.InteropServices.DllImport("kernel32.dll")]
|
||||
static extern uint GetModuleFileName(IntPtr hModule, System.Text.StringBuilder lpFilename, int nSize);
|
||||
static readonly int MAX_PATH = 255;
|
||||
public static string GetExecutablePath()
|
||||
{
|
||||
if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.Windows))
|
||||
{
|
||||
var sb = new System.Text.StringBuilder(MAX_PATH);
|
||||
GetModuleFileName(IntPtr.Zero, sb, MAX_PATH);
|
||||
return sb.ToString();
|
||||
}
|
||||
else
|
||||
{
|
||||
return System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
namespace ARCHBLOXLauncher1
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
partial class Form1
|
||||
{
|
||||
|
|
@ -69,7 +69,7 @@
|
|||
this.pictureBox1.Anchor = System.Windows.Forms.AnchorStyles.Top;
|
||||
this.pictureBox1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
||||
this.pictureBox1.Image = global::ARCHBLOXLauncherGUI.Properties.Resources.unknown;
|
||||
this.pictureBox1.Location = new System.Drawing.Point(54, 12);
|
||||
this.pictureBox1.Location = new System.Drawing.Point(51, 12);
|
||||
this.pictureBox1.Name = "pictureBox1";
|
||||
this.pictureBox1.Size = new System.Drawing.Size(203, 40);
|
||||
this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
|
||||
|
|
@ -240,7 +240,7 @@
|
|||
this.HostBTN.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
||||
this.HostBTN.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
||||
this.HostBTN.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.HostBTN.Location = new System.Drawing.Point(-278, 130);
|
||||
this.HostBTN.Location = new System.Drawing.Point(-278, 138);
|
||||
this.HostBTN.Name = "HostBTN";
|
||||
this.HostBTN.Size = new System.Drawing.Size(276, 52);
|
||||
this.HostBTN.TabIndex = 28;
|
||||
|
|
@ -255,7 +255,7 @@
|
|||
this.JoinBTN.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
||||
this.JoinBTN.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
||||
this.JoinBTN.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.JoinBTN.Location = new System.Drawing.Point(-278, 188);
|
||||
this.JoinBTN.Location = new System.Drawing.Point(-278, 196);
|
||||
this.JoinBTN.Name = "JoinBTN";
|
||||
this.JoinBTN.Size = new System.Drawing.Size(276, 52);
|
||||
this.JoinBTN.TabIndex = 29;
|
||||
|
|
@ -270,11 +270,11 @@
|
|||
this.UpdateBTN.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
|
||||
this.UpdateBTN.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point);
|
||||
this.UpdateBTN.ForeColor = System.Drawing.SystemColors.ButtonHighlight;
|
||||
this.UpdateBTN.Location = new System.Drawing.Point(-278, 74);
|
||||
this.UpdateBTN.Location = new System.Drawing.Point(-278, 82);
|
||||
this.UpdateBTN.Name = "UpdateBTN";
|
||||
this.UpdateBTN.Size = new System.Drawing.Size(276, 52);
|
||||
this.UpdateBTN.TabIndex = 30;
|
||||
this.UpdateBTN.Text = "Re-Install ARCHBLOX";
|
||||
this.UpdateBTN.Text = "Re-Install";
|
||||
this.UpdateBTN.UseVisualStyleBackColor = true;
|
||||
this.UpdateBTN.Click += new System.EventHandler(this.UpdateBTN_Click);
|
||||
//
|
||||
|
|
@ -347,7 +347,7 @@
|
|||
this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(49)))), ((int)(((byte)(107)))), ((int)(((byte)(223)))));
|
||||
this.BackgroundImage = global::ARCHBLOXLauncherGUI.Properties.Resources.animated;
|
||||
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||||
this.ClientSize = new System.Drawing.Size(308, 259);
|
||||
this.ClientSize = new System.Drawing.Size(302, 259);
|
||||
this.Controls.Add(this.BackBTN_Host);
|
||||
this.Controls.Add(this.BackBTN_Join);
|
||||
this.Controls.Add(this.UpdateBTN);
|
||||
|
|
|
|||
42
Form1.cs
42
Form1.cs
|
|
@ -1,21 +1,27 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using IWshRuntimeLibrary;
|
||||
using System.Diagnostics;
|
||||
using System.Threading;
|
||||
using System.Windows.Forms;
|
||||
using System.Net;
|
||||
using System.IO;
|
||||
using DiscordRPC;
|
||||
using DiscordRPC.Logging;
|
||||
namespace ARCHBLOXLauncher1
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
public partial class Form1 : Form
|
||||
{
|
||||
private void CreateShortcut()
|
||||
{
|
||||
object shDesktop = (object)"Desktop";
|
||||
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.TargetPath = ARCHBLOXLauncherGUI.Extensions.GetExecutablePath();
|
||||
shortcut.Save();
|
||||
}
|
||||
bool exitafterarg = false;
|
||||
bool lockanims = true;
|
||||
bool rbxl = false;
|
||||
|
|
@ -118,13 +124,6 @@ namespace ARCHBLOXLauncher1
|
|||
}
|
||||
void slideInButtons(object sender, EventArgs e)
|
||||
{
|
||||
if (!Directory.Exists(filePath))
|
||||
{
|
||||
UpdateBTN.Text = "Install ARCHBLOX";
|
||||
} else
|
||||
{
|
||||
UpdateBTN.Text = "Re-Install ARCHBLOX";
|
||||
}
|
||||
lockanims = true;
|
||||
UpdateBTN.Location = new Point(UpdateBTN.Location.X + 8, UpdateBTN.Location.Y);
|
||||
JoinBTN.Location = new Point(UpdateBTN.Location.X, JoinBTN.Location.Y);
|
||||
|
|
@ -150,6 +149,7 @@ namespace ARCHBLOXLauncher1
|
|||
public Form1()
|
||||
{
|
||||
InitializeComponent();
|
||||
CreateShortcut();
|
||||
var lastword = "";
|
||||
var info1 = "";
|
||||
var info2 = "";
|
||||
|
|
@ -217,7 +217,7 @@ namespace ARCHBLOXLauncher1
|
|||
}
|
||||
if (word == "install")
|
||||
{
|
||||
ARCHBLOXLauncher1.Form2 form2 = new ARCHBLOXLauncher1.Form2();
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
if (word == "") { } else
|
||||
|
|
@ -277,11 +277,11 @@ namespace ARCHBLOXLauncher1
|
|||
rbxl = false;
|
||||
}
|
||||
}
|
||||
if (!File.Exists(filePath)) {
|
||||
if (!System.IO.File.Exists(filePath)) {
|
||||
DialogResult res = MessageBox.Show("You need to install the latest version of ARCHBLOX to host. Would you like to install it?", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
||||
if (res == DialogResult.Yes)
|
||||
{
|
||||
ARCHBLOXLauncher1.Form2 form2 = new ARCHBLOXLauncher1.Form2();
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
}
|
||||
|
|
@ -353,12 +353,12 @@ namespace ARCHBLOXLauncher1
|
|||
|
||||
private void button2_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (!File.Exists(filePath))
|
||||
if (!System.IO.File.Exists(filePath))
|
||||
{
|
||||
DialogResult res = MessageBox.Show("You need to install the latest version of ARCHBLOX to join " + serverip.Text + ":" + serverport.Text + ". Would you like to install it?", "ARCHBLOX", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
||||
if (res == DialogResult.Yes)
|
||||
{
|
||||
ARCHBLOXLauncher1.Form2 form2 = new ARCHBLOXLauncher1.Form2();
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
}
|
||||
|
|
@ -435,7 +435,7 @@ namespace ARCHBLOXLauncher1
|
|||
if (DialogResult.OK == dialog.ShowDialog())
|
||||
{
|
||||
string destFile = Path.Combine(clientPath, @"Content\", Path.GetFileName(dialog.FileName));
|
||||
File.Copy(dialog.FileName, destFile, true);
|
||||
System.IO.File.Copy(dialog.FileName, destFile, true);
|
||||
textBox2.Text = Path.GetFileName(dialog.FileName);
|
||||
}
|
||||
}
|
||||
|
|
@ -451,7 +451,7 @@ namespace ARCHBLOXLauncher1
|
|||
}
|
||||
private void Form1_HelpButtonClicked(Object sender, CancelEventArgs e)
|
||||
{
|
||||
ARCHBLOXLauncher1.Form2 form2 = new ARCHBLOXLauncher1.Form2();
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
|
||||
|
|
@ -472,7 +472,7 @@ namespace ARCHBLOXLauncher1
|
|||
|
||||
private void UpdateBTN_Click(object sender, EventArgs e)
|
||||
{
|
||||
ARCHBLOXLauncher1.Form2 form2 = new ARCHBLOXLauncher1.Form2();
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
|
||||
|
|
|
|||
5654
Form1.resx
5654
Form1.resx
File diff suppressed because it is too large
Load Diff
|
|
@ -1,4 +1,4 @@
|
|||
namespace ARCHBLOXLauncher1
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
partial class Form2
|
||||
{
|
||||
|
|
|
|||
10
Form2.cs
10
Form2.cs
|
|
@ -1,21 +1,13 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Data;
|
||||
using System.IO.Compression;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Text;
|
||||
using System.Security.Permissions;
|
||||
using Microsoft.Win32;
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using System.IO;
|
||||
using System.DirectoryServices;
|
||||
using System.Windows.Forms;
|
||||
namespace ARCHBLOXLauncher1
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
public partial class Form2 : Form
|
||||
{
|
||||
|
|
|
|||
5654
Form2.resx
5654
Form2.resx
File diff suppressed because it is too large
Load Diff
|
|
@ -4,7 +4,7 @@ using System.Linq;
|
|||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace ARCHBLOXLauncher1
|
||||
namespace ARCHBLOXLauncherGUI
|
||||
{
|
||||
internal static class Program
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<History>True|2022-07-13T06:54:56.8432517Z;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;</History>
|
||||
<History>True|2022-07-15T12:07:23.9248742Z;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;</History>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Any CPU</Platform>
|
||||
<PublishDir>C:\Users\Thomas\OneDrive\Documents\archbloxnetfullbuildsd\launcher</PublishDir>
|
||||
<PublishProtocol>FileSystem</PublishProtocol>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
||||
<SelfContained>true</SelfContained>
|
||||
<PublishSingleFile>true</PublishSingleFile>
|
||||
<PublishReadyToRun>false</PublishReadyToRun>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<History>True|2022-07-20T06:57:33.4891575Z;</History>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
|
|
@ -4,6 +4,6 @@ https://go.microsoft.com/fwlink/?LinkID=208121.
|
|||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<History>True|2022-07-13T06:19:59.8973544Z;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;</History>
|
||||
<History>True|2022-07-15T12:08:58.3308190Z;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;</History>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 183 KiB After Width: | Height: | Size: 162 KiB |
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.1",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.1": {
|
||||
"ARCHBLOXLauncherGUI/1.0.0": {
|
||||
"dependencies": {
|
||||
"DiscordRichPresence": "1.0.175",
|
||||
"Interop.IWshRuntimeLibrary": "1.0.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"ARCHBLOXLauncherGUI.dll": {}
|
||||
}
|
||||
},
|
||||
"DiscordRichPresence/1.0.175": {
|
||||
"dependencies": {
|
||||
"Microsoft.Win32.Registry": "4.5.0",
|
||||
"Newtonsoft.Json": "12.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/DiscordRPC.dll": {
|
||||
"assemblyVersion": "1.0.175.0",
|
||||
"fileVersion": "1.0.175.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.0.0": {},
|
||||
"Microsoft.Win32.Registry/4.5.0": {
|
||||
"dependencies": {
|
||||
"System.Security.AccessControl": "4.5.0",
|
||||
"System.Security.Principal.Windows": "4.5.0"
|
||||
}
|
||||
},
|
||||
"Newtonsoft.Json/12.0.2": {
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Newtonsoft.Json.dll": {
|
||||
"assemblyVersion": "12.0.0.0",
|
||||
"fileVersion": "12.0.2.23222"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.AccessControl/4.5.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0",
|
||||
"System.Security.Principal.Windows": "4.5.0"
|
||||
}
|
||||
},
|
||||
"System.Security.Principal.Windows/4.5.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0"
|
||||
}
|
||||
},
|
||||
"Interop.IWshRuntimeLibrary/1.0.0.0": {
|
||||
"runtime": {
|
||||
"Interop.IWshRuntimeLibrary.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"ARCHBLOXLauncherGUI/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"DiscordRichPresence/1.0.175": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-qSWobPTbvHh9gOoBYT8C8eUhKtVdBI/WvW7GY9lNMEtsZIpL6nxCvYJwjsGL3dqlEAGY5k0vdq+wnuDLVBSV2w==",
|
||||
"path": "discordrichpresence/1.0.175",
|
||||
"hashPath": "discordrichpresence.1.0.175.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.NETCore.Platforms/2.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-VdLJOCXhZaEMY7Hm2GKiULmn7IEPFE4XC5LPSfBVCUIA8YLZVh846gtfBJalsPQF2PlzdD7ecX7DZEulJ402ZQ==",
|
||||
"path": "microsoft.netcore.platforms/2.0.0",
|
||||
"hashPath": "microsoft.netcore.platforms.2.0.0.nupkg.sha512"
|
||||
},
|
||||
"Microsoft.Win32.Registry/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-+FWlwd//+Tt56316p00hVePBCouXyEzT86Jb3+AuRotTND0IYn0OO3obs1gnQEs/txEnt+rF2JBGLItTG+Be6A==",
|
||||
"path": "microsoft.win32.registry/4.5.0",
|
||||
"hashPath": "microsoft.win32.registry.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"Newtonsoft.Json/12.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-rTK0s2EKlfHsQsH6Yx2smvcTCeyoDNgCW7FEYyV01drPlh2T243PR2DiDXqtC5N4GDm4Ma/lkxfW5a/4793vbA==",
|
||||
"path": "newtonsoft.json/12.0.2",
|
||||
"hashPath": "newtonsoft.json.12.0.2.nupkg.sha512"
|
||||
},
|
||||
"System.Security.AccessControl/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-vW8Eoq0TMyz5vAG/6ce483x/CP83fgm4SJe5P8Tb1tZaobcvPrbMEL7rhH1DRdrYbbb6F0vq3OlzmK0Pkwks5A==",
|
||||
"path": "system.security.accesscontrol/4.5.0",
|
||||
"hashPath": "system.security.accesscontrol.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"System.Security.Principal.Windows/4.5.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
|
||||
"path": "system.security.principal.windows/4.5.0",
|
||||
"hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"Interop.IWshRuntimeLibrary/1.0.0.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\Thomas\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Thomas\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
]
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -8,7 +8,8 @@
|
|||
".NETCoreApp,Version=v3.1": {
|
||||
"ARCHBLOXLauncherGUI/1.0.0": {
|
||||
"dependencies": {
|
||||
"DiscordRichPresence": "1.0.175"
|
||||
"DiscordRichPresence": "1.0.175",
|
||||
"Interop.IWshRuntimeLibrary": "1.0.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"ARCHBLOXLauncherGUI.dll": {}
|
||||
|
|
@ -51,6 +52,14 @@
|
|||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0"
|
||||
}
|
||||
},
|
||||
"Interop.IWshRuntimeLibrary/1.0.0.0": {
|
||||
"runtime": {
|
||||
"Interop.IWshRuntimeLibrary.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "1.0.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
@ -101,6 +110,11 @@
|
|||
"sha512": "sha512-U77HfRXlZlOeIXd//Yoj6Jnk8AXlbeisf1oq1os+hxOGVnuG+lGSfGqTwTZBoORFF6j/0q7HXIl8cqwQ9aUGqQ==",
|
||||
"path": "system.security.principal.windows/4.5.0",
|
||||
"hashPath": "system.security.principal.windows.4.5.0.nupkg.sha512"
|
||||
},
|
||||
"Interop.IWshRuntimeLibrary/1.0.0.0": {
|
||||
"type": "reference",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
|
@ -1,10 +1,16 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.1",
|
||||
"framework": {
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "3.1.0"
|
||||
},
|
||||
"includedFrameworks": [
|
||||
{
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "3.1.0"
|
||||
},
|
||||
{
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "3.1.0"
|
||||
}
|
||||
],
|
||||
"configProperties": {
|
||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false
|
||||
}
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,5 @@
|
|||
SOS and other diagnostic tools now ship of band and work with any version of the .NET Core runtime.
|
||||
|
||||
SOS has moved to the diagnostics repo here: https://github.com/dotnet/diagnostics.git.
|
||||
|
||||
Instructions to install SOS: https://github.com/dotnet/diagnostics#installing-sos.
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue