plantuml / plantuml-stdlib

Contains official Standard Library for PlantUML
535 stars 116 forks source link

AzureDNS Sprite #104

Open jcralbino opened 4 months ago

jcralbino commented 4 months ago

Hello We are unable to listsprites for AzureDNS

This code:

@startuml
!include <azure/Networking/AzureDNS>
listsprites
@enduml

generates this image

Also if we use

@startuml
!include <azure/Networking/all>
listsprites
@enduml

We get an error: image

The-Lum commented 4 months ago

Hello @jcralbino,

Similar to:

In order to use azure/Networking/AzureDNS, you must to include azure/AzureCommon, as:

@startuml
!include <azure/AzureCommon>
!include <azure/Networking/AzureDNS>
listsprites
@enduml

Enjoy, Regards, Th.

jcralbino commented 4 months ago

I understand that this seems an approach used often

But for usability I believe the include of common should be inside of the all.puml ?

Potherca commented 3 weeks ago

I think we might have to discuss some sort of standard or common convention to align across all std-lib source repos for this.