forked from daveaglick/Scripty
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuildAction.cs
More file actions
36 lines (31 loc) · 898 Bytes
/
Copy pathBuildAction.cs
File metadata and controls
36 lines (31 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Scripty.MsBuild
{
public enum BuildAction
{
/// <summary>
/// Only generates the file but does not add it to the project.
/// </summary>
GenerateOnly,
/// <summary>
/// Adds the file to the project and does not set a build action.
/// </summary>
None,
/// <summary>
/// Adds the file to the project and sets the compile build action.
/// </summary>
Compile,
/// <summary>
/// Adds the file to the project and sets the content build action.
/// </summary>
Content,
/// <summary>
/// Adds the file to the project and sets the embedded resource build action.
/// </summary>
EmbeddedResource
}
}