Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 fine for simple strings, but when i try to use characters that are special to MSBuild, I get this result:

 <EmbeddedResource Include="SomeFile.xml">
      <FooAttribute>%29%25%28Filename%29%25%28Extension%29</FooAttribute>
 </EmbeddedResource>

This means that SetItemAttribute automatically escapes from MsBuild characters and I don't want that.

like image 796
José F. Romaniello Avatar asked Oct 24 '10 12:10

José F. Romaniello


1 Answers

This question is a bit old, but needs an answer. VS2010 seems to have better interface that can set values without escaping.

IVsBuildPropertyStorage2 Interface

Implemented by the project system to give flavors access to the MSBuild property system. This interface provides more flexibility around setting properties than IVsBuildPropertyStorage. It allows for adding a new conditional property group and does not escape the values.

Namely the function SetPropertyValueEx: http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.shell.interop.ivsbuildpropertystorage2.setpropertyvalueex.aspx

like image 57
Erti-Chris Eelmaa Avatar answered Nov 15 '22 09:11

Erti-Chris Eelmaa