Explore >> Select a destination


You are here

www.thepollyproject.org
| | nodogmablog.bryanhogan.net
10.5 parsecs away

Travel
| | Full source code available CoreWithKestrelFromConfighere. In my previous post I explained how to host Kestrel web server running on (the default) port 5000 as a Windows service. But what if you want to run the server on a different port?
| | anthonygiretti.com
6.9 parsecs away

Travel
| |
| | csharp.christiannagel.com
6.7 parsecs away

Travel
| | In older solutions I've created a service that returns all the different configurations used by different projects in a solution, e.g. URLs to APIs, connection strings, and more. Now with Azure App Configuration a service is offered by Microsoft Azure that makes this easy a lot easier: a service that can be used by your...
| | danielpecos.com
64.0 parsecs away

Travel
| Para retomar de nuevo la marcha del blog, he decidido comenzar mostrando algunos ejemplos de programación en C#. Por el momento os dejo el obligatorio programa para todo aquel que empieza con algún lenguaje. Hola Mundo! using System; namespace HolaMundo { public class HolaMundo { public static void Main (string [] args) { Console.WriteLine ("Hola Mundo!"); } } } Sencillo, ¿verdad? Tiene mucha semejanza con Java, exceptuando que las palabras reservadas difieren y que Java no posee el concepto de espacios ...