Added stage test and added direct invocation of nant
diff --git a/Jenkinsfile b/Jenkinsfile
index c4ee1ec..60577e5 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -32,7 +32,14 @@
 		{
 			withEnv(["Path+NANT=$NANT_LATEST"])
 			{
-                		bat "build.cmd"
+                		bat "NAnt.exe -buildfile:log4net.build"
+                	}
+		}
+		stage('Test')
+		{
+			withEnv(["Path+NANT=$NANT_LATEST"])
+			{
+                		bat "NAnt.exe -buildfile:tests\\nant.build"
                 	}
 		}
 	}