How do I prevent IVsBuildPropertyStorage.SetItemAttribute from escaping special characters?
I am working on a Visual Studio 2010 extension and I want to add an attribute to an MSBuild Item, as follows: <EmbeddedResource Include="SomeFile.xml"> <FooAttribute>%(Filename)%(Extension)</FooAttribute> </EmbeddedResource> So, far the only way I found is using the method IVsBuildPropertyStorage.SetItemAttribute . This works ...