using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Scripty.MsBuild { public enum BuildAction { /// /// Only generates the file but does not add it to the project. /// GenerateOnly, /// /// Adds the file to the project and does not set a build action. /// None, /// /// Adds the file to the project and sets the compile build action. /// Compile, /// /// Adds the file to the project and sets the content build action. /// Content, /// /// Adds the file to the project and sets the embedded resource build action. /// EmbeddedResource } }