GUI to include a .prop file in a VS 2010 project?
Posted
by jwfearn
on Stack Overflow
See other posts from Stack Overflow
or by jwfearn
Published on 2010-06-06T21:06:24Z
Indexed on
2010/06/07
1:02 UTC
Read the original article
Hit count: 834
Visual Studio 2010 has no longer uses .vsprops
files and instead uses .props
files.
To include a .vsprops
file in a Visual Studio 2008 project, one could right-click the project icon in the Solution Explorer panel, choose Properties, go to the Configuration Properties | General section, and modify the Inherited Project Property Sheets property to contain a list of .vsprops
paths. One could also modify the Visual Studio 2008 project file directly.
Is there a way in the Visual Studio 2010 GUI to include .props
files to a project? The Inherited Project Property Sheets property seems to have been removed. If manual editing of the project file is the only way to include .props
files, where can one find documentation on doing it?
I'm not talking about adding a .props
file to the list of files in the project, I mean how do I tell the project to use a .props
file.
© Stack Overflow or respective owner