Skip to content

Instantly share code, notes, and snippets.

View steven-r's full-sized avatar
🏠
Working from home

Stephen Reindl steven-r

🏠
Working from home
View GitHub Profile
@detunized
detunized / nunut2xunit.cs
Created March 12, 2019 23:23
Convert NUnit to xUnit
// Copyright (C) 2019 Dmitry Yakimenko (detunized@gmail.com).
// Licensed under the terms of the MIT license. See LICENCE for details.
using System;
using System.IO;
using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
@mizanRahman
mizanRahman / LoggerDemo.cs
Last active March 7, 2023 07:32
Logging with log4net. Colored Console Logging and File Logging demonstrated.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using log4net;
using log4net.Config;
namespace LogForNetTest
{