Reputation: 44812
I know of the following:
$(ConfigurationName)
: for example "Debug" or "Release"$(SolutionDir)
: directory of the solution$(PlatformName)
: "Win32" or "x64"Are there any others?
Upvotes: 2
Views: 208
Reputation: 40372
See Macros for Build Commands and Properties in MSDN for a complete list.
Upvotes: 5
Reputation: 30862
If you hit Edit... then Macros you'll get a list of the supported properties, including InputDir, InputFileName, InputPath (ditto for TargetXXX). Also, rather usefully you can refer to $(ENVIRONMENT_VARIABLE)
Upvotes: 0