Skip to content

Added test key. #5475

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

Merged
merged 3 commits into from
Nov 6, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update ComponentCatalog.cs
Fixed 3 spaces to 4.
  • Loading branch information
michaelgsharp authored Nov 6, 2020
commit 2b7a4be9087a66dc24a65f9fdeb20981b2ce6fb3
4 changes: 2 additions & 2 deletions src/Microsoft.ML.Core/ComponentModel/ComponentCatalog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1111,9 +1111,9 @@ private void LoadExtensions(Assembly assembly, bool throwOnError)
private static bool CanContainExtensions(Assembly assembly)
{
if (assembly.FullName.StartsWith("Microsoft.ML.", StringComparison.Ordinal)
&& HasMLNetPublicKey(assembly))
&& HasMLNetPublicKey(assembly))
{
return false;
return false;
}

return true;
Expand Down