Skip to content

Commit eff7ecd

Browse files
committed
Latest ServiceStack v1.75 libs and updated Console Host project to include example urls to try out
1 parent b90064d commit eff7ecd

6 files changed

Lines changed: 10 additions & 0 deletions

File tree

Lib

512 Bytes
Binary file not shown.

libs/ServiceStack.Interfaces.dll

512 Bytes
Binary file not shown.
512 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

libs/ServiceStack.dll

6.5 KB
Binary file not shown.

src/ServiceStack.Examples/ServiceStack.Examples.Host.Console/Program.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using System;
2+
using System.Text;
23
using System.Threading;
34

45
namespace ServiceStack.Examples.Host.Console
@@ -16,6 +17,15 @@ static void Main(string[] args)
1617
System.Console.WriteLine("AppHost Created at {0}, listening on {1}",
1718
DateTime.Now, ListeningOn);
1819

20+
var sb = new StringBuilder();
21+
sb.AppendLine("Some urls for you to try:\n");
22+
sb.AppendLine(ListeningOn + "xml/syncreply/GetFactorial?ForNumber=5");
23+
sb.AppendLine(ListeningOn + "json/syncreply/GetFibonacciNumbers?Skip=5&Take=10");
24+
sb.AppendLine(ListeningOn + "jsv/syncreply/GetAllUsers?debug");
25+
26+
System.Console.WriteLine(sb);
27+
28+
1929
Thread.Sleep(Timeout.Infinite);
2030
System.Console.WriteLine("ReadLine()");
2131
System.Console.ReadLine();

0 commit comments

Comments
 (0)