Skip to content
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions src/ExtCore.WebApplication/DefaultAssemblyProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ public class DefaultAssemblyProvider : IAssemblyProvider

/// <summary>
/// Gets or sets the predicate that is used to filter discovered assemblies from a specific folder
/// before thay have been added to the resulting assemblies set.
/// before they have been added to the resulting assemblies set.
/// </summary>
public Func<Assembly, bool> IsCandidateAssembly { get; set; }

/// <summary>
/// Gets or sets the predicate that is used to filter discovered libraries from a web application dependencies
/// before thay have been added to the resulting assemblies set.
/// before they have been added to the resulting assemblies set.
/// </summary>
public Func<Library, bool> IsCandidateCompilationLibrary { get; set; }

Expand Down Expand Up @@ -143,4 +143,4 @@ private void GetAssembliesFromPath(List<Assembly> assemblies, string path, bool
else this.logger.LogWarning("Discovering and loading assemblies from path '{0}' skipped: path not found", path);
}
}
}
}