Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion EDSSharp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ static ExporterDescriptor FindMatchingExporter(string outpath, string outType)

static void PrintHelpText()
{
Console.WriteLine("Usage: EDSEditor --infile file.[xdd|eds] --outfile [valid output file] [OPTIONAL] --type [exporter type]");
string name = Path.GetFileNameWithoutExtension(Environment.GetCommandLineArgs()[0]);
Console.WriteLine($"Usage: {name} --infile file.[xdd|eds] --outfile [valid output file] [OPTIONAL] --type [exporter type]");
Console.WriteLine("The output file format depends on --outfile extension and --type");
Console.WriteLine("If --outfile extension matcher one exporter then --type IS NOT needed");
Console.WriteLine("If --outfile extension matcher multiple exporter then --type IS needed");
Expand Down
Loading