//TODO: is this right? it has the same token twice
 /// <summary>
 /// Uns the tokenize.
 /// </summary>
 /// <param name="feature">The feature.</param>
 /// <param name="tokenString">The token string.</param>
 /// <returns></returns>
 public static string UnTokenize(this ISharePointProjectFeature feature, string tokenString)
 {
     if (feature != null)
     {
         tokenString = tokenString.Replace("$SharePoint.Project.FileNameWithoutExtension$", Path.GetFileNameWithoutExtension(feature.Project.FullPath));
         tokenString = tokenString.Replace("$SharePoint.Feature.FileNameWithoutExtension$", DeploymentUtilities.GetLastFolderName(feature.FullPath));
     }
     return(tokenString);
 }