Beispiel #1
0
    private async Task OnExecuteAsync()
    {
        if (Models == null || InputDir == null || OutputDir == null)
        {
            return;
        }

        var exporter = new ModelExporter(Models.ToHashSet(), InputDir, OutputDir);
        await exporter.ExportAsync();
    }