Пример #1
0
        /// <summary>
        /// This is overridden as a convenient place to create and load the project properties and documentation
        /// sources node.  It is also used to set the SHFBROOT environment variable if overridden locally.
        /// </summary>
        protected internal override void LoadNonBuildInformation()
        {
            try
            {
                // Only use the project version if SHFBROOT isn't already set.  Otherwise we might encounter a
                // situation where the project is using an older version of the build engine than this package
                // which could cause all sorts of strange errors.  Bottom line, if using this package with
                // SHFBROOT defined, it's going to use the version of SHFB related to it, not the one the project
                // references.  Note that this doesn't guarantee there won't be issues.  The best bet if trying
                // to edit projects using an older version of SHFB local to the project is to use the standalone
                // GUI instead.
                if (String.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("SHFBROOT")))
                {
                    var prop = this.ProjectMgr.BuildProject.GetProperty("SHFBROOT");

                    // This will remain in effect for the duration of the process including for projects loaded
                    // after this one that don't override it locally.  A restart will reset it.
                    if (prop != null && !prop.IsEnvironmentProperty && !prop.IsGlobalProperty)
                    {
                        string path = prop.EvaluatedValue;

                        if (!String.IsNullOrWhiteSpace(path))
                        {
                            if (!Path.IsPathRooted(path))
                            {
                                path = Path.Combine(Path.GetDirectoryName(this.ProjectMgr.BuildProject.FullPath),
                                                    path);
                            }

                            Environment.SetEnvironmentVariable("SHFBROOT", path);
                        }
                    }

                    // Unlike the standalone GUI we can't figure out where SHFBROOT should point so we'll make
                    // the user take care of it.
                    if (String.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("SHFBROOT")))
                    {
                        Utility.ShowMessageBox(OLEMSGICON.OLEMSGICON_INFO, "The SHFBROOT system environment " +
                                               "variable was not found.  This variable is usually created during installation and " +
                                               "may require a reboot.  It may also be defined locally within the project.  Since " +
                                               "it has not been set, the project properties may not be editable nor may the project " +
                                               "be built properly.  Please ensure the variable is defined and reload the project.");
                    }
                }
            }
            catch
            {
                // Ignore errors.  If we can't set SHFBROOT, let the project load anyway.
                Utility.ShowMessageBox(OLEMSGICON.OLEMSGICON_INFO, "The SHFBROOT system environment variable " +
                                       "was not found and could not be set.  This variable is usually created during installation " +
                                       "and may require a reboot.  It may also be defined locally within the project.  Since it " +
                                       "has not been set, the project properties may not be editable nor may the project be built " +
                                       "properly.  Please ensure the variable is defined and reload the project.");
            }

            ProjectPropertiesContainerNode projProps = this.FindChild(
                ProjectPropertiesContainerNode.PropertiesNodeVirtualName) as ProjectPropertiesContainerNode;

            if (projProps == null)
            {
                projProps = new ProjectPropertiesContainerNode(this);
                this.AddChild(projProps);
            }

            DocumentationSourcesContainerNode docSources = this.FindChild(
                DocumentationSourcesContainerNode.DocSourcesNodeVirtualName) as DocumentationSourcesContainerNode;

            if (docSources == null)
            {
                docSources = new DocumentationSourcesContainerNode(this);
                this.AddChild(docSources);
            }

            if (docSources != null)
            {
                docSources.LoadDocSourcesFromBuildProject();
            }

            base.LoadNonBuildInformation();
        }
Пример #2
0
        /// <summary>
        /// This is overridden as a convenient place to create and load the project properties and documentation
        /// sources node.  It is also used to set the SHFBROOT environment variable if overridden locally.
        /// </summary>
        protected internal override void LoadNonBuildInformation()
        {
            try
            {
                // Only use the project version if SHFBROOT isn't already set.  Otherwise we might encounter a
                // situation where the project is using an older version of the build engine than this package
                // which could cause all sorts of strange errors.  Bottom line, if using this package with
                // SHFBROOT defined, it's going to use the version of SHFB related to it, not the one the project
                // references.  Note that this doesn't guarantee there won't be issues.  The best bet if trying
                // to edit projects using an older version of SHFB local to the project is to use the standalone
                // GUI instead.
                if(String.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("SHFBROOT")))
                {
                    var prop = this.ProjectMgr.BuildProject.GetProperty("SHFBROOT");

                    // This will remain in effect for the duration of the process including for projects loaded
                    // after this one that don't override it locally.  A restart will reset it.
                    if(prop != null && !prop.IsEnvironmentProperty && !prop.IsGlobalProperty)
                    {
                        string path = prop.EvaluatedValue;

                        if(!String.IsNullOrWhiteSpace(path))
                        {
                            if(!Path.IsPathRooted(path))
                                path = Path.Combine(Path.GetDirectoryName(this.ProjectMgr.BuildProject.FullPath),
                                    path);

                            Environment.SetEnvironmentVariable("SHFBROOT", path);
                        }
                    }

                    // Unlike the standalone GUI we can't figure out where SHFBROOT should point so we'll make
                    // the user take care of it.
                    if(String.IsNullOrWhiteSpace(Environment.GetEnvironmentVariable("SHFBROOT")))
                        Utility.ShowMessageBox(OLEMSGICON.OLEMSGICON_INFO, "The SHFBROOT system environment " +
                            "variable was not found.  This variable is usually created during installation and " +
                            "may require a reboot.  It may also be defined locally within the project.  Since " +
                            "it has not been set, the project properties may not be editable nor may the project " +
                            "be built properly.  Please ensure the variable is defined and reload the project.");
                }
            }
            catch
            {
                // Ignore errors.  If we can't set SHFBROOT, let the project load anyway.
                Utility.ShowMessageBox(OLEMSGICON.OLEMSGICON_INFO, "The SHFBROOT system environment variable " +
                    "was not found and could not be set.  This variable is usually created during installation " +
                    "and may require a reboot.  It may also be defined locally within the project.  Since it " +
                    "has not been set, the project properties may not be editable nor may the project be built " +
                    "properly.  Please ensure the variable is defined and reload the project.");
            }

            ProjectPropertiesContainerNode projProps = this.FindChild(
                ProjectPropertiesContainerNode.PropertiesNodeVirtualName) as ProjectPropertiesContainerNode;

            if(projProps == null)
            {
                projProps = new ProjectPropertiesContainerNode(this);
                this.AddChild(projProps);
            }

            DocumentationSourcesContainerNode docSources = this.FindChild(
                DocumentationSourcesContainerNode.DocSourcesNodeVirtualName) as DocumentationSourcesContainerNode;

			if(docSources == null)
			{
                docSources = new DocumentationSourcesContainerNode(this);
				this.AddChild(docSources);
            }

            if(docSources != null)
			    docSources.LoadDocSourcesFromBuildProject();

            base.LoadNonBuildInformation();
        }