GetBuildActions() публичный Метод

Gets a list of build actions supported by this project
Common actions are grouped at the top, separated by a "--" entry *IF* there are more "uncommon" actions than "common" actions
public GetBuildActions ( ) : string[]
Результат string[]
Пример #1
0
 /// <summary>
 /// Cache the build actions here since adding new files on loading the project will clear the cache
 /// so we avoid re-building the Project's build action cache potentially multiple times. This local
 /// cache is cleared in OnReadProject.
 /// </summary>
 bool IsBuildActionSupported(string buildAction)
 {
     if (cachedBuildActions == null)
     {
         cachedBuildActions = Project.GetBuildActions().Where(a => a != "Folder" && a != "--").ToArray();
     }
     return(cachedBuildActions.Contains(buildAction));
 }