Skip to content
Docs Try Aspire
Docs Try

PerlPackageManager

Enum net10.0
📦 CommunityToolkit.Aspire.Hosting.Perl v13.4.0
Identifies the Perl package manager used for module installation.
namespace CommunityToolkit.Aspire.Hosting.Perl;
public enum PerlPackageManager
Cpan = 0
The standard CPAN client (cpan). Default for all Perl resources.
Cpanm = 1
App::cpanminus (cpanm). A lightweight alternative to the full CPAN client. Enabled via WithCpanMinus().
Carton = 2
Carton — a Perl module dependency manager using cpanfile and lock files. Enabled via WithCarton().