diff --git a/src/chocolatey/infrastructure.app/services/INugetService.cs b/src/chocolatey/infrastructure.app/services/INugetService.cs index c1fb95074a..bcb7179a4c 100644 --- a/src/chocolatey/infrastructure.app/services/INugetService.cs +++ b/src/chocolatey/infrastructure.app/services/INugetService.cs @@ -1,4 +1,4 @@ -// Copyright © 2017 - 2018 Chocolatey Software, Inc +// Copyright © 2017 - 2019 Chocolatey Software, Inc // Copyright © 2011 - 2017 RealDimensions Software, LLC // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -16,12 +16,18 @@ namespace chocolatey.infrastructure.app.services { - using chocolatey.infrastructure.results; - using configuration; - using System.Collections.Concurrent; + using System.Collections.Concurrent; + using configuration; + using results; - public interface INugetService : ISourceRunner + public interface INugetService : ISourceRunner { + /// + /// Get outdated packages + /// + /// The configuration. + ConcurrentDictionary get_outdated(ChocolateyConfiguration config); + /// /// Run pack in noop mode. /// @@ -52,10 +58,5 @@ public interface INugetService : ISourceRunner /// Name of the package. void remove_rollback_directory_if_exists(string packageName); - /// - /// Get outdated packages - /// - /// The configuration. - ConcurrentDictionary get_outdated(ChocolateyConfiguration config); } }