This is a short introduction into building applications like Visual Studio solutions, Gradle/Ant/Maven- or Makefile projects. What does building mean in general? Transfering your project from one state to another. This means for example one takes the source files and derives binaries from them or creating a pdf documentation from the contained markdown files. Thus… Continue reading Build your application outside your IDE
Category: Software development
How to keep a clean local development environment
As a developer I have to work with a lot of tools, development environments and frameworks and I want to keep them in the same spot, know what I work with, especially with which version, keep old versions for compatibility reasons and have a simple way of updating stuff without the need to change a… Continue reading How to keep a clean local development environment
Install Visual Studio Code
I think it is time to show real quick how to install Visual Studio Code because most of my work is done with this editor. It can be downloaded from the product page. After this is done just follow the screenshots and you are good to go. I recommend to use the user installer, which… Continue reading Install Visual Studio Code
Create a simple .NET core library
In my last post I summed up my Azure DevOps setup at home. When the machine is running, the application is set up and the services are started the first tasks can be added. In this post I want to show how to create a simple solution that offers the following functionality. A simple library… Continue reading Create a simple .NET core library