Which dependencies does my package need?

Hey there :waving_hand:

I’ve created a Property Editor that’s just a web component (JS) file and a manifest (JSON) file. When I create a Nuget package for this, which of Umbraco’s packages do I need to reference, to signal that my package needs Umbraco v16 (or probably v14+) to work?

I’m mainly catering to the Marketplace here - which determines the supported Umbraco version(s) from the package’s dependencies, AFAIK.

Thanks!
/Chriztian

Hey Chriztian!

I’d say go with Umbraco.Cms.Core as the dependency (for the NuGet package).

<PackageReference Include="Umbraco.Cms.Core" Version="16.0.0" />

Cheers,
Lee

Thanks Lee!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.