示例#1
0
        private ILibraryExport ExportProjectLibrary(Library library, DependencyManager dependencies)
        {
            // Yes, this code is useless right now, but it dumps to the console
            // so I'm keeping it for now :)

            // Get dependencies and export them
            var exports = dependencies.EnumerateAllDependencies(library)
                          .Select(lib => ExportLibrary(lib, dependencies))
                          .ToList();

            return(LibraryExport.Empty);
        }