3
I’m thinking of creating a new project in c# I saw three types of libraries that caught my attention and I couldn’t distinguish exactly what would be the best applicability in each project.
- .NET Framework Class Library
- .NET Core Class Library
- Standard Class Library
Clearly I could understand that they are specific if the project goes cross-Platform or if it is native to Windows among others.
But one example left me intrigued: . NET Core is cross-Platform can be used for example on Linux servers, and the Standard is also used in the same context.
Libraries . NET Framework is for . NET Framework. Libraries . NET Core is for . NET Core. Libraries . NET Standard is for both. One tends to be more limited than the other, see Maniero’s answer for more details.
– CypherPotato