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-03-29 16:00:20 +0400
committernulltoken <emeric.fermas@gmail.com>2012-03-29 16:00:20 +0400
commitf8e97d4fdcbd6ead85a1e390754eed1934b58ef6 (patch)
tree35c60a5b6518dfe027549e4dc291c0125d5a56a0 /LibGit2Sharp
parentb94a1113dc5e7c6377e7300150784f7fc16f3dac (diff)
Move SafeHandle related types to Core.Handles namespace
Diffstat (limited to 'LibGit2Sharp')
-rw-r--r--LibGit2Sharp/Configuration.cs1
-rw-r--r--LibGit2Sharp/Core/Handles/ConfigurationSafeHandle.cs (renamed from LibGit2Sharp/Core/ConfigurationSafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/IndexSafeHandle.cs (renamed from LibGit2Sharp/Core/IndexSafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/RemoteSafeHandle.cs (renamed from LibGit2Sharp/Core/RemoteSafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/RepositorySafeHandle.cs (renamed from LibGit2Sharp/Core/RepositorySafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/RevWalkerSafeHandle.cs (renamed from LibGit2Sharp/Core/RevWalkerSafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/SafeHandleBase.cs (renamed from LibGit2Sharp/Core/SafeHandleBase.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/SafeHandleExtensions.cs (renamed from LibGit2Sharp/Core/SafeHandleExtensions.cs)2
-rw-r--r--LibGit2Sharp/Core/Handles/SignatureSafeHandle.cs (renamed from LibGit2Sharp/Core/SignatureSafeHandle.cs)2
-rw-r--r--LibGit2Sharp/Core/Libgit2UnsafeHelper.cs1
-rw-r--r--LibGit2Sharp/Core/UnSafeNativeMethods.cs1
-rw-r--r--LibGit2Sharp/LibGit2Sharp.csproj16
-rw-r--r--LibGit2Sharp/Remote.cs1
-rw-r--r--LibGit2Sharp/RemoteCollection.cs1
-rw-r--r--LibGit2Sharp/Signature.cs1
-rw-r--r--LibGit2Sharp/TagCollection.cs1
16 files changed, 23 insertions, 16 deletions
diff --git a/LibGit2Sharp/Configuration.cs b/LibGit2Sharp/Configuration.cs
index e9391355..6f7bc144 100644
--- a/LibGit2Sharp/Configuration.cs
+++ b/LibGit2Sharp/Configuration.cs
@@ -2,6 +2,7 @@ using System;
using System.Collections.Generic;
using System.Globalization;
using LibGit2Sharp.Core;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
diff --git a/LibGit2Sharp/Core/ConfigurationSafeHandle.cs b/LibGit2Sharp/Core/Handles/ConfigurationSafeHandle.cs
index 862b4f17..4271e105 100644
--- a/LibGit2Sharp/Core/ConfigurationSafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/ConfigurationSafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class ConfigurationSafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/IndexSafeHandle.cs b/LibGit2Sharp/Core/Handles/IndexSafeHandle.cs
index 34ea7930..7880ab9b 100644
--- a/LibGit2Sharp/Core/IndexSafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/IndexSafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class IndexSafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/RemoteSafeHandle.cs b/LibGit2Sharp/Core/Handles/RemoteSafeHandle.cs
index 844b6855..d70aba13 100644
--- a/LibGit2Sharp/Core/RemoteSafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/RemoteSafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class RemoteSafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/RepositorySafeHandle.cs b/LibGit2Sharp/Core/Handles/RepositorySafeHandle.cs
index bb39b375..10b50820 100644
--- a/LibGit2Sharp/Core/RepositorySafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/RepositorySafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class RepositorySafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/RevWalkerSafeHandle.cs b/LibGit2Sharp/Core/Handles/RevWalkerSafeHandle.cs
index acf15c5d..5bb3f8db 100644
--- a/LibGit2Sharp/Core/RevWalkerSafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/RevWalkerSafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class RevWalkerSafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/SafeHandleBase.cs b/LibGit2Sharp/Core/Handles/SafeHandleBase.cs
index adc6ac66..3a5535a0 100644
--- a/LibGit2Sharp/Core/SafeHandleBase.cs
+++ b/LibGit2Sharp/Core/Handles/SafeHandleBase.cs
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal abstract class SafeHandleBase : SafeHandle
{
diff --git a/LibGit2Sharp/Core/SafeHandleExtensions.cs b/LibGit2Sharp/Core/Handles/SafeHandleExtensions.cs
index 954320d2..4bb16436 100644
--- a/LibGit2Sharp/Core/SafeHandleExtensions.cs
+++ b/LibGit2Sharp/Core/Handles/SafeHandleExtensions.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal static class SafeHandleExtensions
{
diff --git a/LibGit2Sharp/Core/SignatureSafeHandle.cs b/LibGit2Sharp/Core/Handles/SignatureSafeHandle.cs
index 8ad7a2c0..37e2438e 100644
--- a/LibGit2Sharp/Core/SignatureSafeHandle.cs
+++ b/LibGit2Sharp/Core/Handles/SignatureSafeHandle.cs
@@ -1,4 +1,4 @@
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp.Core.Handles
{
internal class SignatureSafeHandle : SafeHandleBase
{
diff --git a/LibGit2Sharp/Core/Libgit2UnsafeHelper.cs b/LibGit2Sharp/Core/Libgit2UnsafeHelper.cs
index 62699ac1..e370c0b5 100644
--- a/LibGit2Sharp/Core/Libgit2UnsafeHelper.cs
+++ b/LibGit2Sharp/Core/Libgit2UnsafeHelper.cs
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp.Core
{
diff --git a/LibGit2Sharp/Core/UnSafeNativeMethods.cs b/LibGit2Sharp/Core/UnSafeNativeMethods.cs
index 40d5b882..1b339a15 100644
--- a/LibGit2Sharp/Core/UnSafeNativeMethods.cs
+++ b/LibGit2Sharp/Core/UnSafeNativeMethods.cs
@@ -1,5 +1,6 @@
using System;
using System.Runtime.InteropServices;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp.Core
{
diff --git a/LibGit2Sharp/LibGit2Sharp.csproj b/LibGit2Sharp/LibGit2Sharp.csproj
index 668afbc6..34d5d0f9 100644
--- a/LibGit2Sharp/LibGit2Sharp.csproj
+++ b/LibGit2Sharp/LibGit2Sharp.csproj
@@ -64,11 +64,11 @@
<Compile Include="Core\Handles\NotOwnedSafeHandleBase.cs" />
<Compile Include="Core\Handles\OidSafeHandle.cs" />
<Compile Include="Core\ReferenceExtensions.cs" />
- <Compile Include="Core\SignatureSafeHandle.cs" />
+ <Compile Include="Core\Handles\SignatureSafeHandle.cs" />
<Compile Include="Core\Handles\TreeEntrySafeHandle.cs" />
<Compile Include="DetachedHead.cs" />
<Compile Include="LibGit2Exception.cs" />
- <Compile Include="Core\ConfigurationSafeHandle.cs" />
+ <Compile Include="Core\Handles\ConfigurationSafeHandle.cs" />
<Compile Include="Core\Ensure.cs" />
<Compile Include="Core\Epoch.cs" />
<Compile Include="Core\GitErrorCode.cs" />
@@ -80,13 +80,13 @@
<Compile Include="Core\GitTime.cs" />
<Compile Include="Core\Compat\Lazy.cs" />
<Compile Include="Core\NativeMethods.cs" />
- <Compile Include="Core\SafeHandleExtensions.cs" />
+ <Compile Include="Core\Handles\SafeHandleExtensions.cs" />
<Compile Include="Core\ObjectSafeWrapper.cs" />
- <Compile Include="Core\RemoteSafeHandle.cs" />
- <Compile Include="Core\RevWalkerSafeHandle.cs">
+ <Compile Include="Core\Handles\RemoteSafeHandle.cs" />
+ <Compile Include="Core\Handles\RevWalkerSafeHandle.cs">
<SubType>Code</SubType>
</Compile>
- <Compile Include="Core\SafeHandleBase.cs" />
+ <Compile Include="Core\Handles\SafeHandleBase.cs" />
<Compile Include="Core\UnSafeNativeMethods.cs" />
<Compile Include="Core\Utf8Marshaler.cs" />
<Compile Include="DirectReference.cs" />
@@ -100,7 +100,7 @@
<Compile Include="ICommitCollection.cs" />
<Compile Include="Index.cs" />
<Compile Include="IndexEntry.cs" />
- <Compile Include="Core\IndexSafeHandle.cs" />
+ <Compile Include="Core\Handles\IndexSafeHandle.cs" />
<Compile Include="Filter.cs" />
<Compile Include="IQueryableCommitCollection.cs" />
<Compile Include="Core\LookUpOptions.cs" />
@@ -116,7 +116,7 @@
</Compile>
<Compile Include="RepositoryInformation.cs" />
<Compile Include="RepositoryExtensions.cs" />
- <Compile Include="Core\RepositorySafeHandle.cs" />
+ <Compile Include="Core\Handles\RepositorySafeHandle.cs" />
<Compile Include="RepositoryStatus.cs" />
<Compile Include="ResetOptions.cs" />
<Compile Include="Signature.cs" />
diff --git a/LibGit2Sharp/Remote.cs b/LibGit2Sharp/Remote.cs
index 3779c274..6c01a7ef 100644
--- a/LibGit2Sharp/Remote.cs
+++ b/LibGit2Sharp/Remote.cs
@@ -1,5 +1,6 @@
using System;
using LibGit2Sharp.Core;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
diff --git a/LibGit2Sharp/RemoteCollection.cs b/LibGit2Sharp/RemoteCollection.cs
index d2950b6f..3801526a 100644
--- a/LibGit2Sharp/RemoteCollection.cs
+++ b/LibGit2Sharp/RemoteCollection.cs
@@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using LibGit2Sharp.Core;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
diff --git a/LibGit2Sharp/Signature.cs b/LibGit2Sharp/Signature.cs
index e3812e78..a4a9c0ef 100644
--- a/LibGit2Sharp/Signature.cs
+++ b/LibGit2Sharp/Signature.cs
@@ -1,6 +1,7 @@
using System;
using System.Runtime.InteropServices;
using LibGit2Sharp.Core;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
diff --git a/LibGit2Sharp/TagCollection.cs b/LibGit2Sharp/TagCollection.cs
index d3d73357..dad24a30 100644
--- a/LibGit2Sharp/TagCollection.cs
+++ b/LibGit2Sharp/TagCollection.cs
@@ -3,6 +3,7 @@ using System.Collections;
using System.Collections.Generic;
using System.Linq;
using LibGit2Sharp.Core;
+using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{