Skip to content

Instantly share code, notes, and snippets.

@peitschie
peitschie / app.html
Created May 16, 2019 23:59
Aurelia web-components creation failure
<template>
<h1>${message}</h1>
</template>
@peitschie
peitschie / Program.cs
Last active July 13, 2017 00:57
Minimal .NET core Windows service using PeterKottas.DotNetCore
using PeterKottas.DotNetCore.WindowsService;
using PeterKottas.DotNetCore.WindowsService.Interfaces;
using System;
using System.IO;
using System.Threading.Tasks;
namespace NetCoreWindowsService
{
class Program
{