ASP.NET
Parameterized Testing in xUnit: A Complete Guide
https://andrewlock.net/creating-parameterised-tests-in-xunit-with-inlinedata-classdata-and-memberdata/
Videos from Microsoft
.NET Conf 2019 C# 101, .NET Core 101, ASP.NET 101, Xamarin 101, Desktop and .NET Core 101, Introduction to Containers (Docker), Entity Framework Core 101, Intro to Visual Studio, ML.NET .NET for Apache Spark 101.
Freeware library to create Excel files
https://github.com/dotnetcore/NPOI
How to enable TLS 1.2 on Windows Server 2008 R2
Problem How to enable TLS 1.2 on Windows Server 2008 R2? Resolution QuoVadis recommends enabling and using the TLS 1.2 protocol on your server. TLS 1.2 has improvements over previous versions of the TLS and SSL protocol which will improve your level of security. By default, Windows Server 2008 R2 does not have this feature enabled. This KB … Read more
Inspect your http requests with HttpLogger
Inspect your http requests with HttpLogger Logging request/response messages when using HttpClient
A Few Great Ways to Consume RESTful API in C#
https://www.codeproject.com/Articles/1190592/A-Few-Great-Ways-to-Consume-RESTful-API-in-Csharp
How to install .Net Core on Ubuntu 16.04
Add the dotnet apt-get feed In order to install .NET Core on Ubuntu, you need to first set up the apt-get feed that hosts the package you need. sudo sh -c ‘echo “deb [arch=amd64] https://apt-mo.trafficmanager.net/repos/dotnet-release/ xenial main” > /etc/apt/sources.list.d/dotnetdev.list’ sudo apt-key adv –keyserver apt-mo.trafficmanager.net –recv-keys 417A0893 sudo apt-get update Install .NET Core SDK Before you … Read more
HTTP Error 503. The service is unavailable
I recently had a problem with IIS on Windows 7 where trying to access http://localhost on the default port 80 was giving me an error: “HTTP Error 503. The service is unavailable” I spent several hours trying to find the cause and trying different things without any success. Finally I came across this post that … Read more
log4net contextual properties and ASP.NET
I just found this article that helped me to find the answer about the weird results with my log files produced by ASP.NET application: log4net contextual properties and ASP.NET Big thank you to the author!