File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Mvc/Mvc.Core/src/ApplicationParts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,15 +83,15 @@ private static IEnumerable<Assembly> GetApplicationPartAssemblies(string entryAs
83
83
var assembliesFromAttributes = entryAssembly . GetCustomAttributes < ApplicationPartAttribute > ( )
84
84
. Select ( name => Assembly . Load ( name . AssemblyName ) )
85
85
. OrderBy ( assembly => assembly . FullName , StringComparer . Ordinal )
86
- . SelectMany ( GetAsemblyClosure ) ;
86
+ . SelectMany ( GetAssemblyClosure ) ;
87
87
88
88
// The SDK will not include the entry assembly as an application part. We'll explicitly list it
89
89
// and have it appear before all other assemblies \ ApplicationParts.
90
- return GetAsemblyClosure ( entryAssembly )
90
+ return GetAssemblyClosure ( entryAssembly )
91
91
. Concat ( assembliesFromAttributes ) ;
92
92
}
93
93
94
- private static IEnumerable < Assembly > GetAsemblyClosure ( Assembly assembly )
94
+ private static IEnumerable < Assembly > GetAssemblyClosure ( Assembly assembly )
95
95
{
96
96
yield return assembly ;
97
97
You can’t perform that action at this time.
0 commit comments