Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 2350c3e

Browse files
Merge branch 'master' into enhancements/git-lfs-230
2 parents 24caafa + 4fb5946 commit 2350c3e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+230
-173
lines changed

script

src/GitHub.Api/Application/IApplicationManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace GitHub.Unity
66
{
7-
interface IApplicationManager : IDisposable
7+
public interface IApplicationManager : IDisposable
88
{
99
CancellationToken CancellationToken { get; }
1010
IEnvironment Environment { get; }

src/GitHub.Api/Authentication/ICredentialManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
namespace GitHub.Unity
55
{
6-
interface ICredential : IDisposable
6+
public interface ICredential : IDisposable
77
{
88
UriString Host { get; }
99
string Username { get; }
1010
string Token { get; }
1111
void UpdateToken(string token);
1212
}
1313

14-
interface ICredentialManager
14+
public interface ICredentialManager
1515
{
1616
Task<ICredential> Load(UriString host);
1717
Task Save(ICredential cred);

src/GitHub.Api/Authentication/IKeychain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace GitHub.Unity
55
{
6-
interface IKeychain
6+
public interface IKeychain
77
{
88
IKeychainAdapter Connect(UriString host);
99
Task<IKeychainAdapter> Load(UriString host);

src/GitHub.Api/Authentication/Keychain.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace GitHub.Unity
88
{
9-
struct Connection
9+
public struct Connection
1010
{
1111
public UriString Host;
1212
public string Username;

src/GitHub.Api/Authentication/KeychainAdapter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Task<Credentials> ICredentialStore.GetCredentials()
3636
}
3737
}
3838

39-
interface IKeychainAdapter: ICredentialStore
39+
public interface IKeychainAdapter: ICredentialStore
4040
{
4141
Credentials OctokitCredentials { get; }
4242
ICredential Credential { get; }

src/GitHub.Api/Git/GitBranch.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ interface ITreeData
99
}
1010

1111
[Serializable]
12-
struct GitBranch : ITreeData
12+
public struct GitBranch : ITreeData
1313
{
1414
private string name;
1515
private string tracking;

src/GitHub.Api/Git/GitClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace GitHub.Unity
88
{
9-
interface IGitClient
9+
public interface IGitClient
1010
{
1111
Task<NPath> FindGitInstallation();
1212
ITask<ValidateGitInstallResult> ValidateGitInstall(NPath path);

src/GitHub.Api/Git/GitConfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public override string ToString()
3131
}
3232
}
3333

34-
interface IGitConfig
34+
public interface IGitConfig
3535
{
3636
void Reset();
3737
IEnumerable<ConfigBranch> GetBranches();

src/GitHub.Api/Git/GitConfigSource.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
namespace GitHub.Unity
22
{
3-
enum GitConfigSource
3+
public enum GitConfigSource
44
{
55
NonSpecified,
66
Local,

0 commit comments

Comments
 (0)