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:
authorTim Clem <timothy.clem@gmail.com>2011-03-28 21:22:36 +0400
committerTim Clem <timothy.clem@gmail.com>2011-03-30 20:30:59 +0400
commitb6da353cd6d8de20427bc0218e33b4dd7add705a (patch)
treed24eb8ade2a1d7454e1442b5cc18d0bc90a76484 /LibGit2Sharp/RepositoryOptions.cs
parent88c98c0f1f01b65c40d86fa044c9fd7e258b4402 (diff)
add back in basic object lookup with new interop
New Lookup API includes: TryLookup TryLookup<T> Lookup Lookup<T> Looks like VS2010 can deal with optional params for .net 3.5 projects, so NET35 ifdefs not necessary yet.
Diffstat (limited to 'LibGit2Sharp/RepositoryOptions.cs')
-rw-r--r--LibGit2Sharp/RepositoryOptions.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/LibGit2Sharp/RepositoryOptions.cs b/LibGit2Sharp/RepositoryOptions.cs
index 26b64182..2629207c 100644
--- a/LibGit2Sharp/RepositoryOptions.cs
+++ b/LibGit2Sharp/RepositoryOptions.cs
@@ -27,7 +27,7 @@
namespace LibGit2Sharp
{
/// <summary>
- /// Optional parameters that can be defined when opening or creating a <see cref="Repository"/>
+ /// Optional parameters that can be defined when opening or creating a <see cref = "Repository" />
/// </summary>
public class RepositoryOptions
{
@@ -46,5 +46,7 @@ namespace LibGit2Sharp
/// <c>true</c> if this is a bare repository; otherwise, <c>false</c>.
/// </value>
public bool IsBareRepository { get; set; }
+
+ public bool ImmediatelyHydrateObject { get; set; }
}
} \ No newline at end of file