Welcome to mirror list, hosted at ThFree Co, Russian Federation.

BuiltInFeatures.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: db6a1a0edf7f12a7186ecd26fd488e37590d6c28 (plain)
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
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),
    }
}