Added project files, source files, and assets.

As long as you have IronPython 2.7.3 you should be able to compile now
with this commit.
This commit is contained in:
Brian 2013-12-20 19:54:45 -07:00
parent a62ee2f168
commit 51e217e38c
79 changed files with 6968 additions and 0 deletions

26
code/src/ScriptManager.cs Normal file
View file

@ -0,0 +1,26 @@
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace FileWatcher
{
public partial class ScriptManager : Form
{
public ScriptManager()
{
InitializeComponent();
}
// each script has a script id, so the user can rename or redirect at there will, and the scripts will remain correctly linked.
private void ScriptManager_Load(object sender, EventArgs e)
{
}
}
}