File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
src/ProjectRover/Extensions Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ You should have received a copy of the GNU Affero General Public License
2222using Microsoft . Extensions . DependencyInjection ;
2323using Microsoft . Extensions . Logging ;
2424using ICSharpCode . ILSpy . ViewModels ;
25+ using ICSharpCode . ILSpyX ;
2526
2627namespace ProjectRover . Extensions ;
2728
@@ -59,7 +60,8 @@ public static IServiceCollection AddServices(this IServiceCollection services) =
5960 sp . GetRequiredService < ICSharpCode . ILSpy . Util . SettingsService > ( ) ,
6061 sp . GetRequiredService < ICSharpCode . ILSpy . LanguageService > ( ) ,
6162 ProjectRover . App . ExportProvider
62- ) ) ;
63+ ) )
64+ . AddSingleton < AssemblyList > ( sp => sp . GetRequiredService < ICSharpCode . ILSpy . AssemblyTree . AssemblyTreeModel > ( ) . AssemblyList ) ;
6365
6466 private static IConfigurationRoot GetConfiguration ( ) =>
6567 new ConfigurationBuilder ( )
You can’t perform that action at this time.
0 commit comments