├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── dotnet.yml ├── .gitignore ├── .vscode ├── launch.json └── tasks.json ├── LICENSE ├── PlantUmlClassDiagramGenerator.sln ├── README.md ├── README.zh-CN.md ├── src ├── PlantUmlClassDiagramGenerator.Library │ ├── Accessibilities.cs │ ├── AttributeListSyntaxListExtensions.cs │ ├── ClassDiagramGenerator │ │ ├── AdditionalTypeGenerator.cs │ │ ├── ClassDiagramGenerator.cs │ │ ├── ConstructorVisitor.cs │ │ ├── EnumVisitor.cs │ │ ├── EventVisitor.cs │ │ ├── FieldVisitor.cs │ │ ├── MethodVisitor.cs │ │ ├── NamespaceVisitor.cs │ │ ├── PropertyVisitor.cs │ │ ├── RecordVisitor.cs │ │ ├── RelationshipGenerator.cs │ │ ├── StructVisitor.cs │ │ └── TypeVisitor.cs │ ├── InheritanceRelationship.cs │ ├── NamespaceNameText.cs │ ├── PlantUmlClassDiagramGenerator.Library.csproj │ ├── Relationship.cs │ ├── RelationshipCollection.cs │ └── TypeNameText.cs ├── PlantUmlClassDiagramGenerator.SourceGenerator │ ├── Associations │ │ ├── Association.cs │ │ └── AssociationNode.cs │ ├── Extensions │ │ ├── AccessibilityExtensions.cs │ │ ├── IEventSymbolExtensions.cs │ │ ├── IFieldSymbolExtensions.cs │ │ ├── IMethodSymbolExtensions.cs │ │ ├── INamedTypeSymbolExtensions.cs │ │ ├── IPropertySymbolExtensions.cs │ │ └── ITypeSymbolExtensions.cs │ ├── Options │ │ ├── Accessibilities.cs │ │ ├── AssociationTypes.cs │ │ ├── GeneratorAttributes.cs │ │ └── GeneratorOptions.cs │ ├── PlantUmlClassDiagramGenerator.SourceGenerator.csproj │ ├── PlantUmlDiagramBuilder.cs │ ├── PlantUmlSourceGenerator.Attributes.cs │ ├── PlantUmlSourceGenerator.cs │ ├── Properties │ │ └── launchSettings.json │ └── README.md ├── PlantUmlClassDiagramGenerator │ ├── ExcludeFileFilter.cs │ ├── Generator │ │ ├── IPlantUmlGenerator.cs │ │ ├── PlantUmlFromDirGenerator.cs │ │ └── PlantUmlFromFileGenerator.cs │ ├── PathHelper.cs │ ├── PlantUmlClassDiagramGenerator.csproj │ ├── Program.cs │ └── Properties │ │ ├── PublishProfiles │ │ └── FolderProfile.pubxml │ │ └── launchSettings.json └── PlantUmlClassDiagramgenerator.Attributes │ ├── PlantUmlAssociationAttribute.cs │ ├── PlantUmlClassDiagramGenerator.Attributes.csproj │ ├── PlantUmlDiagram.cs │ ├── PlantUmlIgnoreAssociationAttribute.cs │ └── PlantUmlIgnoreAttribute.cs ├── test ├── PlantUmlClassDiagramGeneratorTest │ ├── PlantUmlClassDiagramGeneratorTest.csproj │ ├── UnitTests │ │ ├── ClassDiagramGeneratorTest.cs │ │ ├── ExcludeFileFilterTest.cs │ │ ├── PlantUmlFromDirGeneratorTest.cs │ │ └── TestHelper.cs │ ├── testData │ │ ├── AttributeRequired.cs │ │ ├── Attributes.cs │ │ ├── CurlyBrackets.cs │ │ ├── DefaultModifierType.cs │ │ ├── GenericsType.cs │ │ ├── InputClasses.cs │ │ ├── NullableRelationship.cs │ │ ├── NullableType.cs │ │ ├── Planets │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.cs │ │ │ ├── Earth.cs │ │ │ └── Moon.cs │ │ └── RecordType.cs │ └── uml │ │ ├── AtPrefixType.puml │ │ ├── AttributeRequired.puml │ │ ├── Attributes.puml │ │ ├── CurlyBrackets.puml │ │ ├── DefaultModifierType.puml │ │ ├── GenericsType.puml │ │ ├── NotAttributeRequired.puml │ │ ├── NullableRelationship.puml │ │ ├── Planets │ │ ├── case_1 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_2 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_3 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_4 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_5 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_6 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── case_7 │ │ │ ├── BaseTypes │ │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ └── case_8 │ │ │ ├── BaseTypes │ │ │ └── PlanetBase.puml │ │ │ ├── Earth.puml │ │ │ ├── Moon.puml │ │ │ └── include.puml │ │ ├── RecordType.puml │ │ ├── all.puml │ │ ├── nullableType.puml │ │ ├── public.puml │ │ ├── withoutPrivate.puml │ │ └── withoutStartEndUml.puml ├── SourceGeneratorTest.Library │ ├── AttributesTest │ │ ├── DisableInhelit.cs │ │ ├── ExcludeAccessibilities.cs │ │ └── IncludeAccessibilities.cs │ ├── Class1.cs │ ├── Logs │ │ ├── ILogger.cs │ │ └── LogLevel.cs │ ├── SampleClass.cs │ ├── SourceGeneratorTest.Library.csproj │ └── Types │ │ ├── Item.cs │ │ ├── Parameters.cs │ │ └── Types.cs ├── SourceGeneratorTest │ ├── AssemblyAttributes.cs │ ├── Classes │ │ ├── Descendants.cs │ │ ├── Logger.cs │ │ └── SampleModel.cs │ ├── GlobalUsings.cs │ ├── Planets │ │ ├── BaseTypes │ │ │ └── PlanetBase.cs │ │ ├── Earth.cs │ │ └── Moon.cs │ ├── SourceGeneratorTest.csproj │ └── UnitTest1.cs └── generated-uml │ ├── SourceGeneratorTest.Library │ └── SourceGeneratorTest │ │ └── Library │ │ ├── AttributesTest │ │ ├── DisableAll.InnerClass.puml │ │ ├── DisableAll.puml │ │ ├── DisableField.InnerClass.puml │ │ ├── DisableField.puml │ │ ├── DisableInhelit.InnerClass.puml │ │ ├── DisableInhelit.puml │ │ ├── DisableNest.InnerClass.puml │ │ ├── DisableNest.puml │ │ ├── DisableParameter.InnerClass.puml │ │ ├── DisableParameter.puml │ │ ├── DisableProperty.InnerClass.puml │ │ ├── DisableProperty.puml │ │ ├── Internal.puml │ │ ├── PrivateInternal.puml │ │ ├── PrivateProtected.puml │ │ ├── Protected.puml │ │ ├── ProtectedInternal.puml │ │ └── PublicProtected.puml │ │ ├── Logs │ │ ├── ILogger.puml │ │ └── LogLevel.puml │ │ ├── SampleClass.puml │ │ └── Types │ │ ├── AbstractClass.puml │ │ ├── Accessibilities.puml │ │ ├── ClassA.puml │ │ ├── IInterfaceA.puml │ │ ├── IItemProvider.puml │ │ ├── Item.puml │ │ ├── ItemProviderA.puml │ │ ├── ItemProviderB.puml │ │ ├── Parameters.puml │ │ ├── ReadonlyStruct.puml │ │ ├── RecordA.puml │ │ ├── RecordStruct.puml │ │ ├── StaticClass.puml │ │ └── StructA.puml │ └── SourceGeneratorTest │ └── SourceGeneratorTest │ ├── Classes │ ├── Logger.puml │ ├── Parent.ChildeB.GrandchildA.GreatGrandchild.puml │ ├── Parent.ChildeB.GrandchildA.puml │ ├── Parent.ChildeB.GrandchildB.puml │ ├── Parent.ChildeB.puml │ ├── Parent.ChiledA.GrandchildA.GreatGrandchild.puml │ ├── Parent.ChiledA.GrandchildA.puml │ ├── Parent.ChiledA.GrandchildB.GreatGrandchild.puml │ ├── Parent.ChiledA.GrandchildB.puml │ ├── Parent.ChiledA.puml │ ├── Parent.puml │ └── SampleModel.puml │ ├── Planets │ ├── BaseTypes │ │ └── PlanetBase.puml │ ├── Earth.puml │ └── Moon.puml │ └── UnitTest1.puml ├── tools ├── csharp-to-plantuml │ ├── .gitignore │ ├── .vscode │ │ ├── extensions.json │ │ ├── launch.json │ │ ├── settings.json │ │ └── tasks.json │ ├── .vscodeignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── extension.ts │ │ └── test │ │ │ ├── extension.test.ts │ │ │ └── index.ts │ ├── tsconfig.json │ ├── tslint.json │ └── vsc-extension-quickstart.md └── default.code-workspace └── uml ├── Associations.png ├── Associations.puml ├── CustomAssociation.png ├── CustomAssociation.puml ├── GenericsTypeDeclaration.png ├── GenericsTypeDeclaration.puml ├── IgnoreAssociation.png ├── IgnoreAssociation.puml ├── InheritanceRelationsips.png ├── InheritanceRelationsips.puml ├── Initializer.png ├── Initializer.puml ├── MemberDeclaration.png ├── MemberDeclaration.puml ├── NestedClass.png ├── NestedClass.puml ├── RecordParameterList.png ├── TypeDeclaration.png ├── TypeDeclaration.puml └── source-generator ├── 0302-001.svg ├── 0302-002.svg ├── 0302-003.svg ├── 0302-004.svg ├── 0302-005.svg ├── 0302-006.svg ├── 0302-007.svg ├── 0302-008.svg ├── 0302-009.svg ├── 0302-010.svg ├── 0302-011.svg ├── 0302-012.svg ├── 0302-013.svg ├── 0302-014.svg ├── 0414-001.svg ├── 0414-002.svg ├── 0414-003.svg ├── 0519-001.png ├── 0519-002.png ├── 0519-003.png ├── BaseClass`2.png ├── DerivedClass.png ├── IInterface.png ├── ILogger`1.png ├── Item.png ├── ItemFlags.png ├── LogLevel.png ├── Logger.png ├── Paramters.png ├── Point.png ├── SampleModel.svg ├── Types.svg ├── Vector.png ├── associations.png ├── enum.png └── record.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: pierre3 4 | 5 | -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /PlantUmlClassDiagramGenerator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/PlantUmlClassDiagramGenerator.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/README.zh-CN.md -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/Accessibilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/Accessibilities.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/AttributeListSyntaxListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/AttributeListSyntaxListExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/AdditionalTypeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/AdditionalTypeGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/ClassDiagramGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/ClassDiagramGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/ConstructorVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/ConstructorVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/EnumVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/EnumVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/EventVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/EventVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/FieldVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/FieldVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/MethodVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/MethodVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/NamespaceVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/NamespaceVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/PropertyVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/PropertyVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/RecordVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/RecordVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/RelationshipGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/RelationshipGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/StructVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/StructVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/TypeVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/ClassDiagramGenerator/TypeVisitor.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/InheritanceRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/InheritanceRelationship.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/NamespaceNameText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/NamespaceNameText.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/PlantUmlClassDiagramGenerator.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/PlantUmlClassDiagramGenerator.Library.csproj -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/Relationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/Relationship.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/RelationshipCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/RelationshipCollection.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.Library/TypeNameText.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.Library/TypeNameText.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Associations/Association.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Associations/Association.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Associations/AssociationNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Associations/AssociationNode.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/AccessibilityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/AccessibilityExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IEventSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IEventSymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IFieldSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IFieldSymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IMethodSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IMethodSymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/INamedTypeSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/INamedTypeSymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IPropertySymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/IPropertySymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/ITypeSymbolExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Extensions/ITypeSymbolExtensions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/Accessibilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/Accessibilities.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/AssociationTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/AssociationTypes.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/GeneratorAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/GeneratorAttributes.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/GeneratorOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Options/GeneratorOptions.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlClassDiagramGenerator.SourceGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlClassDiagramGenerator.SourceGenerator.csproj -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlDiagramBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlDiagramBuilder.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlSourceGenerator.Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlSourceGenerator.Attributes.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlSourceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/PlantUmlSourceGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator.SourceGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator.SourceGenerator/README.md -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/ExcludeFileFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/ExcludeFileFilter.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Generator/IPlantUmlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Generator/IPlantUmlGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Generator/PlantUmlFromDirGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Generator/PlantUmlFromDirGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Generator/PlantUmlFromFileGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Generator/PlantUmlFromFileGenerator.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/PathHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/PathHelper.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/PlantUmlClassDiagramGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/PlantUmlClassDiagramGenerator.csproj -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Program.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Properties/PublishProfiles/FolderProfile.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Properties/PublishProfiles/FolderProfile.pubxml -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramGenerator/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramGenerator/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlAssociationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlAssociationAttribute.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlClassDiagramGenerator.Attributes.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlClassDiagramGenerator.Attributes.csproj -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlDiagram.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlDiagram.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlIgnoreAssociationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlIgnoreAssociationAttribute.cs -------------------------------------------------------------------------------- /src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlIgnoreAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/src/PlantUmlClassDiagramgenerator.Attributes/PlantUmlIgnoreAttribute.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/PlantUmlClassDiagramGeneratorTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/PlantUmlClassDiagramGeneratorTest.csproj -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/UnitTests/ClassDiagramGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/UnitTests/ClassDiagramGeneratorTest.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/UnitTests/ExcludeFileFilterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/UnitTests/ExcludeFileFilterTest.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/UnitTests/PlantUmlFromDirGeneratorTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/UnitTests/PlantUmlFromDirGeneratorTest.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/UnitTests/TestHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/UnitTests/TestHelper.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/AttributeRequired.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/AttributeRequired.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/Attributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/Attributes.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/CurlyBrackets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/CurlyBrackets.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/DefaultModifierType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/DefaultModifierType.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/GenericsType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/GenericsType.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/InputClasses.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/InputClasses.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/NullableRelationship.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/NullableRelationship.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/NullableType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/NullableType.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/Planets/BaseTypes/PlanetBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/Planets/BaseTypes/PlanetBase.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/Planets/Earth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/Planets/Earth.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/Planets/Moon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/Planets/Moon.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/testData/RecordType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/testData/RecordType.cs -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/AtPrefixType.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/AtPrefixType.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/AttributeRequired.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/AttributeRequired.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Attributes.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Attributes.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/CurlyBrackets.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/CurlyBrackets.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/DefaultModifierType.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/DefaultModifierType.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/GenericsType.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/GenericsType.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/NotAttributeRequired.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/NotAttributeRequired.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/NullableRelationship.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/NullableRelationship.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_1/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_2/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_3/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_4/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_5/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_6/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_7/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/Earth.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/Moon.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/include.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/Planets/case_8/include.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/RecordType.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/RecordType.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/all.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/all.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/nullableType.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/nullableType.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/public.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/public.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/withoutPrivate.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/withoutPrivate.puml -------------------------------------------------------------------------------- /test/PlantUmlClassDiagramGeneratorTest/uml/withoutStartEndUml.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/PlantUmlClassDiagramGeneratorTest/uml/withoutStartEndUml.puml -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/AttributesTest/DisableInhelit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/AttributesTest/DisableInhelit.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/AttributesTest/ExcludeAccessibilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/AttributesTest/ExcludeAccessibilities.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/AttributesTest/IncludeAccessibilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/AttributesTest/IncludeAccessibilities.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Class1.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Logs/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Logs/ILogger.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Logs/LogLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Logs/LogLevel.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/SampleClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/SampleClass.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/SourceGeneratorTest.Library.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/SourceGeneratorTest.Library.csproj -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Types/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Types/Item.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Types/Parameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Types/Parameters.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest.Library/Types/Types.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest.Library/Types/Types.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/AssemblyAttributes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/AssemblyAttributes.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Classes/Descendants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Classes/Descendants.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Classes/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Classes/Logger.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Classes/SampleModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Classes/SampleModel.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Xunit; -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Planets/BaseTypes/PlanetBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Planets/BaseTypes/PlanetBase.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Planets/Earth.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Planets/Earth.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/Planets/Moon.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/Planets/Moon.cs -------------------------------------------------------------------------------- /test/SourceGeneratorTest/SourceGeneratorTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/SourceGeneratorTest.csproj -------------------------------------------------------------------------------- /test/SourceGeneratorTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/SourceGeneratorTest/UnitTest1.cs -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableAll.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableAll.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableAll.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableAll.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableField.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableField.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableField.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableField.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableInhelit.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableInhelit.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableInhelit.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableInhelit.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableNest.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableNest.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableNest.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableNest.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableParameter.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableParameter.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableParameter.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableParameter.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableProperty.InnerClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableProperty.InnerClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableProperty.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/DisableProperty.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/Internal.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/Internal.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PrivateInternal.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PrivateInternal.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PrivateProtected.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PrivateProtected.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/Protected.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/Protected.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/ProtectedInternal.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/ProtectedInternal.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PublicProtected.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/AttributesTest/PublicProtected.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Logs/ILogger.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Logs/ILogger.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Logs/LogLevel.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Logs/LogLevel.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/SampleClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/SampleClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/AbstractClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/AbstractClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Accessibilities.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Accessibilities.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ClassA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ClassA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/IInterfaceA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/IInterfaceA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/IItemProvider.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/IItemProvider.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Item.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Item.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ItemProviderA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ItemProviderA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ItemProviderB.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ItemProviderB.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Parameters.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/Parameters.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ReadonlyStruct.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/ReadonlyStruct.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/RecordA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/RecordA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/RecordStruct.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/RecordStruct.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/StaticClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/StaticClass.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/StructA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest.Library/SourceGeneratorTest/Library/Types/StructA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Logger.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Logger.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildA.GreatGrandchild.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildA.GreatGrandchild.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildB.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.GrandchildB.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChildeB.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildA.GreatGrandchild.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildA.GreatGrandchild.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildB.GreatGrandchild.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildB.GreatGrandchild.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildB.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.GrandchildB.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.ChiledA.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/Parent.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/SampleModel.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Classes/SampleModel.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/BaseTypes/PlanetBase.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/BaseTypes/PlanetBase.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/Earth.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/Earth.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/Moon.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/Planets/Moon.puml -------------------------------------------------------------------------------- /test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/UnitTest1.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/test/generated-uml/SourceGeneratorTest/SourceGeneratorTest/UnitTest1.puml -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.gitignore -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.vscode/extensions.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.vscode/launch.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.vscode/settings.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.vscode/tasks.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/.vscodeignore -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/CHANGELOG.md -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/LICENSE -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/README.md -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/package-lock.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/package.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/src/extension.ts -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/src/test/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/src/test/extension.test.ts -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/src/test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/src/test/index.ts -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/tsconfig.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/tslint.json -------------------------------------------------------------------------------- /tools/csharp-to-plantuml/vsc-extension-quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/csharp-to-plantuml/vsc-extension-quickstart.md -------------------------------------------------------------------------------- /tools/default.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/tools/default.code-workspace -------------------------------------------------------------------------------- /uml/Associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/Associations.png -------------------------------------------------------------------------------- /uml/Associations.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/Associations.puml -------------------------------------------------------------------------------- /uml/CustomAssociation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/CustomAssociation.png -------------------------------------------------------------------------------- /uml/CustomAssociation.puml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uml/GenericsTypeDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/GenericsTypeDeclaration.png -------------------------------------------------------------------------------- /uml/GenericsTypeDeclaration.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/GenericsTypeDeclaration.puml -------------------------------------------------------------------------------- /uml/IgnoreAssociation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/IgnoreAssociation.png -------------------------------------------------------------------------------- /uml/IgnoreAssociation.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/IgnoreAssociation.puml -------------------------------------------------------------------------------- /uml/InheritanceRelationsips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/InheritanceRelationsips.png -------------------------------------------------------------------------------- /uml/InheritanceRelationsips.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/InheritanceRelationsips.puml -------------------------------------------------------------------------------- /uml/Initializer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/Initializer.png -------------------------------------------------------------------------------- /uml/Initializer.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/Initializer.puml -------------------------------------------------------------------------------- /uml/MemberDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/MemberDeclaration.png -------------------------------------------------------------------------------- /uml/MemberDeclaration.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/MemberDeclaration.puml -------------------------------------------------------------------------------- /uml/NestedClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/NestedClass.png -------------------------------------------------------------------------------- /uml/NestedClass.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/NestedClass.puml -------------------------------------------------------------------------------- /uml/RecordParameterList.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/RecordParameterList.png -------------------------------------------------------------------------------- /uml/TypeDeclaration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/TypeDeclaration.png -------------------------------------------------------------------------------- /uml/TypeDeclaration.puml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/TypeDeclaration.puml -------------------------------------------------------------------------------- /uml/source-generator/0302-001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-001.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-002.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-002.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-003.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-003.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-004.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-004.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-005.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-005.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-006.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-006.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-007.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-007.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-008.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-008.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-009.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-009.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-010.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-010.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-011.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-011.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-012.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-012.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-013.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-013.svg -------------------------------------------------------------------------------- /uml/source-generator/0302-014.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0302-014.svg -------------------------------------------------------------------------------- /uml/source-generator/0414-001.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0414-001.svg -------------------------------------------------------------------------------- /uml/source-generator/0414-002.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0414-002.svg -------------------------------------------------------------------------------- /uml/source-generator/0414-003.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0414-003.svg -------------------------------------------------------------------------------- /uml/source-generator/0519-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0519-001.png -------------------------------------------------------------------------------- /uml/source-generator/0519-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0519-002.png -------------------------------------------------------------------------------- /uml/source-generator/0519-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/0519-003.png -------------------------------------------------------------------------------- /uml/source-generator/BaseClass`2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/BaseClass`2.png -------------------------------------------------------------------------------- /uml/source-generator/DerivedClass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/DerivedClass.png -------------------------------------------------------------------------------- /uml/source-generator/IInterface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/IInterface.png -------------------------------------------------------------------------------- /uml/source-generator/ILogger`1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/ILogger`1.png -------------------------------------------------------------------------------- /uml/source-generator/Item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Item.png -------------------------------------------------------------------------------- /uml/source-generator/ItemFlags.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/ItemFlags.png -------------------------------------------------------------------------------- /uml/source-generator/LogLevel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/LogLevel.png -------------------------------------------------------------------------------- /uml/source-generator/Logger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Logger.png -------------------------------------------------------------------------------- /uml/source-generator/Paramters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Paramters.png -------------------------------------------------------------------------------- /uml/source-generator/Point.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Point.png -------------------------------------------------------------------------------- /uml/source-generator/SampleModel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/SampleModel.svg -------------------------------------------------------------------------------- /uml/source-generator/Types.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Types.svg -------------------------------------------------------------------------------- /uml/source-generator/Vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/Vector.png -------------------------------------------------------------------------------- /uml/source-generator/associations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/associations.png -------------------------------------------------------------------------------- /uml/source-generator/enum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/enum.png -------------------------------------------------------------------------------- /uml/source-generator/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pierre3/PlantUmlClassDiagramGenerator/HEAD/uml/source-generator/record.png --------------------------------------------------------------------------------