Problem with inherited macro variables
Visual Studio
1
Posts
1
Posters
0
Views
1
Watching
-
Hi! I want to create some macro variable specific to my project, just like $(SolutionDir) etc that is predefined, and there for I create property sheets containing the macros (I'm using VS 2005) What I want to achieve is to have one vsprops-file with macron common for all my projects, and one file which inherits from the common file with some extra macros specific for this project (and maybe redefinitions). Like: Common file: $(Foo) Project specific file: $(Bar) Available in Visual studio: $(Foo) $(Bar) The problem is that if I write a macro in the parent/common file, it can't be seen in the project if I don't redefine it in the project specific file using same name but an empty value. Can this be done with inheritage?