rskopecek/CodeDocs

What ".net frameworks/versions" should be targeted?

Opened this issue · 1 comments

Currently the project is targeted at netstandard2.0. However, the mountain of tech debt that affects developers and their system users may range back to early versions of .Net. Version 3.5 seems like an obvious one to include.

What .net versions should be added on as a target so you can utilize in all your .net codebases.

Well, "day one" trying to use the nuget on an old .net app ran into an issue. Netstandard 2 littered all sorts of stuff and basically disabled .Net, and thus the app. Just uninstalled to fix. So, added multi-targeting in to cover 3.5, 4.62, and 4.72 for now and dropped all the extras for netstandard 2 to prevent package littering. Not entirely sure if I did it right. Used the built in functionality, but ran into some issues. Shallow tested every .net version 3.5 - 4.72, so looked okay.

Short story: .Net projects 3.5+ should all work now.