[md_github token=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 url= https://github.com/OsirisTerje/osiristerje.github.io/blob/master/Debugging-the-NUnit3TestAdapter-Take2.md]
Starting up with C# and .Net Core
[md_github token=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 url= https://github.com/OsirisTerje/osiristerje.github.io/blob/master/Starting-up-with-CS-and-Net-Core.md]
How to list git repositores under a common folder root
The listgit tool allows you to list the remotes for multiple git repositores under a folder, or search for a local repo with a given remote. The tool is very handy when you have multiple repositores and need to figure where you have a specific one, or a set that matches a certain pattern. Continue Reading →
How to setup Azure CLI for use with Bash shell in Windows
This short guide explains how you get the Azure CLI to show up properly with the Bash shell in Windows. Continue Reading →
Github Actions, including how to build .Net Framework projects
Github Actions can be used for automating a series of processes, as it can utilize most of the events in the github system. The most typical use will still be to trigger CI/CD builds. Continue Reading →
Debugging the NUnit3TestAdapter
A test adapter sits between a TestHost and the test framework. If you use Visual Studio or dotnet, both starts up a TestHost as a seperate process. The testhost is responsible for locating the adapters, and then invoke them to run the test frameworks on the test code. Debugging the adapters is hard, because it sits between these processes, of which you have no control. Continue Reading →
Beware of the end-of-life for .Net Framework and .Net Core versions
[md_github token=d4f28f076dc6d8b2e03eb815eb9053f0569aacfa url= https://github.com/OsirisTerje/osiristerje.github.io/blob/master/NetEndOfLife.md]
Moving to SDK-Style projects and package references in Visual Studio, part 2
Introduction The SDK style projects are the new format that first appeared for .net core, but actually can be used also for nearly any type of projects in the .net Continue Reading →
New version of the NUnit 2 adapter supporting Visual Studio 2019
The NUnit 2.X framework have been superseded by the NUnit 3 framework several years ago. Each framework “family” needs a separate adapter, one for the V2 and one for the Continue Reading →
Moving to SDK-Style projects and package references in Visual Studio, part 1
Background With the introduction of .NET core some time back, Visual Studio got two different project systems. Along with this, we also got two different formats for a ‘csproj’ file. Continue Reading →