Uh oh!
There was an error while loading. Please reload this page.
Feature/get debug view value processing - #60391
Conversation
ghost
commented
Oct 14, 2021
Tagging subscribers to this area: @maryamariyan, @safern Issue DetailsImplementation of API proposal #60065
|
| /// <summary> | ||
| /// Value of the current item | ||
| /// </summary> | ||
| public string Value { get; } |
There was a problem hiding this comment.
As mentioned in the issue comment value is non-nullable by definition of the IConfigurationProvider.
There was a problem hiding this comment.
It seems like it is conflicting with valueAndProvider.Value as that seems to be nullable and the build is failing because of that.
| } | ||
| return (null, null); | ||
| return ("", null); |
safern
commented
Oct 18, 2021
Could you also update: https://github.com/dotnet/runtime/blob/main/src/libraries/Microsoft.Extensions.Configuration.Abstractions/ref/Microsoft.Extensions.Configuration.Abstractions.cs to add the new APIs? Here are instructions on how to do that: https://github.com/dotnet/runtime/blob/main/docs/coding-guidelines/updating-ref-source.md |
Uh oh!
There was an error while loading. Please reload this page.
safern
left a comment
There was a problem hiding this comment.
@Andree643 looks good overall! Could you also please add some tests for the new API?
oskrabanek
commented
Oct 28, 2021
Sure, will do. |
…src/ConfigurationRootExtensions.cs Co-authored-by: Santiago Fernandez Madero <safern@microsoft.com>
eerhardt
commented
Nov 18, 2021
Hi @Andree643 - do you have an idea when the tests for the new API will be added? Let us know if you are interested in pushing this PR forward. |
Hi @eerhardt. I'll do my best to make it next week. I have some issues with building the solution and trying to resolve it. |
eerhardt
left a comment
There was a problem hiding this comment.
Looks pretty good. I just had some nits on some doc comments. Once those are addressed, I believe this can be merged.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
…src/ConfigurationDebugViewContext.cs Docs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
…src/ConfigurationDebugViewContext.cs Docs updateDocs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
…src/ConfigurationDebugViewContext.cs Docs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
…src/ConfigurationDebugViewContext.cs Docs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
…src/ConfigurationRootExtensions.cs Docs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
…src/ConfigurationDebugViewContext.cs Docs update Co-authored-by: Eric Erhardt <eric.erhardt@microsoft.com>
Implementation of API proposal #60065 based on the changes proposed on the review
@safern