├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── Resources ├── icon_128.png └── icon_64.png └── Sources ├── DotNetGraph.Tests ├── Attributes │ ├── DotAttributeTests.cs │ ├── DotColorAttributeTests.cs │ ├── DotDoubleAttributeTests.cs │ ├── DotEdgeArrowTypeAttributeTests.cs │ ├── DotEdgeStyleAttributeTests.cs │ ├── DotLabelAttributeTests.cs │ ├── DotNodeShapeAttributeTests.cs │ ├── DotNodeStyleAttributeTests.cs │ ├── DotPointAttributeTests.cs │ ├── DotRankDirAttributeTests.cs │ └── DotSubgraphStyleAttributeTests.cs ├── Compilation │ └── CompilationContextTests.cs ├── Core │ ├── DotColorTests.cs │ ├── DotEdgeTests.cs │ ├── DotElementTests.cs │ ├── DotGraphTests.cs │ ├── DotGroupTests.cs │ ├── DotIdentifierTests.cs │ ├── DotNodeTests.cs │ └── DotSubgraphTests.cs ├── DotNetGraph.Tests.csproj └── Extensions │ ├── DotBaseGraphExtensionsTests.cs │ ├── DotEdgeExtensionsTests.cs │ ├── DotElementExtensionsTests.cs │ ├── DotGraphExtensionsTests.cs │ ├── DotNodeExtensionsTests.cs │ ├── DotSubgraphExtensionsTests.cs │ ├── EnumExtensionsTests.cs │ └── StringExtensionsTests.cs ├── DotNetGraph.sln └── DotNetGraph ├── Attributes ├── DotAttribute.cs ├── DotColorAttribute.cs ├── DotDoubleAttribute.cs ├── DotEdgeArrowTypeAttribute.cs ├── DotEdgeStyleAttribute.cs ├── DotLabelAttribute.cs ├── DotNodeShapeAttribute.cs ├── DotNodeStyleAttribute.cs ├── DotPointAttribute.cs ├── DotRankDirAttribute.cs ├── DotSubgraphStyleAttribute.cs └── IDotAttribute.cs ├── Compilation ├── CompilationContext.cs └── CompilationOptions.cs ├── Core ├── DotBaseGraph.cs ├── DotColor.cs ├── DotEdge.cs ├── DotEdgeArrowType.cs ├── DotEdgeStyle.cs ├── DotElement.cs ├── DotGraph.cs ├── DotGroup.cs ├── DotIdentifier.cs ├── DotNode.cs ├── DotNodeShape.cs ├── DotNodeStyle.cs ├── DotPoint.cs ├── DotRankDir.cs ├── DotSubgraph.cs ├── DotSubgraphStyle.cs └── IDotElement.cs ├── DotNetGraph.csproj ├── DotNetGraph.nuspec ├── Exceptions ├── AttributeNotFoundException.cs ├── AttributeTypeNotMatchException.cs └── CompilationException.cs ├── Extensions ├── DotBaseGraphExtensions.cs ├── DotEdgeExtensions.cs ├── DotElementExtensions.cs ├── DotGraphExtensions.cs ├── DotNodeExtensions.cs ├── DotSubgraphExtensions.cs ├── EnumExtensions.cs └── StringExtensions.cs └── pack.sh /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/README.md -------------------------------------------------------------------------------- /Resources/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Resources/icon_128.png -------------------------------------------------------------------------------- /Resources/icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Resources/icon_64.png -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotColorAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotColorAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotDoubleAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotDoubleAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotEdgeArrowTypeAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotEdgeArrowTypeAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotEdgeStyleAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotEdgeStyleAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotLabelAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotLabelAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotNodeShapeAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotNodeShapeAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotNodeStyleAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotNodeStyleAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotPointAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotPointAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotRankDirAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotRankDirAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Attributes/DotSubgraphStyleAttributeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Attributes/DotSubgraphStyleAttributeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Compilation/CompilationContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Compilation/CompilationContextTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotColorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotColorTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotEdgeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotEdgeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotElementTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotElementTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotGraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotGraphTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotGroupTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotGroupTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotIdentifierTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotIdentifierTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotNodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotNodeTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Core/DotSubgraphTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Core/DotSubgraphTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/DotNetGraph.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/DotNetGraph.Tests.csproj -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotBaseGraphExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotBaseGraphExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotEdgeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotEdgeExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotElementExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotElementExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotGraphExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotGraphExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotNodeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotNodeExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/DotSubgraphExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/DotSubgraphExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/EnumExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/EnumExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.Tests/Extensions/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.Tests/Extensions/StringExtensionsTests.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph.sln -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotColorAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotColorAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotDoubleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotDoubleAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotEdgeArrowTypeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotEdgeArrowTypeAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotEdgeStyleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotEdgeStyleAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotLabelAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotLabelAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotNodeShapeAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotNodeShapeAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotNodeStyleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotNodeStyleAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotPointAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotPointAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotRankDirAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotRankDirAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/DotSubgraphStyleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/DotSubgraphStyleAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Attributes/IDotAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Attributes/IDotAttribute.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Compilation/CompilationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Compilation/CompilationContext.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Compilation/CompilationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Compilation/CompilationOptions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotBaseGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotBaseGraph.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotColor.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotEdge.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotEdge.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotEdgeArrowType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotEdgeArrowType.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotEdgeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotEdgeStyle.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotElement.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotGraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotGraph.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotGroup.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotIdentifier.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotNode.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotNodeShape.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotNodeShape.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotNodeStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotNodeStyle.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotPoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotPoint.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotRankDir.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotRankDir.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotSubgraph.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotSubgraph.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/DotSubgraphStyle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/DotSubgraphStyle.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Core/IDotElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Core/IDotElement.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/DotNetGraph.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/DotNetGraph.csproj -------------------------------------------------------------------------------- /Sources/DotNetGraph/DotNetGraph.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/DotNetGraph.nuspec -------------------------------------------------------------------------------- /Sources/DotNetGraph/Exceptions/AttributeNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Exceptions/AttributeNotFoundException.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Exceptions/AttributeTypeNotMatchException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Exceptions/AttributeTypeNotMatchException.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Exceptions/CompilationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Exceptions/CompilationException.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotBaseGraphExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotBaseGraphExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotEdgeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotEdgeExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotElementExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotElementExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotGraphExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotGraphExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotNodeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotNodeExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/DotSubgraphExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/DotSubgraphExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/EnumExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /Sources/DotNetGraph/pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vfrz/DotNetGraph/HEAD/Sources/DotNetGraph/pack.sh --------------------------------------------------------------------------------