/Mercurial.Net/Extensions/CaseGuard/CaseGuardExtension.cs
# · C# · 19 lines · 13 code · 0 blank · 6 comment · 0 complexity · 4ee718bce0cac1466980dae4ef669c8f MD5 · raw file
- namespace Mercurial.Extensions.CaseGuard
- {
- /// <summary>
- /// This class contains logic for the caseguard Mercurial extension.
- /// </summary>
- public static class CaseGuardExtension
- {
- /// <summary>
- /// Gets a value indicating whether the caseguard extension is installed and active.
- /// </summary>
- public static bool IsInstalled
- {
- get
- {
- return ClientExecutable.Configuration.ValueExists("extensions", "caseguard");
- }
- }
- }
- }