Skip to content

Instantly share code, notes, and snippets.

View oldslowfatstu's full-sized avatar

Stuart Roberts oldslowfatstu

View GitHub Profile
@davidfowl
davidfowl / websockets.cs
Last active May 15, 2023 05:31
Simple WS ASP.NET Core
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
namespace SimpleWebSockets
{
public class Program
{
public static void Main(string[] args)
{
var host = new WebHostBuilder()