diff --git a/.gitignore b/.gitignore
index 31387d29..e4872dbc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@ Test
*.msi
*.chm
/Tools
+/build.txt
diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 00000000..ce7135dd
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,10 @@
+language: csharp
+solution: ./Source/MSBuild.Community.Tasks.sln
+
+install:
+ - nuget restore ./Source/MSBuild.Community.Tasks.sln
+ - nuget install MSBuildTasks -OutputDirectory ./Tools/ -ExcludeVersion -NonInteractive
+ - nuget install ILRepack.MSBuild.Task -OutputDirectory ./Tools/ -ExcludeVersion -NonInteractive
+
+script:
+ - xbuild ./Master.proj
\ No newline at end of file
diff --git a/Master.proj b/Master.proj
index 5f2ebf47..628fb2a1 100644
--- a/Master.proj
+++ b/Master.proj
@@ -10,6 +10,7 @@
+
$(APPVEYOR_BUILD_NUMBER)
@@ -88,12 +89,17 @@
DestinationFiles="$(BuildFolder)\MSBuild.Temp.dll" />
-
-
+
+
+
+
+
+
+
diff --git a/bootstrap.cmd b/bootstrap.cmd
index 3bb85d89..8e875310 100644
--- a/bootstrap.cmd
+++ b/bootstrap.cmd
@@ -2,4 +2,4 @@
Nuget.exe restore "Source\MSBuild.Community.Tasks.sln"
NuGet.exe install MSBuildTasks -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
-NuGet.exe install ilmerge -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive
+NuGet.exe install ILRepack.MSBuild.Task -OutputDirectory .\Tools\ -ExcludeVersion -NonInteractive