I'm currently struggling with a issue I'm having with a custom defined project property, which is supposed to be imported from an external build target file.
The property is defined as such in the imported file:
<Project>
<!-- ... -->
<PropertyGroup>
<!-- ... -->
<MyCustomPath>$(MyOtherCustomPath)\MyRelativePath</MyCustomPath>
<!-- ... -->
</PropertyGroup>
<!-- ... -->
</Project>
Appearantly though, what I'm trying to do with this variable doesn't seem to be working. Leading me to guess that for some reason the property isn't loaded with the project as it should.
So I would like to be able, from Visual Studio, to check on this property's current value to make sure it is set correctly.
Isn't there a way I can get the list of a given project's properties and their in-memory values?