~ubuntu-branches/ubuntu/oneiric/monodevelop/oneiric

« back to all changes in this revision

Viewing changes to contrib/NGit/NGit.csproj

  • Committer: Bazaar Package Importer
  • Author(s): Jo Shields
  • Date: 2011-06-27 17:03:13 UTC
  • mto: (1.8.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20110627170313-6cvz3s19x6e9hqe9
ImportĀ upstreamĀ versionĀ 2.5.92+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0" encoding="utf-8"?>
 
2
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
 
3
  <PropertyGroup>
 
4
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
 
5
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
 
6
    <ProductVersion>9.0.21022</ProductVersion>
 
7
    <SchemaVersion>2.0</SchemaVersion>
 
8
    <ProjectGuid>{E3BFF8B4-189C-496A-A817-7E8B31E22B91}</ProjectGuid>
 
9
    <OutputType>Library</OutputType>
 
10
    <RootNamespace>NGit</RootNamespace>
 
11
    <AssemblyName>NGit</AssemblyName>
 
12
    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
 
13
  </PropertyGroup>
 
14
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
 
15
    <DebugSymbols>true</DebugSymbols>
 
16
    <DebugType>full</DebugType>
 
17
    <Optimize>false</Optimize>
 
18
    <OutputPath>..\bin</OutputPath>
 
19
    <DefineConstants>DEBUG</DefineConstants>
 
20
    <ErrorReport>prompt</ErrorReport>
 
21
    <WarningLevel>4</WarningLevel>
 
22
    <ConsolePause>false</ConsolePause>
 
23
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
24
  </PropertyGroup>
 
25
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
 
26
    <DebugType>none</DebugType>
 
27
    <Optimize>false</Optimize>
 
28
    <OutputPath>..\bin</OutputPath>
 
29
    <ErrorReport>prompt</ErrorReport>
 
30
    <WarningLevel>4</WarningLevel>
 
31
    <ConsolePause>false</ConsolePause>
 
32
    <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 
33
  </PropertyGroup>
 
34
  <ItemGroup>
 
35
    <Reference Include="System" />
 
36
    <Reference Include="System.Core" />
 
37
    <Reference Include="ICSharpCode.SharpZipLib" />
 
38
  </ItemGroup>
 
39
  <ItemGroup>
 
40
    <Compile Include="AssemblyInfo.cs" />
 
41
    <Compile Include="NGit\AbbreviatedObjectId.cs" />
 
42
    <Compile Include="NGit\AnyObjectId.cs" />
 
43
    <Compile Include="NGit\AsyncObjectLoaderQueue.cs" />
 
44
    <Compile Include="NGit\AsyncObjectSizeQueue.cs" />
 
45
    <Compile Include="NGit\AsyncOperation.cs" />
 
46
    <Compile Include="NGit\BaseRepositoryBuilder.cs" />
 
47
    <Compile Include="NGit\BlobBasedConfig.cs" />
 
48
    <Compile Include="NGit\CommitBuilder.cs" />
 
49
    <Compile Include="NGit\Config.cs" />
 
50
    <Compile Include="NGit\ConfigConstants.cs" />
 
51
    <Compile Include="NGit\Constants.cs" />
 
52
    <Compile Include="NGit\CoreConfig.cs" />
 
53
    <Compile Include="NGit\FileMode.cs" />
 
54
    <Compile Include="NGit\FileTreeEntry.cs" />
 
55
    <Compile Include="NGit\GitIndex.cs" />
 
56
    <Compile Include="NGit\GitlinkTreeEntry.cs" />
 
57
    <Compile Include="NGit\IndexDiff.cs" />
 
58
    <Compile Include="NGit\InflaterCache.cs" />
 
59
    <Compile Include="NGit\JGitText.cs" />
 
60
    <Compile Include="NGit\MutableObjectId.cs" />
 
61
    <Compile Include="NGit\NullProgressMonitor.cs" />
 
62
    <Compile Include="NGit\ObjectChecker.cs" />
 
63
    <Compile Include="NGit\ObjectDatabase.cs" />
 
64
    <Compile Include="NGit\ObjectId.cs" />
 
65
    <Compile Include="NGit\ObjectIdRef.cs" />
 
66
    <Compile Include="NGit\ObjectIdSubclassMap.cs" />
 
67
    <Compile Include="NGit\ObjectInserter.cs" />
 
68
    <Compile Include="NGit\ObjectLoader.cs" />
 
69
    <Compile Include="NGit\ObjectReader.cs" />
 
70
    <Compile Include="NGit\ObjectStream.cs" />
 
71
    <Compile Include="NGit\PersonIdent.cs" />
 
72
    <Compile Include="NGit\ProgressMonitor.cs" />
 
73
    <Compile Include="NGit\Ref.cs" />
 
74
    <Compile Include="NGit\RefComparator.cs" />
 
75
    <Compile Include="NGit\RefDatabase.cs" />
 
76
    <Compile Include="NGit\RefRename.cs" />
 
77
    <Compile Include="NGit\RefUpdate.cs" />
 
78
    <Compile Include="NGit\RefWriter.cs" />
 
79
    <Compile Include="NGit\Repository.cs" />
 
80
    <Compile Include="NGit\RepositoryBuilder.cs" />
 
81
    <Compile Include="NGit\RepositoryCache.cs" />
 
82
    <Compile Include="NGit\RepositoryState.cs" />
 
83
    <Compile Include="NGit\StoredConfig.cs" />
 
84
    <Compile Include="NGit\SymbolicRef.cs" />
 
85
    <Compile Include="NGit\SymlinkTreeEntry.cs" />
 
86
    <Compile Include="NGit\TagBuilder.cs" />
 
87
    <Compile Include="NGit\TextProgressMonitor.cs" />
 
88
    <Compile Include="NGit\ThreadSafeProgressMonitor.cs" />
 
89
    <Compile Include="NGit\TransferConfig.cs" />
 
90
    <Compile Include="NGit\Tree.cs" />
 
91
    <Compile Include="NGit\TreeEntry.cs" />
 
92
    <Compile Include="NGit\UserConfig.cs" />
 
93
    <Compile Include="NGit.Api\AddCommand.cs" />
 
94
    <Compile Include="NGit.Api\CommitCommand.cs" />
 
95
    <Compile Include="NGit.Api\Git.cs" />
 
96
    <Compile Include="NGit.Api\GitCommand.cs" />
 
97
    <Compile Include="NGit.Api\LogCommand.cs" />
 
98
    <Compile Include="NGit.Api\MergeCommand.cs" />
 
99
    <Compile Include="NGit.Api\TagCommand.cs" />
 
100
    <Compile Include="NGit.Api.Errors\CheckoutConflictException.cs" />
 
101
    <Compile Include="NGit.Api.Errors\ConcurrentRefUpdateException.cs" />
 
102
    <Compile Include="NGit.Api.Errors\GitAPIException.cs" />
 
103
    <Compile Include="NGit.Api.Errors\InvalidMergeHeadsException.cs" />
 
104
    <Compile Include="NGit.Api.Errors\InvalidTagNameException.cs" />
 
105
    <Compile Include="NGit.Api.Errors\JGitInternalException.cs" />
 
106
    <Compile Include="NGit.Api.Errors\NoFilepatternException.cs" />
 
107
    <Compile Include="NGit.Api.Errors\NoHeadException.cs" />
 
108
    <Compile Include="NGit.Api.Errors\NoMessageException.cs" />
 
109
    <Compile Include="NGit.Api.Errors\WrongRepositoryStateException.cs" />
 
110
    <Compile Include="NGit.Diff\DiffConfig.cs" />
 
111
    <Compile Include="NGit.Diff\DiffEntry.cs" />
 
112
    <Compile Include="NGit.Diff\DiffFormatter.cs" />
 
113
    <Compile Include="NGit.Diff\Edit.cs" />
 
114
    <Compile Include="NGit.Diff\EditList.cs" />
 
115
    <Compile Include="NGit.Diff\MyersDiff.cs" />
 
116
    <Compile Include="NGit.Diff\RawText.cs" />
 
117
    <Compile Include="NGit.Diff\RenameDetector.cs" />
 
118
    <Compile Include="NGit.Diff\Sequence.cs" />
 
119
    <Compile Include="NGit.Diff\SimilarityIndex.cs" />
 
120
    <Compile Include="NGit.Diff\SimilarityRenameDetector.cs" />
 
121
    <Compile Include="NGit.Dircache\BaseDirCacheEditor.cs" />
 
122
    <Compile Include="NGit.Dircache\DirCache.cs" />
 
123
    <Compile Include="NGit.Dircache\DirCacheBuildIterator.cs" />
 
124
    <Compile Include="NGit.Dircache\DirCacheBuilder.cs" />
 
125
    <Compile Include="NGit.Dircache\DirCacheCheckout.cs" />
 
126
    <Compile Include="NGit.Dircache\DirCacheEditor.cs" />
 
127
    <Compile Include="NGit.Dircache\DirCacheEntry.cs" />
 
128
    <Compile Include="NGit.Dircache\DirCacheIterator.cs" />
 
129
    <Compile Include="NGit.Dircache\DirCacheTree.cs" />
 
130
    <Compile Include="NGit.Errors\AmbiguousObjectException.cs" />
 
131
    <Compile Include="NGit.Errors\CheckoutConflictException.cs" />
 
132
    <Compile Include="NGit.Errors\CompoundException.cs" />
 
133
    <Compile Include="NGit.Errors\ConfigInvalidException.cs" />
 
134
    <Compile Include="NGit.Errors\CorruptObjectException.cs" />
 
135
    <Compile Include="NGit.Errors\EntryExistsException.cs" />
 
136
    <Compile Include="NGit.Errors\GitlinksNotSupportedException.cs" />
 
137
    <Compile Include="NGit.Errors\IncorrectObjectTypeException.cs" />
 
138
    <Compile Include="NGit.Errors\IndexWriteException.cs" />
 
139
    <Compile Include="NGit.Errors\InvalidObjectIdException.cs" />
 
140
    <Compile Include="NGit.Errors\InvalidPatternException.cs" />
 
141
    <Compile Include="NGit.Errors\LargeObjectException.cs" />
 
142
    <Compile Include="NGit.Errors\MissingObjectException.cs" />
 
143
    <Compile Include="NGit.Errors\NoClosingBracketException.cs" />
 
144
    <Compile Include="NGit.Errors\NoWorkTreeException.cs" />
 
145
    <Compile Include="NGit.Errors\ObjectWritingException.cs" />
 
146
    <Compile Include="NGit.Errors\PackInvalidException.cs" />
 
147
    <Compile Include="NGit.Errors\PackMismatchException.cs" />
 
148
    <Compile Include="NGit.Errors\RevWalkException.cs" />
 
149
    <Compile Include="NGit.Errors\RevisionSyntaxException.cs" />
 
150
    <Compile Include="NGit.Errors\StopWalkException.cs" />
 
151
    <Compile Include="NGit.Errors\StoredObjectRepresentationNotAvailableException.cs" />
 
152
    <Compile Include="NGit.Errors\SymlinksNotSupportedException.cs" />
 
153
    <Compile Include="NGit.Errors\TranslationBundleException.cs" />
 
154
    <Compile Include="NGit.Errors\TranslationBundleLoadingException.cs" />
 
155
    <Compile Include="NGit.Errors\TranslationStringMissingException.cs" />
 
156
    <Compile Include="NGit.Errors\UnmergedPathException.cs" />
 
157
    <Compile Include="NGit.Events\ConfigChangedEvent.cs" />
 
158
    <Compile Include="NGit.Events\ConfigChangedListener.cs" />
 
159
    <Compile Include="NGit.Events\IndexChangedEvent.cs" />
 
160
    <Compile Include="NGit.Events\IndexChangedListener.cs" />
 
161
    <Compile Include="NGit.Events\ListenerHandle.cs" />
 
162
    <Compile Include="NGit.Events\ListenerList.cs" />
 
163
    <Compile Include="NGit.Events\RefsChangedEvent.cs" />
 
164
    <Compile Include="NGit.Events\RefsChangedListener.cs" />
 
165
    <Compile Include="NGit.Events\RepositoryEvent.cs" />
 
166
    <Compile Include="NGit.Events\RepositoryListener.cs" />
 
167
    <Compile Include="NGit.Fnmatch\AbstractHead.cs" />
 
168
    <Compile Include="NGit.Fnmatch\CharacterHead.cs" />
 
169
    <Compile Include="NGit.Fnmatch\FileNameMatcher.cs" />
 
170
    <Compile Include="NGit.Fnmatch\GroupHead.cs" />
 
171
    <Compile Include="NGit.Fnmatch\Head.cs" />
 
172
    <Compile Include="NGit.Fnmatch\LastHead.cs" />
 
173
    <Compile Include="NGit.Fnmatch\RestrictedWildCardHead.cs" />
 
174
    <Compile Include="NGit.Fnmatch\WildCardHead.cs" />
 
175
    <Compile Include="NGit.Ignore\IgnoreNode.cs" />
 
176
    <Compile Include="NGit.Ignore\IgnoreRule.cs" />
 
177
    <Compile Include="NGit.Merge\MergeAlgorithm.cs" />
 
178
    <Compile Include="NGit.Merge\MergeChunk.cs" />
 
179
    <Compile Include="NGit.Merge\MergeFormatter.cs" />
 
180
    <Compile Include="NGit.Merge\MergeResult.cs" />
 
181
    <Compile Include="NGit.Merge\MergeStrategy.cs" />
 
182
    <Compile Include="NGit.Merge\Merger.cs" />
 
183
    <Compile Include="NGit.Merge\ResolveMerger.cs" />
 
184
    <Compile Include="NGit.Merge\StrategyOneSided.cs" />
 
185
    <Compile Include="NGit.Merge\StrategyResolve.cs" />
 
186
    <Compile Include="NGit.Merge\StrategySimpleTwoWayInCore.cs" />
 
187
    <Compile Include="NGit.Merge\ThreeWayMergeStrategy.cs" />
 
188
    <Compile Include="NGit.Merge\ThreeWayMerger.cs" />
 
189
    <Compile Include="NGit.Nls\GlobalBundleCache.cs" />
 
190
    <Compile Include="NGit.Nls\NLS.cs" />
 
191
    <Compile Include="NGit.Nls\TranslationBundle.cs" />
 
192
    <Compile Include="NGit.Patch\BinaryHunk.cs" />
 
193
    <Compile Include="NGit.Patch\CombinedFileHeader.cs" />
 
194
    <Compile Include="NGit.Patch\CombinedHunkHeader.cs" />
 
195
    <Compile Include="NGit.Patch\FileHeader.cs" />
 
196
    <Compile Include="NGit.Patch\FormatError.cs" />
 
197
    <Compile Include="NGit.Patch\HunkHeader.cs" />
 
198
    <Compile Include="NGit.Patch\Patch.cs" />
 
199
    <Compile Include="NGit.Revplot\AbstractPlotRenderer.cs" />
 
200
    <Compile Include="NGit.Revplot\PlotCommit.cs" />
 
201
    <Compile Include="NGit.Revplot\PlotCommitList.cs" />
 
202
    <Compile Include="NGit.Revplot\PlotLane.cs" />
 
203
    <Compile Include="NGit.Revplot\PlotWalk.cs" />
 
204
    <Compile Include="NGit.Revwalk\AbstractRevQueue.cs" />
 
205
    <Compile Include="NGit.Revwalk\AsyncRevObjectQueue.cs" />
 
206
    <Compile Include="NGit.Revwalk\BlockObjQueue.cs" />
 
207
    <Compile Include="NGit.Revwalk\BlockRevQueue.cs" />
 
208
    <Compile Include="NGit.Revwalk\BoundaryGenerator.cs" />
 
209
    <Compile Include="NGit.Revwalk\DateRevQueue.cs" />
 
210
    <Compile Include="NGit.Revwalk\DelayRevQueue.cs" />
 
211
    <Compile Include="NGit.Revwalk\EndGenerator.cs" />
 
212
    <Compile Include="NGit.Revwalk\FIFORevQueue.cs" />
 
213
    <Compile Include="NGit.Revwalk\FixUninterestingGenerator.cs" />
 
214
    <Compile Include="NGit.Revwalk\FollowFilter.cs" />
 
215
    <Compile Include="NGit.Revwalk\FooterKey.cs" />
 
216
    <Compile Include="NGit.Revwalk\FooterLine.cs" />
 
217
    <Compile Include="NGit.Revwalk\Generator.cs" />
 
218
    <Compile Include="NGit.Revwalk\LIFORevQueue.cs" />
 
219
    <Compile Include="NGit.Revwalk\MergeBaseGenerator.cs" />
 
220
    <Compile Include="NGit.Revwalk\ObjectWalk.cs" />
 
221
    <Compile Include="NGit.Revwalk\PendingGenerator.cs" />
 
222
    <Compile Include="NGit.Revwalk\RevBlob.cs" />
 
223
    <Compile Include="NGit.Revwalk\RevCommit.cs" />
 
224
    <Compile Include="NGit.Revwalk\RevCommitList.cs" />
 
225
    <Compile Include="NGit.Revwalk\RevFlag.cs" />
 
226
    <Compile Include="NGit.Revwalk\RevFlagSet.cs" />
 
227
    <Compile Include="NGit.Revwalk\RevObject.cs" />
 
228
    <Compile Include="NGit.Revwalk\RevObjectList.cs" />
 
229
    <Compile Include="NGit.Revwalk\RevSort.cs" />
 
230
    <Compile Include="NGit.Revwalk\RevTag.cs" />
 
231
    <Compile Include="NGit.Revwalk\RevTree.cs" />
 
232
    <Compile Include="NGit.Revwalk\RevWalk.cs" />
 
233
    <Compile Include="NGit.Revwalk\RewriteGenerator.cs" />
 
234
    <Compile Include="NGit.Revwalk\RewriteTreeFilter.cs" />
 
235
    <Compile Include="NGit.Revwalk\StartGenerator.cs" />
 
236
    <Compile Include="NGit.Revwalk\TopoSortGenerator.cs" />
 
237
    <Compile Include="NGit.Revwalk.Filter\AndRevFilter.cs" />
 
238
    <Compile Include="NGit.Revwalk.Filter\AuthorRevFilter.cs" />
 
239
    <Compile Include="NGit.Revwalk.Filter\CommitTimeRevFilter.cs" />
 
240
    <Compile Include="NGit.Revwalk.Filter\CommitterRevFilter.cs" />
 
241
    <Compile Include="NGit.Revwalk.Filter\MessageRevFilter.cs" />
 
242
    <Compile Include="NGit.Revwalk.Filter\NotRevFilter.cs" />
 
243
    <Compile Include="NGit.Revwalk.Filter\OrRevFilter.cs" />
 
244
    <Compile Include="NGit.Revwalk.Filter\PatternMatchRevFilter.cs" />
 
245
    <Compile Include="NGit.Revwalk.Filter\RevFilter.cs" />
 
246
    <Compile Include="NGit.Revwalk.Filter\RevFlagFilter.cs" />
 
247
    <Compile Include="NGit.Revwalk.Filter\SubStringRevFilter.cs" />
 
248
    <Compile Include="NGit.Storage.File\ByteArrayWindow.cs" />
 
249
    <Compile Include="NGit.Storage.File\ByteBufferWindow.cs" />
 
250
    <Compile Include="NGit.Storage.File\ByteWindow.cs" />
 
251
    <Compile Include="NGit.Storage.File\CachedObjectDirectory.cs" />
 
252
    <Compile Include="NGit.Storage.File\FileBasedConfig.cs" />
 
253
    <Compile Include="NGit.Storage.File\FileObjectDatabase.cs" />
 
254
    <Compile Include="NGit.Storage.File\FileRepository.cs" />
 
255
    <Compile Include="NGit.Storage.File\FileRepositoryBuilder.cs" />
 
256
    <Compile Include="NGit.Storage.File\LargePackedDeltaObject.cs" />
 
257
    <Compile Include="NGit.Storage.File\LargePackedWholeObject.cs" />
 
258
    <Compile Include="NGit.Storage.File\LocalObjectRepresentation.cs" />
 
259
    <Compile Include="NGit.Storage.File\LocalObjectToPack.cs" />
 
260
    <Compile Include="NGit.Storage.File\LockFile.cs" />
 
261
    <Compile Include="NGit.Storage.File\ObjectDirectory.cs" />
 
262
    <Compile Include="NGit.Storage.File\ObjectDirectoryInserter.cs" />
 
263
    <Compile Include="NGit.Storage.File\PackFile.cs" />
 
264
    <Compile Include="NGit.Storage.File\PackIndex.cs" />
 
265
    <Compile Include="NGit.Storage.File\PackIndexV1.cs" />
 
266
    <Compile Include="NGit.Storage.File\PackIndexV2.cs" />
 
267
    <Compile Include="NGit.Storage.File\PackIndexWriter.cs" />
 
268
    <Compile Include="NGit.Storage.File\PackIndexWriterV1.cs" />
 
269
    <Compile Include="NGit.Storage.File\PackIndexWriterV2.cs" />
 
270
    <Compile Include="NGit.Storage.File\PackInputStream.cs" />
 
271
    <Compile Include="NGit.Storage.File\PackLock.cs" />
 
272
    <Compile Include="NGit.Storage.File\PackReverseIndex.cs" />
 
273
    <Compile Include="NGit.Storage.File\RefDirectory.cs" />
 
274
    <Compile Include="NGit.Storage.File\RefDirectoryRename.cs" />
 
275
    <Compile Include="NGit.Storage.File\RefDirectoryUpdate.cs" />
 
276
    <Compile Include="NGit.Storage.File\ReflogReader.cs" />
 
277
    <Compile Include="NGit.Storage.File\UnpackedObject.cs" />
 
278
    <Compile Include="NGit.Storage.File\UnpackedObjectCache.cs" />
 
279
    <Compile Include="NGit.Storage.File\WindowCache.cs" />
 
280
    <Compile Include="NGit.Storage.File\WindowCacheConfig.cs" />
 
281
    <Compile Include="NGit.Storage.File\WindowCursor.cs" />
 
282
    <Compile Include="NGit.Storage.Pack\BinaryDelta.cs" />
 
283
    <Compile Include="NGit.Storage.Pack\DeltaCache.cs" />
 
284
    <Compile Include="NGit.Storage.Pack\DeltaEncoder.cs" />
 
285
    <Compile Include="NGit.Storage.Pack\DeltaIndex.cs" />
 
286
    <Compile Include="NGit.Storage.Pack\DeltaIndexScanner.cs" />
 
287
    <Compile Include="NGit.Storage.Pack\DeltaStream.cs" />
 
288
    <Compile Include="NGit.Storage.Pack\DeltaTask.cs" />
 
289
    <Compile Include="NGit.Storage.Pack\DeltaWindow.cs" />
 
290
    <Compile Include="NGit.Storage.Pack\DeltaWindowEntry.cs" />
 
291
    <Compile Include="NGit.Storage.Pack\ObjectReuseAsIs.cs" />
 
292
    <Compile Include="NGit.Storage.Pack\ObjectToPack.cs" />
 
293
    <Compile Include="NGit.Storage.Pack\PackConfig.cs" />
 
294
    <Compile Include="NGit.Storage.Pack\PackOutputStream.cs" />
 
295
    <Compile Include="NGit.Storage.Pack\PackWriter.cs" />
 
296
    <Compile Include="NGit.Storage.Pack\StoredObjectRepresentation.cs" />
 
297
    <Compile Include="NGit.Storage.Pack\ThreadSafeDeltaCache.cs" />
 
298
    <Compile Include="NGit.Treewalk\AbstractTreeIterator.cs" />
 
299
    <Compile Include="NGit.Treewalk\CanonicalTreeParser.cs" />
 
300
    <Compile Include="NGit.Treewalk\EmptyTreeIterator.cs" />
 
301
    <Compile Include="NGit.Treewalk\FileTreeIterator.cs" />
 
302
    <Compile Include="NGit.Treewalk\NameConflictTreeWalk.cs" />
 
303
    <Compile Include="NGit.Treewalk\TreeWalk.cs" />
 
304
    <Compile Include="NGit.Treewalk\WorkingTreeIterator.cs" />
 
305
    <Compile Include="NGit.Treewalk\WorkingTreeOptions.cs" />
 
306
    <Compile Include="NGit.Treewalk.Filter\AndTreeFilter.cs" />
 
307
    <Compile Include="NGit.Treewalk.Filter\NotIgnoredFilter.cs" />
 
308
    <Compile Include="NGit.Treewalk.Filter\NotTreeFilter.cs" />
 
309
    <Compile Include="NGit.Treewalk.Filter\OrTreeFilter.cs" />
 
310
    <Compile Include="NGit.Treewalk.Filter\PathFilter.cs" />
 
311
    <Compile Include="NGit.Treewalk.Filter\PathFilterGroup.cs" />
 
312
    <Compile Include="NGit.Treewalk.Filter\PathSuffixFilter.cs" />
 
313
    <Compile Include="NGit.Treewalk.Filter\SkipWorkTreeFilter.cs" />
 
314
    <Compile Include="NGit.Treewalk.Filter\TreeFilter.cs" />
 
315
    <Compile Include="NGit.Util\Base64.cs" />
 
316
    <Compile Include="NGit.Util\CachedAuthenticator.cs" />
 
317
    <Compile Include="NGit.Util\ChangeIdUtil.cs" />
 
318
    <Compile Include="NGit.Util\FS.cs" />
 
319
    <Compile Include="NGit.Util\FS_POSIX_Java5.cs" />
 
320
    <Compile Include="NGit.Util\FS_POSIX_Java6.cs" />
 
321
    <Compile Include="NGit.Util\FS_Win32.cs" />
 
322
    <Compile Include="NGit.Util\FS_Win32_Cygwin.cs" />
 
323
    <Compile Include="NGit.Util\IntList.cs" />
 
324
    <Compile Include="NGit.Util\LongList.cs" />
 
325
    <Compile Include="NGit.Util\MutableInteger.cs" />
 
326
    <Compile Include="NGit.Util\NB.cs" />
 
327
    <Compile Include="NGit.Util\QuotedString.cs" />
 
328
    <Compile Include="NGit.Util\RawCharSequence.cs" />
 
329
    <Compile Include="NGit.Util\RawCharUtil.cs" />
 
330
    <Compile Include="NGit.Util\RawParseUtils.cs" />
 
331
    <Compile Include="NGit.Util\RawSubStringPattern.cs" />
 
332
    <Compile Include="NGit.Util\RefList.cs" />
 
333
    <Compile Include="NGit.Util\RefMap.cs" />
 
334
    <Compile Include="NGit.Util\StringUtils.cs" />
 
335
    <Compile Include="NGit.Util\SystemReader.cs" />
 
336
    <Compile Include="NGit.Util\TemporaryBuffer.cs" />
 
337
    <Compile Include="NGit.Util.IO\DisabledOutputStream.cs" />
 
338
    <Compile Include="NGit.Util.IO\EolCanonicalizingInputStream.cs" />
 
339
    <Compile Include="NGit.Util.IO\InterruptTimer.cs" />
 
340
    <Compile Include="NGit.Util.IO\MessageWriter.cs" />
 
341
    <Compile Include="NGit.Util.IO\StreamCopyThread.cs" />
 
342
    <Compile Include="NGit.Util.IO\TeeInputStream.cs" />
 
343
    <Compile Include="NGit.Util.IO\TimeoutInputStream.cs" />
 
344
    <Compile Include="NGit.Util.IO\TimeoutOutputStream.cs" />
 
345
    <Compile Include="NGit.Util.IO\UnionInputStream.cs" />
 
346
    <Compile Include="NGit.Transport\PackedObjectInfo.cs" />
 
347
    <Compile Include="NGit.Errors\RepositoryNotFoundException.cs" />
 
348
    <Compile Include="NGit.Errors\TransportException.cs" />
 
349
    <Compile Include="NGit.Transport\URIish.cs" />
 
350
    <Compile Include="NGit.Api\MergeCommandResult.cs" />
 
351
    <Compile Include="NGit.Transport\LongMap.cs" />
 
352
    <Compile Include="NGit.Util\IOUtil.cs" />
 
353
    <Compile Include="NGit.Transport\RemoteConfig.cs" />
 
354
    <Compile Include="NGit.Transport\RefSpec.cs" />
 
355
    <Compile Include="NGit.Transport\TagOpt.cs" />
 
356
    <Compile Include="NGit.Transport\BaseConnection.cs" />
 
357
    <Compile Include="NGit.Transport\Connection.cs" />
 
358
    <Compile Include="NGit.Transport\FetchConnection.cs" />
 
359
    <Compile Include="NGit.Transport\BaseFetchConnection.cs" />
 
360
    <Compile Include="NGit.Transport\PacketLineIn.cs" />
 
361
    <Compile Include="NGit.Transport\SideBandInputStream.cs" />
 
362
    <Compile Include="NGit.Transport\SideBandOutputStream.cs" />
 
363
    <Compile Include="NGit.Transport\PacketLineOut.cs" />
 
364
    <Compile Include="NGit.Transport\Transport.cs" />
 
365
    <Compile Include="NGit.Transport\RemoteRefUpdate.cs" />
 
366
    <Compile Include="NGit.Transport\FetchResult.cs" />
 
367
    <Compile Include="NGit.Transport\OperationResult.cs" />
 
368
    <Compile Include="NGit.Transport\PushResult.cs" />
 
369
    <Compile Include="NGit.Transport\PushConnection.cs" />
 
370
    <Compile Include="NGit.Transport\TrackingRefUpdate.cs" />
 
371
    <Compile Include="NGit.Transport\FetchHeadRecord.cs" />
 
372
    <Compile Include="NGit.Transport\FetchProcess.cs" />
 
373
    <Compile Include="NGit.Transport\PushProcess.cs" />
 
374
    <Compile Include="NGit.Transport\BasePackConnection.cs" />
 
375
    <Compile Include="NGit.Transport\PackTransport.cs" />
 
376
    <Compile Include="NGit.Errors\RemoteRepositoryException.cs" />
 
377
    <Compile Include="NGit.Errors\NoRemoteRepositoryException.cs" />
 
378
    <Compile Include="NGit.Errors\PackProtocolException.cs" />
 
379
    <Compile Include="NGit.Errors\MissingBundlePrerequisiteException.cs" />
 
380
    <Compile Include="NGit.Transport\BasePackFetchConnection.cs" />
 
381
    <Compile Include="NGit.Transport\BasePackPushConnection.cs" />
 
382
    <Compile Include="NGit.Transport\BundleFetchConnection.cs" />
 
383
    <Compile Include="NGit.Transport\TransportBundle.cs" />
 
384
    <Compile Include="NGit.Transport\BundleWriter.cs" />
 
385
    <Compile Include="NGit.Transport\HttpTransport.cs" />
 
386
    <Compile Include="NGit.Transport\PostReceiveHook.cs" />
 
387
    <Compile Include="NGit.Transport\PreReceiveHook.cs" />
 
388
    <Compile Include="NGit.Transport\ReceivePack.cs" />
 
389
    <Compile Include="NGit.Transport\ReceiveCommand.cs" />
 
390
    <Compile Include="NGit.Transport\RefFilter.cs" />
 
391
    <Compile Include="NGit.Transport\RefAdvertiser.cs" />
 
392
    <Compile Include="NGit.Transport\SideBandProgressMonitor.cs" />
 
393
    <Compile Include="NGit.Transport\TcpTransport.cs" />
 
394
    <Compile Include="NGit.Transport\TransportBundleFile.cs" />
 
395
    <Compile Include="NGit.Transport\TransportBundleStream.cs" />
 
396
    <Compile Include="NGit.Transport\UploadPack.cs" />
 
397
    <Compile Include="NGit.Transport\WalkFetchConnection.cs" />
 
398
    <Compile Include="NGit.Transport\WalkRemoteObjectDatabase.cs" />
 
399
    <Compile Include="NGit.Transport\WalkTransport.cs" />
 
400
    <Compile Include="NGit.Transport\WalkPushConnection.cs" />
 
401
    <Compile Include="NGit.Transport\Daemon.cs" />
 
402
    <Compile Include="NGit.Transport\DaemonClient.cs" />
 
403
    <Compile Include="NGit.Transport\DaemonService.cs" />
 
404
    <Compile Include="NGit.Transport\OpenSshConfig.cs" />
 
405
    <Compile Include="NGit.Transport\TransportGitAnon.cs" />
 
406
    <Compile Include="NGit.Transport\TransportHttp.cs" />
 
407
    <Compile Include="NGit.Util\HttpSupport.cs" />
 
408
    <Compile Include="NGit.Transport\TransportLocal.cs" />
 
409
    <Compile Include="NGit.Transport\DefaultSshSessionFactory.cs" />
 
410
    <Compile Include="NGit.Transport\SshSessionFactory.cs" />
 
411
    <Compile Include="NGit.Transport\SshTransport.cs" />
 
412
    <Compile Include="NGit.Transport\TransportGitSsh.cs" />
 
413
    <Compile Include="NGit.Transport\TransportSftp.cs" />
 
414
    <Compile Include="NGit.Diff\ContentSource.cs" />
 
415
    <Compile Include="NGit.Diff\DiffAlgorithm.cs" />
 
416
    <Compile Include="NGit.Diff\HashedSequence.cs" />
 
417
    <Compile Include="NGit.Diff\HashedSequenceComparator.cs" />
 
418
    <Compile Include="NGit.Diff\HashedSequencePair.cs" />
 
419
    <Compile Include="NGit.Diff\HistogramDiff.cs" />
 
420
    <Compile Include="NGit.Diff\HistogramDiffIndex.cs" />
 
421
    <Compile Include="NGit.Diff\RawTextComparator.cs" />
 
422
    <Compile Include="NGit.Diff\SequenceComparator.cs" />
 
423
    <Compile Include="NGit.Diff\Subsequence.cs" />
 
424
    <Compile Include="NGit.Diff\SubsequenceComparator.cs" />
 
425
    <Compile Include="NGit.Api\FetchCommand.cs" />
 
426
    <Compile Include="NGit.Errors\UnpackException.cs" />
 
427
    <Compile Include="NGit.Storage.File\DeltaBaseCache.cs" />
 
428
    <Compile Include="NGit.Api.Errors\InvalidRemoteException.cs" />
 
429
    <Compile Include="NGit.Api\PushCommand.cs" />
 
430
    <Compile Include="NGit.Api\PullCommand.cs" />
 
431
    <Compile Include="NGit.Api\PullResult.cs" />
 
432
    <Compile Include="NGit.Api\CreateBranchCommand.cs" />
 
433
    <Compile Include="NGit.Api\DeleteBranchCommand.cs" />
 
434
    <Compile Include="NGit.Api\ListBranchCommand.cs" />
 
435
    <Compile Include="NGit.Api\RenameBranchCommand.cs" />
 
436
    <Compile Include="NGit.Transport\HttpAuthMethod.cs" />
 
437
    <Compile Include="NGit.Api.Errors\DetachedHeadException.cs" />
 
438
    <Compile Include="NGit.Api.Errors\CanceledException.cs" />
 
439
    <Compile Include="NGit.Api.Errors\CannotDeleteCurrentBranchException.cs" />
 
440
    <Compile Include="NGit.Api.Errors\InvalidConfigurationException.cs" />
 
441
    <Compile Include="NGit.Api.Errors\InvalidRefNameException.cs" />
 
442
    <Compile Include="NGit.Api.Errors\NotMergedException.cs" />
 
443
    <Compile Include="NGit.Api.Errors\RefAlreadyExistsException.cs" />
 
444
    <Compile Include="NGit.Api.Errors\RefNotFoundException.cs" />
 
445
    <Compile Include="NGit.Diff\LowLevelDiffAlgorithm.cs" />
 
446
    <Compile Include="NGit.Api\CherryPickCommand.cs" />
 
447
    <Compile Include="NGit.Api.Errors\MultipleParentsNotAllowedException.cs" />
 
448
    <Compile Include="NGit\TreeFormatter.cs" />
 
449
    <Compile Include="NGit.Merge\MergeMessageFormatter.cs" />
 
450
    <Compile Include="NGit.Transport\CredentialItem.cs" />
 
451
    <Compile Include="NGit.Transport\CredentialsProvider.cs" />
 
452
    <Compile Include="NGit.Transport\CredentialsProviderUserInfo.cs" />
 
453
    <Compile Include="NGit.Transport\UsernamePasswordCredentialsProvider.cs" />
 
454
    <Compile Include="NGit.Errors\UnsupportedCredentialItem.cs" />
 
455
    <Compile Include="NGit.Storage.File\WriteConfig.cs" />
 
456
    <Compile Include="NGit.Notes\FanoutBucket.cs" />
 
457
    <Compile Include="NGit.Notes\InMemoryNoteBucket.cs" />
 
458
    <Compile Include="NGit.Notes\LeafBucket.cs" />
 
459
    <Compile Include="NGit.Notes\NonNoteEntry.cs" />
 
460
    <Compile Include="NGit.Notes\Note.cs" />
 
461
    <Compile Include="NGit.Notes\NoteBucket.cs" />
 
462
    <Compile Include="NGit.Notes\NoteMap.cs" />
 
463
    <Compile Include="NGit.Notes\NoteParser.cs" />
 
464
    <Compile Include="NGit.Api\RebaseCommand.cs" />
 
465
    <Compile Include="NGit.Api\RebaseResult.cs" />
 
466
    <Compile Include="NGit.Api\RmCommand.cs" />
 
467
    <Compile Include="NGit.Api\CheckoutCommand.cs" />
 
468
    <Compile Include="NGit.Api\InitCommand.cs" />
 
469
    <Compile Include="NGit.Util\FileUtils.cs" />
 
470
    <Compile Include="NGit.Treewalk.Filter\IndexDiffFilter.cs" />
 
471
    <Compile Include="NGit.Api.Errors\UnmergedPathsException.cs" />
 
472
    <Compile Include="NGit.Storage.File\FileSnapshot.cs" />
 
473
    <Compile Include="NGit.Api\CheckoutResult.cs" />
 
474
    <Compile Include="NGit.Util\FS_POSIX.cs" />
 
475
    <Compile Include="NGit.Api\RevertCommand.cs" />
 
476
    <Compile Include="NGit.Notes\DefaultNoteMerger.cs" />
 
477
    <Compile Include="NGit.Notes\NoteMapMerger.cs" />
 
478
    <Compile Include="NGit.Notes\NoteMerger.cs" />
 
479
    <Compile Include="NGit.Notes\NotesMergeConflictException.cs" />
 
480
    <Compile Include="NGit.Transport\TransferConfig.cs" />
 
481
    <Compile Include="NGit.Transport\PackParser.cs" />
 
482
    <Compile Include="NGit.Storage.File\ObjectDirectoryPackParser.cs" />
 
483
    <Compile Include="NGit.Revwalk\ObjectListIterator.cs" />
 
484
    <Compile Include="NGit.Api\CloneCommand.cs" />
 
485
    <Compile Include="NGit.Storage.Pack\BaseSearch.cs" />
 
486
    <Compile Include="NGit.Storage.Pack\IntSet.cs" />
 
487
    <Compile Include="NGit.Storage.File\LocalCachedPack.cs" />
 
488
    <Compile Include="NGit.Storage.Pack\CachedPack.cs" />
 
489
    <Compile Include="NGit.Transport\UploadPackLogger.cs" />
 
490
    <Compile Include="NGit.Transport.Resolver\FileResolver.cs" />
 
491
    <Compile Include="NGit.Transport.Resolver\ReceivePackFactory.cs" />
 
492
    <Compile Include="NGit.Transport.Resolver\RepositoryResolver.cs" />
 
493
    <Compile Include="NGit.Transport.Resolver\ServiceNotAuthorizedException.cs" />
 
494
    <Compile Include="NGit.Transport.Resolver\ServiceNotEnabledException.cs" />
 
495
    <Compile Include="NGit.Transport.Resolver\UploadPackFactory.cs" />
 
496
    <Compile Include="NGit.Api\ResetCommand.cs" />
 
497
    <Compile Include="NGit\BatchingProgressMonitor.cs" />
 
498
    <Compile Include="NGit.Util\BlockList.cs" />
 
499
    <Compile Include="NGit\ObjectIdOwnerMap.cs" />
 
500
    <Compile Include="NGit.Transport\TransportProtocol.cs" />
 
501
    <Compile Include="NGit.Transport\JschConfigSessionFactory.cs" />
 
502
    <Compile Include="NGit.Transport\JschSession.cs" />
 
503
    <Compile Include="NGit.Transport\RemoteSession.cs" />
 
504
    <Compile Include="NGit.Api\CherryPickResult.cs" />
 
505
    <Compile Include="NGit.Api\Status.cs" />
 
506
    <Compile Include="NGit.Api\StatusCommand.cs" />
 
507
    <Compile Include="NGit.Transport\PreUploadHook.cs" />
 
508
    <Compile Include="NGit.Transport\UploadPackMayNotContinueException.cs" />
 
509
  </ItemGroup>
 
510
  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 
511
  <ItemGroup>
 
512
    <EmbeddedResource Include="resources\JGitText.properties">
 
513
      <LogicalName>NGit.JGitText.properties</LogicalName>
 
514
    </EmbeddedResource>
 
515
  </ItemGroup>
 
516
  <ItemGroup>
 
517
    <ProjectReference Include="..\Sharpen\Sharpen.csproj">
 
518
      <Project>{72944A6C-45FF-4EF8-B349-8C9CABF519D4}</Project>
 
519
      <Name>Sharpen</Name>
 
520
    </ProjectReference>
 
521
    <ProjectReference Include="..\NSch\NSch.csproj">
 
522
      <Project>{A19E6F3F-A25B-4B01-8922-CF0CC35C781D}</Project>
 
523
      <Name>NSch</Name>
 
524
    </ProjectReference>
 
525
  </ItemGroup>
 
526
</Project>