22 lines
465 B
C#
22 lines
465 B
C#
using SmartZip.Logic;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace EnforceIDXApp
|
|
{
|
|
class Program
|
|
{
|
|
static void Main(string[] args)
|
|
{
|
|
string log = @"c:\temp\o.txt";
|
|
if (args.Length > 0)
|
|
log = args[0];
|
|
ZipProcessSeparated z = new ZipProcessSeparated(log);
|
|
z.EnforcePacking();
|
|
}
|
|
}
|
|
}
|