forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BuiltInFeatures.cs
39 lines (34 loc) · 954 Bytes
/
BuiltInFeatures.cs
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
37
38
39
using System;
namespace LibGit2Sharp
{
/// <summary>
/// Flags to identify libgit2 compiled features.
/// </summary>
[Flags]
public enum BuiltInFeatures
{
/// <summary>
/// No optional features are compiled into libgit2.
/// </summary>
None = 0,
/// <summary>
/// Threading support is compiled into libgit2.
/// </summary>
Threads = (1 << 0),
/// <summary>
/// Support for remotes over the HTTPS protocol is compiled into
/// libgit2.
/// </summary>
Https = (1 << 1),
/// <summary>
/// Support for remotes over the SSH protocol is compiled into
/// libgit2.
/// </summary>
Ssh = (1 << 2),
/// <summary>
/// Support for sub-second resolution in file modification times
/// is compiled into libgit2.
/// </summary>
NSec = (1 << 3),
}
}