Skip to content

Commit

Permalink
Changed default deploy port to 12345, added ProductName column to Lis…
Browse files Browse the repository at this point in the history
…tRC api call
  • Loading branch information
SzymonPobiega committed Jun 10, 2012
1 parent 8887e40 commit a60be9d
Show file tree
Hide file tree
Showing 8 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ public ActionResult List()
.OrderByDescending(x => x.CreationDate)
.Take(20)
.ToList()
.Select(x => string.Format("{0};{1};{2}",x.VersionNumber,x.State,x.CreationDate.ToString("s")));
.Select(x => string.Format("{0};{1};{2};{3}",x.ProductName, x.VersionNumber,x.State,x.CreationDate.ToString("s")));

return new ContentResult
{
Content = "Version;State;CreationDate\r\n" + string.Join("\r\n", candidates)
Content = "ProductName;Version;State;CreationDate\r\n" + string.Join("\r\n", candidates)
};
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public ActionResult Deploy(string versionNumber)
}

var uniqueId = Guid.NewGuid().ToString();
var listenUrl = string.Format("http://{0}:8000/{1}", Environment.MachineName, uniqueId);
var listenUrl = string.Format("http://{0}:12345/{1}", Environment.MachineName, uniqueId);
var startInfo = new ProcessStartInfo(Path.Combine(settings.DeploymentWorkingDirectory, "PowerShellHtmlConsole.exe"),
string.Format(@"--listen={0} --script=.\{1}", listenUrl,deployScriptKey));
startInfo.WorkingDirectory = settings.DeploymentWorkingDirectory;
Expand Down
Binary file modified Tools/curl.exe
Binary file not shown.
Binary file added Tools/libcurl.dll
Binary file not shown.
Binary file added Tools/libeay32.dll
Binary file not shown.
Binary file added Tools/librtmp.dll
Binary file not shown.
Binary file added Tools/libssh2.dll
Binary file not shown.
Binary file added Tools/ssleay32.dll
Binary file not shown.

0 comments on commit a60be9d

Please sign in to comment.