Reputation: 113996
I've opened a VCXPROJ file to change the directory paths, and in the OutDir
XML parameter, the following is marked:
<OutDir>.\..\..\..\..\..\Bin\$(PlatformName)\$(MsvcVer)\$(ProjectName)\</OutDir>
I need to change it to something like this, but is it valid? Does it need the .\
at the start of the path? What does it mean anyways?
<OutDir>Bin\$(PlatformName)\$(MsvcVer)\$(ProjectName)\</OutDir>
Upvotes: 1
Views: 28