We have asp.net core web application and we use Jenkins as CI tool. The build step for our project in Jenkins consists of one step as 'Execute Windows batch command' with command dotnet.exe build "C:\Program Files (x86)\Jenkins\workspace\CustomerPortal Develop\src\CustomerPortal" --configuration Release --no-dependencies
It hangs on build.
Notice that, if i run this command via Command Prompt (cmd.exe) i get output:
*Project CustomerPortal (.NETCoreApp,Version=v1.0) will be compiled because inputs were modified
Compiling CustomerPortal for .NETCoreApp,Version=v1.0 Compilation succeeded.
0 Warning(s)
0 Error(s)
Time elapsed 00:00:03.7759054*
Any ideas?