Reputation: 5606
Ultimately I try to set a file to be copied to the build output directory. But I ran in to the problem of not being able to locate the project properties. I know it should be there, am I overlooking something?
I follow this guide: https://learn.microsoft.com/nl-nl/cpp/ide/general-property-page-project In the first line it suggests:
When you right-click on a project node in in Solution Explorer, and select Properties,
Assuming that I know what is referred to by the project node. Well I right-clicked and left-clicked about everything and anything in the whole VS and nowhere I find any properties. Also not of the file that should be included in the build. It feels like one of those cases of a blindspot or something, maybe someone out there can help me out?
Upvotes: 5
Views: 10718
Reputation:
You can see the projects in Solution Explorer, they have different icons to the other files.
Project files tend to have a square border:
I accept it is difficult to tell the difference - there as so many different icons.
Upvotes: 1
Reputation: 607
Click on View > Properties Window
To change the Solution Explorer View mode, click the button highlighted below:
In your case it would be:
Upvotes: 3
Reputation: 3775
I am afraid you are in Folder View
of the Solution Explorer window which will not show your *.proj
files, in order to change to project view click on the right icon next to Home
and everything will be back to normal.(or at least as expected)
Upvotes: 11