Skyline.DataMiner.CICD.Tools.Packager only supports individual types, as where the new templates allow for multiple types in the solution and creation of the .dmapp for uploading to the catalogue, but we'd like to be able to use the new style templates with multiple types in our CI/CD pipeline, is there currently a way of doing this?
Hi Philip
The Skyline.DataMiner.Sdk projects are a lot simpler for CI/CD as the package creation is done together with the building of the solution. In short, you can use 'dotnet build' for creating the package and 'dotnet publish' for publishing the created .dmapp package to the Catalog.
A tutorial about multiple items for a .dmapp can be found here: Registering a new version of a multi-artifact DataMiner package to the Catalog using Visual Studio and GitHub | DataMiner Docs
FYI: The Packager .NET tool does also support creating .dmapp packages for the Skyline.DataMiner.Sdk projects. You'll notice that there is a new type 'Sdk' for the dmapp command. In the backend, this basically does a 'dotnet build', so I would not recommend using that tool and instead make use of the 'dotnet build' that generally is present in all pipelines.