Microsoft.VisualStudio.Project.BuildableProjectConfig.GetBuildCfgProperty C# (CSharp) Method

GetBuildCfgProperty() public method

public GetBuildCfgProperty ( int propid, object &pvar ) : int
propid int
pvar object
return int
        public int GetBuildCfgProperty(int propid, out object pvar)
        {
            switch (propid)
              {
            case VSBLDCFGPROPID_SupportsMTBuild:
              // Indicate that we support multi-proc builds
              pvar = true;
              return VSConstants.S_OK;
            default:
              pvar = null;
              return VSConstants.E_NOTIMPL;
              }
        }