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:
authoryorah <yoram.harmelin@gmail.com>2013-01-08 19:03:59 +0400
committeryorah <yoram.harmelin@gmail.com>2013-12-13 17:26:39 +0400
commit5701f42e9aba2b40e09882c35de9ede09dbfd3d5 (patch)
tree0e7ad3d3313b0e06bad203c35c2ec92dbbb0fcbc /LibGit2Sharp/LibGit2Sharp.csproj
parent2eb72b5c53b4a15b8cb51ab9f9e79f99d1c13ee6 (diff)
Add tarring capabilities
This commit adds [tar-cs](http://code.google.com/p/tar-cs/) to LibGit2Sharp without any modifications to the original source code.
Diffstat (limited to 'LibGit2Sharp/LibGit2Sharp.csproj')
-rw-r--r--LibGit2Sharp/LibGit2Sharp.csproj9
1 files changed, 9 insertions, 0 deletions
diff --git a/LibGit2Sharp/LibGit2Sharp.csproj b/LibGit2Sharp/LibGit2Sharp.csproj
index b71344b3..f865814d 100644
--- a/LibGit2Sharp/LibGit2Sharp.csproj
+++ b/LibGit2Sharp/LibGit2Sharp.csproj
@@ -153,6 +153,7 @@
<Compile Include="ContentChanges.cs" />
<Compile Include="InvalidSpecificationException.cs" />
<Compile Include="Core\Compat\EnumExtensions.cs" />
+ <Compile Include="Core\DataWriter.cs" />
<Compile Include="Core\GitCheckoutOpts.cs" />
<Compile Include="Core\GitCloneOptions.cs" />
<Compile Include="Core\GitConfigEntry.cs" />
@@ -160,11 +161,19 @@
<Compile Include="Core\GitTransferProgress.cs" />
<Compile Include="Core\Handles\NullGitObjectSafeHandle.cs" />
<Compile Include="Core\Handles\NullIndexSafeHandle.cs" />
+ <Compile Include="Core\IArchiveDataWriter.cs" />
<Compile Include="Core\ILazy.cs" />
+ <Compile Include="Core\ITarHeader.cs" />
<Compile Include="Core\LazyGroup.cs" />
<Compile Include="Core\Handles\GitConfigEntryHandle.cs" />
+ <Compile Include="Core\LegacyTarWriter.cs" />
<Compile Include="Core\Proxy.cs" />
<Compile Include="Credentials.cs" />
+ <Compile Include="Core\TarException.cs" />
+ <Compile Include="Core\TarHeader.cs" />
+ <Compile Include="Core\TarReader.cs" />
+ <Compile Include="Core\TarWriter.cs" />
+ <Compile Include="Core\UsTarHeader.cs" />
<Compile Include="DiffTargets.cs" />
<Compile Include="FetchHead.cs" />
<Compile Include="Core\Handles\PushSafeHandle.cs" />