IVsBuildPropertyStorage::RemoveProperty Method (String^, String^, UInt32)
Visual Studio 2015
Used by a project subtype to remove an MSBuild property.
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Parameters
- pszPropName
-
Type:
System::String^
[in] Name of the build property to remove.
- pszConfigName
-
Type:
System::String^
[in] Name of the build configuration.
- storage
-
Type:
System::UInt32
[in] Storage type for file persistence. Values are taken from the _PersistStorageType enumeration.
Return Value
Type: System::Int32If the method succeeds, it returns S_OK. If it fails, it returns an error code.
From vsshell80.idl:
HRESULT IVsBuildPropertyStorage::RemoveProperty( [in] LPCOLESTR pszPropName, [in] LPCOLESTR pszConfigName, [in] PersistStorageType storage );
This method can be employed by a project subtype to remove an MSBuild property and thus enable the project subtype to influence the base project's build process. For more information on project subtypes, see Project Subtype Overviewd.
Show: