mirror of
https://github.com/zoriya/octokit.net.git
synced 2025-12-18 21:25:12 +00:00
Method of assembly determination was changed in order to use types of top level (#1273)
This commit is contained in:
committed by
Brendan Forster
parent
190ccf04c2
commit
494bbfda42
@@ -70,7 +70,7 @@ namespace Octokit.Tests.Conventions
|
||||
|
||||
public static bool IsClientInterface(this Type type)
|
||||
{
|
||||
return type.IsInterface && type.Name.EndsWith(ClientSuffix) && type.Namespace == typeof(IEventsClient).Namespace;
|
||||
return type.IsInterface && type.Name.EndsWith(ClientSuffix) && type.Namespace == typeof(IGitHubClient).Namespace;
|
||||
}
|
||||
|
||||
public static Type GetObservableClientInterface(this Type type)
|
||||
|
||||
Reference in New Issue
Block a user