示例#1
0
 /// <summary>
 /// Gets the preprocessor variable value from the WixProject.
 /// </summary>
 public string GetValue(string name)
 {
     if (project != null)
     {
         return(project.GetVariable(name));
     }
     return(null);
 }