2.7
This commit is contained in:
parent
7ed68e330b
commit
ebcef2c3fb
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.
|
|
@ -5,6 +5,14 @@
|
|||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<UseWindowsForms>true</UseWindowsForms>
|
||||
<ApplicationIcon>archblox.ico</ApplicationIcon>
|
||||
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
|
||||
<PackageProjectUrl>https://www.archblox.com</PackageProjectUrl>
|
||||
<Description>ARCHBLOX Launcher</Description>
|
||||
<PackageIcon>archblox.png</PackageIcon>
|
||||
<RepositoryUrl>https://www.github.com/thomasluigi07/ARCHBLOXLauncher</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
<AssemblyVersion>2.7</AssemblyVersion>
|
||||
<FileVersion>2.7</FileVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
@ -23,6 +31,13 @@
|
|||
<Content Include="archblox.ico" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Include="..\..\..\OneDrive\Documents\archblox.png">
|
||||
<Pack>True</Pack>
|
||||
<PackagePath>\</PackagePath>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="DiscordRichPresence" Version="1.0.175" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
83
Form1.cs
83
Form1.cs
|
|
@ -49,15 +49,19 @@ namespace ARCHBLOXLauncherGUI
|
|||
// check to see if uri/arguments were used
|
||||
foreach (var word in args)
|
||||
{
|
||||
if (lastword == "host") {
|
||||
if (lastword == "host")
|
||||
{
|
||||
exitafterarg = true;
|
||||
lastword = "stop";
|
||||
string[] info = word.Split('|');
|
||||
foreach (var word2 in info)
|
||||
{
|
||||
if (info1 == "") {
|
||||
if (info1 == "")
|
||||
{
|
||||
info1 = word2;
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
info2 = word2;
|
||||
}
|
||||
}
|
||||
|
|
@ -93,7 +97,8 @@ namespace ARCHBLOXLauncherGUI
|
|||
info2 = word2;
|
||||
}
|
||||
}
|
||||
if (info1 == "" || info2 == "") {
|
||||
if (info1 == "" || info2 == "")
|
||||
{
|
||||
MessageBox.Show("Paramaters are invalid. Please try again. (ID: 500)", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
Environment.Exit(0);
|
||||
}
|
||||
|
|
@ -113,7 +118,8 @@ namespace ARCHBLOXLauncherGUI
|
|||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
if (word == "") { } else
|
||||
if (word == "") { }
|
||||
else
|
||||
{
|
||||
lastword = word;
|
||||
}
|
||||
|
|
@ -145,30 +151,38 @@ namespace ARCHBLOXLauncherGUI
|
|||
// hosting
|
||||
string phrase = textBox2.Text;
|
||||
string[] words = phrase.Split('.');
|
||||
|
||||
string sWord = "";
|
||||
foreach (var word in words)
|
||||
{
|
||||
if (word == "rbxl") {
|
||||
sWord = word.ToLower();
|
||||
if (sWord == "rbxl")
|
||||
{
|
||||
rbxl = true;
|
||||
} else {
|
||||
}
|
||||
else
|
||||
{
|
||||
rbxl = false;
|
||||
}
|
||||
}
|
||||
if (!System.IO.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)
|
||||
{
|
||||
ARCHBLOXLauncherGUI.Form2 form2 = new ARCHBLOXLauncherGUI.Form2();
|
||||
form2.Show();
|
||||
}
|
||||
}
|
||||
else if (textBox1.Text == "" || textBox2.Text == "") {
|
||||
}
|
||||
else if (textBox1.Text == "" || textBox2.Text == "")
|
||||
{
|
||||
MessageBox.Show("Please fill in all of the text fields.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
else if (rbxl == false) {
|
||||
MessageBox.Show("Please use a valid RBXL.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
else if (rbxl == false)
|
||||
{
|
||||
MessageBox.Show("Please use a valid .RBXL! ." + sWord + " is not a supported file format.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
else {
|
||||
else
|
||||
{
|
||||
void ProcessExitHandler(object sender, EventArgs args)
|
||||
{
|
||||
hosting = false;
|
||||
|
|
@ -224,7 +238,7 @@ namespace ARCHBLOXLauncherGUI
|
|||
SmallImageKey = "archblox",
|
||||
}
|
||||
});
|
||||
MessageBox.Show("Starting game server on port " + textBox1.Text + " using " + textBox2.Text, "ARCHBLOX", MessageBoxButtons.OK , MessageBoxIcon.Information);
|
||||
MessageBox.Show("Starting game server on port " + textBox1.Text + " using " + textBox2.Text, "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -313,9 +327,42 @@ namespace ARCHBLOXLauncherGUI
|
|||
dialog.Filter = "Place File (*.rbxl)| *.rbxl";
|
||||
if (DialogResult.OK == dialog.ShowDialog())
|
||||
{
|
||||
string destFile = Path.Combine(clientPath, @"Content\", Path.GetFileName(dialog.FileName));
|
||||
System.IO.File.Copy(dialog.FileName, destFile, true);
|
||||
textBox2.Text = Path.GetFileName(dialog.FileName);
|
||||
// check if it is a rbxl
|
||||
string word = Path.GetExtension(dialog.FileName);
|
||||
word = word.ToLower();
|
||||
if (word == ".rbxl")
|
||||
{
|
||||
// Thanks to ROBLOX LEGACY PLACE CONVERTER by BakonBot for the binary rbxl format detection.
|
||||
string[] file = System.IO.File.ReadAllLines(dialog.FileName);
|
||||
foreach (var line in file)
|
||||
{
|
||||
if (line.Contains("<roblox!"))
|
||||
{
|
||||
// is binary/unsupported format
|
||||
MessageBox.Show("Sorry, binary .RBXL files are not supported. Please convert the RBXL into XML format using a converter, then try again.", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// it's supported, yay!
|
||||
string destFile = Path.Combine(clientPath, @"Content\", Path.GetFileName(dialog.FileName));
|
||||
System.IO.File.Copy(dialog.FileName, destFile, true);
|
||||
textBox2.Text = Path.GetFileName(dialog.FileName);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (word == ".rbxlx")
|
||||
{
|
||||
// rbxlx, cringe!
|
||||
MessageBox.Show(".RBXLX file formats are not supported, are you sure you converted the .RBXL correctly?", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
// wtf this isn't even a place
|
||||
MessageBox.Show(word.ToUpper() + " is not a supported file type!", "ARCHBLOX", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
}
|
||||
}
|
||||
private void JoinBTN_Click(object sender, EventArgs e)
|
||||
|
|
|
|||
|
|
@ -0,0 +1,120 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.0": {
|
||||
"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.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "3.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
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.
|
|
@ -67,7 +67,7 @@
|
|||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@
|
|||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\Thomas\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.0</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.2.1</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="C:\Users\Thomas\.nuget\packages\" />
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.0", FrameworkDisplayName = "")]
|
||||
|
|
@ -0,0 +1,25 @@
|
|||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// 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.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyDescriptionAttribute("ARCHBLOX Launcher")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.7")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("2.7")]
|
||||
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://www.github.com/thomasluigi07/ARCHBLOXLauncher")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
|
@ -0,0 +1 @@
|
|||
e7b2af59e3d4d105d76a22845727b3b92c2ba77c
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,9 @@
|
|||
is_global = true
|
||||
build_property.ApplicationManifest =
|
||||
build_property.StartupObject =
|
||||
build_property.ApplicationDefaultFont =
|
||||
build_property.ApplicationHighDpiMode =
|
||||
build_property.ApplicationUseCompatibleTextRendering =
|
||||
build_property.ApplicationVisualStyles =
|
||||
build_property.RootNamespace = ARCHBLOXLauncherGUI
|
||||
build_property.ProjectDir = C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
e9603e681739eb9aefa96218b939211e98bb7d42
|
||||
|
|
@ -0,0 +1,24 @@
|
|||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.exe
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.deps.json
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.runtimeconfig.json
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.runtimeconfig.dev.json
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.pdb
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\DiscordRPC.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\Newtonsoft.Json.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\bin\Debug\netcoreapp3.0\Interop.IWshRuntimeLibrary.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.csproj.AssemblyReference.cache
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\Interop.IWshRuntimeLibrary.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.csproj.ResolveComReference.cache
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.Form1.resources
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.Form2.resources
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.Properties.Resources.resources
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.csproj.GenerateResource.cache
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.GeneratedMSBuildEditorConfig.editorconfig
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.AssemblyInfoInputs.cache
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.AssemblyInfo.cs
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.csproj.CoreCompileInputs.cache
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.csproj.CopyComplete
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.dll
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.pdb
|
||||
C:\Users\Thomas\source\repos\ARCHBLOXLauncher1\obj\Debug\netcoreapp3.0\ARCHBLOXLauncherGUI.genruntimeconfig.cache
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,147 @@
|
|||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v3.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v3.0": {
|
||||
"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"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
},
|
||||
"runtimes/win/lib/netstandard2.0/Microsoft.Win32.Registry.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Security.AccessControl.dll": {
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.Security.Principal.Windows/4.5.0": {
|
||||
"dependencies": {
|
||||
"Microsoft.NETCore.Platforms": "2.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/netstandard2.0/System.Security.Principal.Windows.dll": {
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
|
||||
"rid": "unix",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
},
|
||||
"runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll": {
|
||||
"rid": "win",
|
||||
"assetType": "runtime",
|
||||
"assemblyVersion": "4.1.1.0",
|
||||
"fileVersion": "4.6.26515.6"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "netcoreapp3.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.WindowsDesktop.App",
|
||||
"version": "3.0.0"
|
||||
},
|
||||
"additionalProbingPaths": [
|
||||
"C:\\Users\\Thomas\\.dotnet\\store\\|arch|\\|tfm|",
|
||||
"C:\\Users\\Thomas\\.nuget\\packages",
|
||||
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
|
||||
],
|
||||
"configProperties": {
|
||||
"Microsoft.NETCore.DotNetHostPolicy.SetAppPaths": true
|
||||
}
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
2c8ce1a4d67eec6ee4d7ee546fa2d2683c17800c
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1 @@
|
|||
obj\Debug\netcoreapp3.0\\_IsIncrementalBuild
|
||||
Binary file not shown.
|
|
@ -13,11 +13,13 @@ using System.Reflection;
|
|||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyDescriptionAttribute("ARCHBLOX Launcher")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("2.7")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("ARCHBLOXLauncherGUI")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("2.7")]
|
||||
[assembly: System.Reflection.AssemblyMetadataAttribute("RepositoryUrl", "https://www.github.com/thomasluigi07/ARCHBLOXLauncher")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
6a94da64e8e29aa7f767eb2cee2c23c89c8d42cf
|
||||
e7b2af59e3d4d105d76a22845727b3b92c2ba77c
|
||||
|
|
|
|||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -362,7 +362,7 @@
|
|||
"privateAssets": "none"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.300\\RuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.302\\RuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "t0oyQbfMoANTqGaJsmMte/09bCaDmn6IYWhmYKJw0YjKNI4GvwZxFHaOWvJfBWK7tMEA10t4oUMUOVR9KO9E7Q==",
|
||||
"dgSpecHash": "OO7KD2JvEW4jCf6j6RjV9TWty5n7AETMtb0hP53LkMKUjVF89pcdAQBA4csXeSNfowFf2UOdZQ6SqhplRNwaYg==",
|
||||
"success": true,
|
||||
"projectFilePath": "C:\\Users\\Thomas\\source\\repos\\ARCHBLOXLauncher1\\ARCHBLOXLauncherGUI.csproj",
|
||||
"expectedPackageFiles": [
|
||||
|
|
|
|||
Loading…
Reference in New Issue