using System; namespace LibGit2Sharp { /// /// Flags to identify libgit2 compiled features. /// [Flags] public enum BuiltInFeatures { /// /// No optional features are compiled into libgit2. /// None = 0, /// /// Threading support is compiled into libgit2. /// Threads = (1 << 0), /// /// Support for remotes over the HTTPS protocol is compiled into /// libgit2. /// Https = (1 << 1), /// /// Support for remotes over the SSH protocol is compiled into /// libgit2. /// Ssh = (1 << 2), } }