2022-05-16 01:21:51 -05:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System;
|
|
|
|
|
using System.CommandLine;
|
2022-05-16 02:25:54 -05:00
|
|
|
|
using DotNetResxUtils.Commands;
|
2022-04-26 04:14:57 -05:00
|
|
|
|
|
|
|
|
|
namespace DotNetResxUtils
|
|
|
|
|
{
|
|
|
|
|
internal class Program
|
|
|
|
|
{
|
|
|
|
|
static void Main(string[] args)
|
|
|
|
|
{
|
2022-05-16 01:21:51 -05:00
|
|
|
|
RootCommand rootCmd = new RootCommand(".Net Resx Utils provides tools for generating, and editing .resx files.");
|
2022-05-18 22:03:45 -05:00
|
|
|
|
rootCmd.AddCommand(new Generate());
|
2022-04-26 04:14:57 -05:00
|
|
|
|
|
2022-05-16 01:21:51 -05:00
|
|
|
|
// See: Collection organizers - https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers
|
2022-04-26 04:14:57 -05:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|