getting the value of $(ProjectDir), $(SolutionDir) in a vcproj file

后端 未结 1 528
南笙
南笙 2021-01-19 20:24

Is it possible to get the value of $(ProjectDir) or $(SolutionDir) programatically outside Visual Studio? My scenario is I need to read a vcproj fi

相关标签:
1条回答
  • 2021-01-19 20:57

    Well, you found out that looking at the .vcproj file isn't enough. You need to know the .sln file as well. You're kinda stuck until you resolve this. Visual Studio will always create a .sln file when it loads a .vcproj file and cannot find a matching .sln. Maybe you want to do that too.

    0 讨论(0)
提交回复
热议问题