Add Wox.UpdateFeedGenerator

This commit is contained in:
qianlifeng
2015-01-22 22:57:54 +08:00
parent bda67afd4f
commit 21edfdb62e
22 changed files with 685 additions and 73 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading;
using System.Xml;
namespace Wox.UpdateFeedGenerator
{
class Program
{
static void Main(string[] args)
{
new Generator().Build();
}
}
}