We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 782364e commit 3a41d13Copy full SHA for 3a41d13
1 file changed
src/code/FindPSResource.cs
@@ -175,6 +175,13 @@ private void ProcessResourceNameParameterSet()
175
try
176
{
177
WriteDebug("In FindPSResource::ProcessResourceNameParameterSet()");
178
+
179
+ WriteVerbose("checking if Name parameter is specified");
180
181
+ var check = MyInvocation.BoundParameters.ContainsKey(nameof(Name));
182
183
+ WriteVerbose("Value of check for Name parameter: " + check);
184
185
// only cases where Name is allowed to not be specified is if Type or Tag parameters are
186
if (!MyInvocation.BoundParameters.ContainsKey(nameof(Name)))
187
0 commit comments