dotnetresxutils/DotNetResxUtils/Program.cs

18 lines
577 B
C#
Raw Permalink Normal View History

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