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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornulltoken <emeric.fermas@gmail.com>2012-10-17 13:52:17 +0400
committernulltoken <emeric.fermas@gmail.com>2012-10-17 13:52:17 +0400
commit56b25be50c4e5ae27570bb670a5e16d5450fbaf7 (patch)
tree26f4ee100db85ecec4f2d30c2e4571ddc7013a94 /LibGit2Sharp/TagFetchMode.cs
parent7e0d71ed32c629fbcd563b80fcf806b5ac4467ad (diff)
Rename TagOption to TagFetchMode
Diffstat (limited to 'LibGit2Sharp/TagFetchMode.cs')
-rw-r--r--LibGit2Sharp/TagFetchMode.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/LibGit2Sharp/TagFetchMode.cs b/LibGit2Sharp/TagFetchMode.cs
new file mode 100644
index 00000000..f692ea68
--- /dev/null
+++ b/LibGit2Sharp/TagFetchMode.cs
@@ -0,0 +1,25 @@
+using System;
+
+namespace LibGit2Sharp
+{
+ /// <summary>
+ /// Enum for TagOptions
+ /// </summary>
+ public enum TagFetchMode
+ {
+ /// <summary>
+ /// None.
+ /// </summary>
+ None = 1, // GIT_REMOTE_DOWNLOAD_TAGS_NONE
+
+ /// <summary>
+ /// Auto.
+ /// </summary>
+ Auto, // GIT_REMOTE_DOWNLOAD_TAGS_AUTO
+
+ /// <summary>
+ /// All.
+ /// </summary>
+ All, // GIT_REMOTE_DOWNLOAD_TAGS_ALL
+ }
+}