First version of the MKV file info serializer engine. Currently unable to balance tags.

This commit is contained in:
2017-08-31 23:45:06 -05:00
parent 1f14137c5b
commit 407a183da4
22 changed files with 302 additions and 131 deletions
+22
View File
@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace MKVTest
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Form1());
}
}
}