Upgrading .net versions
Created by: ax-meyer
We had .net46 as lowest build-target for all libraries. However, .net46 will be EOL in 04/2022 (https://docs.microsoft.com/de-de/lifecycle/products/microsoft-net-framework).
All libraries now target netstandard2.0 with minimum supported .netFramework version being 4.6.1 (https://docs.microsoft.com/de-de/dotnet/standard/net-standard).
Targets for executables were .netcoreapp2.1, which is EOL since 08/2021, thus I upgraded to the newest LTS, net6 (https://dotnet.microsoft.com/platform/support/policy/dotnet-core).
@SebastianDirks
do you have anything still depending on net46? Otherwise, it should be an easy upgrade.