BitMiracle.VisualStudioConverter.CSScript.Converter.processProductVersion C# (CSharp) Method

processProductVersion() private method

private processProductVersion ( XmlDocument projectDocument, XmlNamespaceManager xmlNamespaceManager ) : void
projectDocument System.Xml.XmlDocument
xmlNamespaceManager System.Xml.XmlNamespaceManager
return void
        private void processProductVersion(XmlDocument projectDocument, XmlNamespaceManager xmlNamespaceManager)
        {
            XmlNode productVersionNode = projectDocument.SelectSingleNode("/prj:Project/prj:PropertyGroup/prj:ProductVersion", xmlNamespaceManager);
            if (productVersionNode != null)
                productVersionNode.InnerText = m_visualStudioFormat.ProjectProductVersion;
        }