This commit is contained in:
Xiaohongt 2015-03-20 13:12:10 -07:00
Родитель 20b8d7de6b
Коммит a2aa1fee4e
2 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -13,7 +13,7 @@ utility::string_t url;
void get_url(int argc, utility::char_t* argv[]) void get_url(int argc, utility::char_t* argv[])
{ {
url = U("http://localhost:8081/"); url = U("http://localhost:42524/");
for (int i = 0; i < argc; ++i) for (int i = 0; i < argc; ++i)
{ {

Просмотреть файл

@ -12,9 +12,9 @@ namespace SelfHost
{ {
static void Main(string[] args) static void Main(string[] args)
{ {
using (WebApp.Start<Startup>("http://localhost:8081")) using (WebApp.Start<Startup>("http://localhost:42524"))
{ {
Console.WriteLine("Server running at http://localhost:8081/"); Console.WriteLine("Server running at http://localhost:42524/");
Thread.Sleep(args.Length > 0 ? int.Parse(args[0]) : Timeout.Infinite); Thread.Sleep(args.Length > 0 ? int.Parse(args[0]) : Timeout.Infinite);
} }
} }