Skip to content

Commit

Permalink
Comments fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ondřej Štorc committed Sep 10, 2020
1 parent 70328bf commit 9f52aba
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ internal class CandidateAssemblyFilesResolver : Resolver
/// Construct.
/// </summary>
/// <param name="candidateAssemblyFiles">List of literal assembly file names to be considered when SearchPaths has {CandidateAssemblyFiles}.</param>
/// <param name="searchPathElement">The search path element.</param>
/// <param name="getAssemblyName">Delegate to get the assembly name object.</param>
/// <param name="fileExists">Delegate to check if the file exists.</param>
/// <param name="getRuntimeVersion">Delegate to get the runtime version.</param>
/// <param name="searchPathElement">The corresponding element from the search path.</param>
/// <param name="getAssemblyName">Delegate that gets the assembly name.</param>
/// <param name="fileExists">Delegate that returns if the file exists.</param>
/// <param name="getRuntimeVersion">Delegate that returns the clr runtime version for the file.</param>
/// <param name="targetedRuntimeVesion">The targeted runtime version.</param>
public CandidateAssemblyFilesResolver(string[] candidateAssemblyFiles, string searchPathElement, GetAssemblyName getAssemblyName, FileExists fileExists, GetAssemblyRuntimeVersion getRuntimeVersion, Version targetedRuntimeVesion)
: base(searchPathElement, getAssemblyName, fileExists, getRuntimeVersion, targetedRuntimeVesion, ProcessorArchitecture.None, false)
Expand Down

0 comments on commit 9f52aba

Please sign in to comment.