Microsoft.VisualStudio.Project.BuildPropertyPage.ApplyChanges C# (CSharp) 메소드

ApplyChanges() 보호된 메소드

protected ApplyChanges ( ) : int
리턴 int
        protected override int ApplyChanges()
        {
            if(this.ProjectManager == null)
            {
                Debug.Assert(false);
                return VSConstants.E_INVALIDARG;
            }

            this.SetConfigProperty(BuildPropertyPageTag.OutputPath.ToString(), _PersistStorageType.PST_PROJECT_FILE, this.outputPath);
            this.IsDirty = false;
            return VSConstants.S_OK;
        }