Say I've got a .vsprops
file that is used in a solution. In that file, various variables are defined such as int_dir
for intermediate build results and log_dir
for the log results.
Usually, these variables get set to default values (relative to the solution).
For me, I'd like to set these two variables to my ramdisk (R:
), i.e. no longer
$(SolutionDir)intermediate
but
R:myprojectintermediate
If I change the .vsprops
file directly, the source control (Git) will mark it as modified.
Is there a way in VSPROPS so that I could check maybe an environment variable and if this variable is not set, the default is used?
If this is not possible, I'd also be interested in a solution for Git to overcome this (but not --assume-unchanged
and not .gitignore
because maybe other changes in that file could be relevant).
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…