diff --git a/.gitignore b/.gitignore
index bdc3535..50cb4ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,7 @@
+# Wix installer generated files
+*.wixobj
+*.wixpdb
+
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
[Bb]in/
[Oo]bj/
diff --git a/GUI/GUI.csproj b/GUI/GUI.csproj
index cd34636..4dcf873 100644
--- a/GUI/GUI.csproj
+++ b/GUI/GUI.csproj
@@ -8,7 +8,7 @@
WinExe
Properties
GUI
- GUI
+ PathCAM
v4.5
512
publish\
@@ -48,6 +48,9 @@
prompt
4
+
+ icon.ico
+
False
@@ -176,6 +179,9 @@
false
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 1
+ 1
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Installer/banner.bmp b/Installer/banner.bmp
new file mode 100644
index 0000000..cf12640
Binary files /dev/null and b/Installer/banner.bmp differ
diff --git a/Installer/dialog.bmp b/Installer/dialog.bmp
new file mode 100644
index 0000000..98a0692
Binary files /dev/null and b/Installer/dialog.bmp differ
diff --git a/Installer/readme.txt b/Installer/readme.txt
new file mode 100644
index 0000000..b5ace8d
--- /dev/null
+++ b/Installer/readme.txt
@@ -0,0 +1,10 @@
+You'll need Wix to build the installer:
+
+http://wixtoolset.org/
+
+Make sure the \bin directory is in the PATH
+environment variable. That allows candle.exe and light.exe
+to be executed from scripts without providing the full path
+all the time.
+
+Then just build the VS solution in release mode and double click run.bat
\ No newline at end of file
diff --git a/Installer/run.bat b/Installer/run.bat
new file mode 100644
index 0000000..f3239a4
--- /dev/null
+++ b/Installer/run.bat
@@ -0,0 +1,2 @@
+candle.exe -ext WixNetFxExtension.dll PathCAM.xml
+light.exe -ext WixUIExtension -ext WixNetFxExtension.dll PathCAM.wixobj
\ No newline at end of file