
Side project idea I
Introduction A great way for a developer to expand their knowledge is by creating side projects, which can turn out to be useful applications or code that can be used in another project. The incentive for this project came from a Stackoverflow question . Is there a way to check for a C# .NET application to check if the used .NET version is still supported ? Working on a solution 💡 If a developer decides to use AI to assist with the solution, try to keep its use to a minimum to support learning. In the Stackoverflow question, there is a URL in the comments that returns JSON for each .NET Core version. Each property has a lower-case property name, along with commas in most of the properties. In the class representing information JsonPropertyNameAttribute provides a way to map a property to be used to store information. [ JsonPropertyName ( "support-phase" )] public string ? SupportPhase { get ; set ; } Complete class for storing data found here . Next, a method is needed to read data bac
Continue reading on Dev.to
Opens in a new tab



