diff --git a/source/dub/project.d b/source/dub/project.d index a979e91..c6f5abe 100644 --- a/source/dub/project.d +++ b/source/dub/project.d @@ -109,6 +109,9 @@ /// The versions to use for all dependencies. Call reinit() after changing these. @property inout(SelectedVersions) selections() inout { return m_selections; } + /// Package manager instance used by the project. + @property inout(PackageManager) packageManager() inout { return m_packageManager; } + /** Allows iteration of the dependency tree in topological order */ int delegate(int delegate(ref const Package)) getTopologicalPackageList(bool children_first = false, in Package root_package = null, string[string] configs = null)