Move more things, split DatFile finally

This commit is contained in:
Matt Nadareski
2020-12-09 21:52:38 -08:00
parent 9e88a0ab27
commit d612e56cff
23 changed files with 5250 additions and 5157 deletions

View File

@@ -12,11 +12,6 @@ namespace SabreTools.Core
{
#region Public accessors
/// <summary>
/// Command line arguments passed in to the parent program
/// </summary>
public static string CommandLineArgs => string.Join(" ", Environment.GetCommandLineArgs());
/// <summary>
/// Directory path for the current executable
/// </summary>
@@ -43,6 +38,7 @@ namespace SabreTools.Core
/// <summary>
/// Temporary directory location
/// </summary>
/// <remarks>TODO: Find a way to get rid of this as a global variable and put it in DatFile</remarks>
public static string TempDir { get; set; } = Path.GetTempPath();
#endregion