I am developing a visual studio extension, and I need to set some msbuild properties in .csproj file. The IVsBuildPropertyStorage
interface is able to set properties, but it does not support un-evaluated value, such as $(Configuration)
. So, I want to get an IVsBuildPropertyStorage2
instance, but I don't know how to get this.
Is there someone can help me?