AddWebMatrixTag() статический приватный Метод

Given a nupsec file path, add the Webmatrix tag to it.
static private AddWebMatrixTag ( string nuspecFilePath ) : void
nuspecFilePath string
Результат void
        /// <summary>
        /// Creates a windows 8 curated package given the package name and version.
        /// </summary>
        /// <param name="packageName"></param>
        /// <param name="version"></param>
        /// <returns></returns>
        public async Task <string> CreateWebMatrixCuratedPackage(string packageName, string version = "1.0.0")
        {
            var    nuspecHelper       = new NuspecHelper(TestOutputHelper);
            string nuspecFileFullPath = await nuspecHelper.CreateDefaultNuspecFile(packageName, version);

            NuspecHelper.AddWebMatrixTag(nuspecFileFullPath);
            return(await CreatePackageInternal(nuspecFileFullPath));
        }