Setting exit code in exception message.

This commit is contained in:
Praburaj 2015-04-20 10:25:53 -07:00
parent df6f59a1d1
commit 0ab04fd319
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ namespace Microsoft.AspNet.Server.Testing
if (hostProcess.ExitCode != 0)
{
throw new Exception("dnu publish exited with exit code : {0}");
throw new Exception(string.Format("dnu publish exited with exit code : {0}", hostProcess.ExitCode));
}
DeploymentParameters.ApplicationPath =