Tagged Questions
The vsprops tag has no wiki summary.
4
votes
2answers
467 views
Multiple projects with multiple (different) build configuration in one solution
What is the correct and easy step by step way to have multiple build configurations in the same VS project, where the Solution also contain multiple projects? The projects would have different build ...
3
votes
3answers
972 views
Optional environment variables with vcproj/vsprops
Is there any way to make an environment variable substituion in a project file (with or without vsprops) that, if the variable is not found, is substituted instead with a default value? I haven't ...
2
votes
2answers
278 views
Force VSProps settings to override project settings
I have a vsprops file that defines the optimizations all of our projects should be built with for Visual Studio 2008. If I set the properties for the project to "inherit from parent of project ...
2
votes
2answers
184 views
Can I have platform specific sections in my vsprops (Property Sheet) file?
I'm creating a vsprops file to contain include and lib paths that are common to all projects in my solution.
However, I have platform specific paths for the lib paths which can be Win32/x64. Is it ...
2
votes
1answer
938 views
VS2008: Add custom build rule to a Property Sheet (vsprops)?
I'm using the CUDA .rules file which comes with the CUDA SDK for custom build steps in my project.
To save on property duplication I'd like to define the properties of the CUDA rule in a .vsprops ...
2
votes
7answers
2k views
Building both DLL and static libs from the same project
I have a number of native C++ libraries (Win32, without MFC) compiling under Visual Studio 2005, and used in a number of solutions.
I'd like to be able to choose to compile and link them as either ...
1
vote
2answers
111 views
MSVC linker won't apply RandomizedBaseAddress via vsprops file
I am trying to add ASLR to a project using a vsprops file. I have verified the file is being used by the project as there are other settings in the file that are being applied, and intentionally ...
1
vote
0answers
165 views
Accessing .vsprops (Property Sheets) via VS Automation and Extension
I am trying to access user macros that are defined in a .vsprops (Property Sheet) that is used by a Visual Studio 2008 project. I cannot find any documentation on accessing any information in a ...
0
votes
0answers
13 views
How can I make property sheets to show up as text files in the property manager?
I've searched around the internet for an hour now but can't find the answer. In my copy of visual studio 2008 I got the option to view .vsprops in the property manager as text files; by right click ...
0
votes
1answer
135 views
VS2010 compiler auto-generates unwanted .vsprops file in MSBuild project
I've got a PrimaryBuild.targets file, which I build with MSBuild, through Team Foundation Server build definition. This file invokes other msbuild tasks to build all VB solutions contained in my ...
0
votes
4answers
192 views
Allowing developer-specific settings in VS2008 Native C++ projects
Is it possible to combine the following properties, and if so, how?
Store in our version control system some Visual Studio 2008 native C++ (VCPROJ) project files for the developers in our team that ...
0
votes
1answer
643 views
CharacterType/ConfigurationType in vsprops
I've been using Visual Studio's property sheets for building my code and I have a useful hierarchy of sheets controlling the build settings, rather than having them in the vcproj files. This is great ...
0
votes
1answer
110 views
How can the order of inherited includes be controlled in vsprops Property Sheets?
I'm using some vsprops sheets that inherit from each other. My base property sheet defines some include paths. In a second vsprops file that inherits from it, I want to add some more include paths.
...