Skip to content

Commit 7bc0b49

Browse files
Eric DahlvangJasonSowers
Eric Dahlvang
authored andcommitted
Enumerate missing resources when throwing MissingManifestResourceException (providing notice to developers of which resources are actually missing). (#4374)
1 parent f957ba7 commit 7bc0b49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

CSharp/Library/Microsoft.Bot.Builder/FormFlow/FormBuilder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public virtual IForm<T> Build(Assembly resourceAssembly = null, string resourceN
9999
_form.Localize(rs.GetEnumerator(), out missing, out extra);
100100
if (missing.Any())
101101
{
102-
throw new MissingManifestResourceException($"Missing resources {missing}");
102+
throw new MissingManifestResourceException($"Missing {missing.Count()} resources {string.Join(", ", missing)}");
103103
}
104104
}
105105
}

0 commit comments

Comments
 (0)