dotnetresxutils/DotNetResxUtils/Program.cs

18 lines
577 B
C#

using System.IO;
using System;
using System.CommandLine;
using DotNetResxUtils.Commands;
namespace DotNetResxUtils
{
internal class Program
{
static void Main(string[] args)
{
RootCommand rootCmd = new RootCommand(".Net Resx Utils provides tools for generating, and editing .resx files.");
rootCmd.AddCommand(new Generate());
// See: Collection organizers - https://docs.microsoft.com/en-us/dotnet/csharp/programming-guide/classes-and-structs/object-and-collection-initializers
}
}
}