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

GitBuiltInFeatures.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4163b3186457bb41d2660370ab279ce62002dcc8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace LibGit2Sharp.Core
{
    /// <summary>
    /// Flags to indentify libgit compiled features.
    /// </summary>
    [Flags]
    internal enum GitBuiltInFeatures
    {
        Threads = (1 << 0),
        Https = (1 << 1),
        Ssh = (1 << 2),
    }
}