Project class library does not open. Gives its .csproj error

1

This is the error:

Is there a way to generate a new .csproj or fix it or do I have to create a new project and import everything into it?

    
asked by anonymous 30.11.2017 / 20:01

1 answer

4

The file is likely to be corrupted. Unfortunately the best solution is to create another project from scratch and include the files.

From the original project file you can see what files you need - not just C # code, but also resource files and other formats, if they exist. The more complicated it is to get references - try opening the corrupted .csproj file in a text editor and finding out which references it uses, so you can rebuild them.

    
30.11.2017 / 20:10