-
Hello, I want to use the PhysicalFile.TrySetAttributeAsync(...) to store custom settings for a certain file. I already used Project.TrySetAttributeAsync(...) to store custom settings for a certain project. I would expected I could use PhysicalFile.TrySetAttributeAsync(...) in the same way, and that it would be stored in the project file the phisical file belongs to, but that doesn't seems to work? What i'm trying to achieve? So if somebody has an other idea to to this? Kind regards, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I just tried setting a custom property and noticed that it was able to get the This should be fixed by #384. |
Beta Was this translation helpful? Give feedback.
I just tried setting a custom property and noticed that it was able to get the
VSHPROPID_BrowseObject
property value, but because the custom attribute I was trying to set did not have a property descriptor, it was not able to set the property via the property descriptor. It should have been falling back to writing the attribute to the project file, but that was skipped.This should be fixed by #384.