Reputation: 113
In solution Explorer, If you right click on a project, at the bottom,
There is an option ----> 'Properties'
My question is,
how do I find the 'Properties' page in terms of a file on computer?
Because I want to compare the properties of different projects....
Thank you very much for the answer!
Upvotes: 2
Views: 744
Reputation: 18061
These project properties are stored in the <Your Project Name>.csproj
file (for C# projects).
The project file holds also information on the structure of your project as well as the references.
Upvotes: 2