Targets .NET Core 3.0 (#39)

This commit is contained in:
Kamron Batman 2019-08-02 17:53:18 -07:00 committed by GitHub
parent 0993c03b70
commit 08bf44af9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
125 changed files with 1473 additions and 14244 deletions

View file

@ -1,6 +1,4 @@
using System;
using System.IO;
using Microsoft.Win32;
namespace Server.Misc
{
@ -12,7 +10,8 @@ namespace Server.Misc
* Example:
* private static string CustomPath = @"C:\Program Files\Ultima Online";
*/
private static string CustomPath = null;
private static string CustomPath = @"C:\Ultima Online Classic";
// private static string CustomPath = @"/Users/kamronbatman/UOC";
/* The following is a list of files which a required for proper execution:
*
@ -69,7 +68,8 @@ namespace Server.Misc
private static string GetPath(string subName, string keyName)
{
try
return null;
/*try
{
string keyString;
@ -102,7 +102,7 @@ namespace Server.Misc
catch
{
return null;
}
}*/
}
}
}
}