40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using ImageMagick;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace EscudeLSF
|
|
{
|
|
internal class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
if (args.Length == 0 || args.Length > 2)
|
|
{
|
|
Console.WriteLine("Invalid arguments. Use -h for help.");
|
|
return;
|
|
}
|
|
|
|
|
|
switch (args[0])
|
|
{
|
|
case "-h":
|
|
case "-r":
|
|
case "-d":
|
|
case "-s":
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
//static void DisplayHelp()
|
|
//{
|
|
// Console.WriteLine("Usage: EscudeLSF.exe [-r <filepath>] [-d <directory>] [-s <filepath>] [-h]");
|
|
// Console.WriteLine("Options:");
|
|
// Console.WriteLine(" <filepath> Single lsf process");
|
|
// Console.WriteLine(" -r <filepath> Read single lsf file");
|
|
// Console.WriteLine(" -d <directory> Process all lsf files in directory");
|
|
// Console.WriteLine(" -s <filepath> Same as <filepath>");
|
|
// Console.WriteLine(" -h Display help info");
|
|
//}
|
|
|
|
}
|
|
}
|