My TFS Build system just call a PowerShell script that do the compilation (through msbuild), package the application, deploy the database, etc...
Unfortunatly, I don't understand why the script won't finish. I try exit 0, call exit 0, but it always end by a timeout :
> Build succeeded.
> 0 Warning(s)
> 0 Error(s) Time Elapsed 00:00:13.48
> "MOVING APK IN SHARED FOLDER"
> 1 file(s) copied.
> "SUCCESS !"
> C:\Build\SmartLingo>exit 0
Then the build keeps running........ forever until one hour (or until I stop it myself).
I finally noticed that the line which is responsible of this non-sense is the following :
call "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" /p:Configuration=Debug;Platform=Android;MDAVSIXDIR="%PROGRAMFILES(x86)%\Microsoft Visual Studio 14.0\Common7\IDE\Extensions\ApacheCordovaTools";NODEJSDIR="%PROGRAMFILES(x86)%\nodejs";NPMINSTALLDIR="%APPDATA%\npm";LANGNAME="en-us";BUILDVERBOSITY=Normal C:\Build\Test\Test.jsproj
So it seems that this compilation execute a thread or something like that and is never finished...
Any idea how to make it works ? Thanks