-
Notifications
You must be signed in to change notification settings - Fork 344
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
remove apiconfig and appconfig namespaces for public [1006] #1015
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thanks for fixing this.
@@ -37,7 +37,6 @@ | |||
using System.Threading; | |||
using Microsoft.Identity.Client.ApiConfig; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this ? Is there a way to remove the AppConfig namespace completely?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AppConfig namespace is completely gone. ApiConfig has two child namespaces which I'd prefer to keep.
@@ -29,7 +29,7 @@ | |||
using System.Threading; | |||
using System.Threading.Tasks; | |||
using Microsoft.Identity.Client; | |||
using Microsoft.Identity.Client.ApiConfig; | |||
using Microsoft.Identity.Client.ApiConfig.Executors; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ApiConfig [](start = 32, length = 9)
Do we still need this namespace?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, this Executors is internal code where we do the execution and i kept those namespaces around. the change here is i moved the interfaces down a folder so we can have appconfig and apiconfig root directories all be in microsoft.identity.client (since they're public)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#1006