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:
authorEdward Thomson <ethomson@microsoft.com>2013-10-02 07:04:31 +0400
committerEdward Thomson <ethomson@microsoft.com>2013-12-04 02:36:58 +0400
commit974ad9980cc7e7fec53ebf9999c30637396f9843 (patch)
treefa09bc45c0e2764f395b48b9258f3904cad052fa /LibGit2Sharp/LibGit2Sharp.csproj
parentb51570e8b34e36902b409b8af164190559aae4ca (diff)
Introduce renames in status
Renames in status require more detailed data than simply paths, in order to collect old path, new path and similarity data. Use git_status_list to collect this data and use a new StatusEntry to store it.
Diffstat (limited to 'LibGit2Sharp/LibGit2Sharp.csproj')
-rw-r--r--LibGit2Sharp/LibGit2Sharp.csproj6
1 files changed, 6 insertions, 0 deletions
diff --git a/LibGit2Sharp/LibGit2Sharp.csproj b/LibGit2Sharp/LibGit2Sharp.csproj
index 3832ac55..e0a30a56 100644
--- a/LibGit2Sharp/LibGit2Sharp.csproj
+++ b/LibGit2Sharp/LibGit2Sharp.csproj
@@ -89,6 +89,12 @@
<Compile Include="ResetMode.cs" />
<Compile Include="NoteCollectionExtensions.cs" />
<Compile Include="RefSpecDirection.cs" />
+ <Compile Include="Core\GitStatusEntry.cs" />
+ <Compile Include="Core\GitStatusOptions.cs" />
+ <Compile Include="Core\Handles\StatusEntrySafeHandle.cs" />
+ <Compile Include="Core\Handles\StatusListSafeHandle.cs" />
+ <Compile Include="RenameDetails.cs" />
+ <Compile Include="StatusOptions.cs" />
<Compile Include="UnbornBranchException.cs" />
<Compile Include="LockedFileException.cs" />
<Compile Include="Core\GitRepositoryInitOptions.cs" />