25 lines
566 B
C#
25 lines
566 B
C#
using System.Threading.Tasks;
|
|
|
|
using Autofac;
|
|
|
|
using MfGames.ToolBuilder;
|
|
|
|
namespace SampleTool
|
|
{
|
|
public static class Program
|
|
{
|
|
public static async Task<int> Main(string[] args)
|
|
{
|
|
return await ToolBoxBuilder
|
|
.Create("SampleTool", args)
|
|
.ConfigureContainer(ConfigureContainer)
|
|
.Build()
|
|
.RunAsync();
|
|
}
|
|
|
|
private static void ConfigureContainer(ContainerBuilder builder)
|
|
{
|
|
builder.RegisterModule<SampleToolModule>();
|
|
}
|
|
}
|
|
}
|