Beispiel #1
0
 /// <summary>
 /// Gets the evaluated property.
 /// </summary>
 /// <param name="propertyName">Name of the property.</param>
 /// <returns></returns>
 public string GetEvaluatedProperty(string propertyName, bool throwIfNotFound)
 {
     return(ProjectNode.GetEvaluatedProperty(this.VSProject, propertyName, throwIfNotFound));
 }
Beispiel #2
0
 /// <summary>
 /// Gets the evaluated property.
 /// </summary>
 /// <param name="project">The project.</param>
 /// <param name="propertyName">Name of the property.</param>
 /// <param name="throwIfNotFound">When 'true', it thows an error if the property wasn't found.</param>
 /// <returns></returns>
 public static string GetEvaluatedProperty(EnvDTE.Project project, string propertyName)
 {
     return(ProjectNode.GetEvaluatedProperty(project, propertyName, false));
 }
Beispiel #3
0
 /// <summary>
 /// Gets the evaluated property.
 /// </summary>
 /// <param name="propertyName">Name of the property.</param>
 /// <returns></returns>
 public string GetEvaluatedProperty(string propertyName)
 {
     return(ProjectNode.GetEvaluatedProperty(this.VSProject, propertyName, false));
 }