Finding .NET Core Version
How do you find whether the existing Project solution was developed using .NET Framework or .NET Core?
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rijwan AnsariPosted May 9, 2021, 9:26 AM
Željko PerićPosted May 8, 2021, 9:58 PM
Hello manikandan r
One way is to read app.exe.config file that is generated automatically during build of aplication and saved in the same folder as exe version of program. There is also app.config file inside main folder of project. Among other, both files contain information on .Net framework version that is necessary for correct execution of program. Here is the example of file contents :
Željko Peric.