18 lines
577 B
C#
Raw Normal View History

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;
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-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
}
}
}