├── .gitignore ├── Images ├── Components.JPG ├── Graph.JPG ├── GraphError.JPG ├── GraphManipulation.JPG ├── SpecificationWindow.JPG ├── SystemAssemblies.JPG ├── TreeviewSelection.JPG ├── demoAnalysisSpec.JPG ├── demoExcelSpec.JPG └── demoJSONSpec.JPG ├── LICENSE ├── README.md ├── Sources ├── DotNETAssemblyGrapher.Application │ ├── ComponentSpecification.cs │ ├── ComponentsBuilder.cs │ ├── DotNETAssemblyGrapher.Application.csproj │ ├── ExcelParser.cs │ ├── ExtendedGetters.cs │ ├── IFileParser.cs │ ├── JSONParser.cs │ ├── ObfuscationAnalyzer.cs │ ├── ObfuscationSpecification.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SignatureAnalyzer.cs │ ├── SignatureSpecification.cs │ └── packages.config ├── DotNETAssemblyGrapher.Model │ ├── Analyzer.cs │ ├── AssemblyPointer.cs │ ├── AssemblyPointerGroup.cs │ ├── AssemblyPointerGroupContainer.cs │ ├── ClassDiagram.cd │ ├── Dependency.cs │ ├── DotNETAssemblyGrapher.Model.csproj │ ├── Error.cs │ ├── Model.cs │ ├── ModelCommonDataOrganizer.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Property.cs │ ├── SoftwareComponent.cs │ └── packages.config ├── DotNETAssemblyGrapher.sln ├── DotNETAssemblyGrapher │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DotNETAssemblyGrapher.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.ico │ ├── SpecificationWindow.xaml │ ├── SpecificationWindow.xaml.cs │ ├── app.ico │ └── packages.config └── staticPackages │ ├── Microsoft.Msagl.Drawing.dll │ ├── Microsoft.Msagl.WpfGraphControl.dll │ └── Microsoft.Msagl.dll ├── demoExcelSpec.xlsx └── demoJSONSpec.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Components.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/Components.JPG -------------------------------------------------------------------------------- /Images/Graph.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/Graph.JPG -------------------------------------------------------------------------------- /Images/GraphError.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/GraphError.JPG -------------------------------------------------------------------------------- /Images/GraphManipulation.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/GraphManipulation.JPG -------------------------------------------------------------------------------- /Images/SpecificationWindow.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/SpecificationWindow.JPG -------------------------------------------------------------------------------- /Images/SystemAssemblies.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/SystemAssemblies.JPG -------------------------------------------------------------------------------- /Images/TreeviewSelection.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/TreeviewSelection.JPG -------------------------------------------------------------------------------- /Images/demoAnalysisSpec.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/demoAnalysisSpec.JPG -------------------------------------------------------------------------------- /Images/demoExcelSpec.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/demoExcelSpec.JPG -------------------------------------------------------------------------------- /Images/demoJSONSpec.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Images/demoJSONSpec.JPG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/README.md -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ComponentSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ComponentSpecification.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ComponentsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ComponentsBuilder.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/DotNETAssemblyGrapher.Application.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/DotNETAssemblyGrapher.Application.csproj -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ExcelParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ExcelParser.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ExtendedGetters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ExtendedGetters.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/IFileParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/IFileParser.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/JSONParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/JSONParser.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ObfuscationAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ObfuscationAnalyzer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/ObfuscationSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/ObfuscationSpecification.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/SignatureAnalyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/SignatureAnalyzer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/SignatureSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/SignatureSpecification.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Application/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Application/packages.config -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Analyzer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Analyzer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/AssemblyPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/AssemblyPointer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/AssemblyPointerGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/AssemblyPointerGroup.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/AssemblyPointerGroupContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/AssemblyPointerGroupContainer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/ClassDiagram.cd -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Dependency.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/DotNETAssemblyGrapher.Model.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/DotNETAssemblyGrapher.Model.csproj -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Error.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Model.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/ModelCommonDataOrganizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/ModelCommonDataOrganizer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/Property.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/SoftwareComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/SoftwareComponent.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.Model/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.Model/packages.config -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher.sln -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/App.config -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/App.xaml -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/App.xaml.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/DotNETAssemblyGrapher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/DotNETAssemblyGrapher.csproj -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/MainWindow.xaml -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/Resources.resx -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/Settings.settings -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/Properties/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/Properties/app.ico -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/SpecificationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/SpecificationWindow.xaml -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/SpecificationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/SpecificationWindow.xaml.cs -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/app.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/app.ico -------------------------------------------------------------------------------- /Sources/DotNETAssemblyGrapher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/DotNETAssemblyGrapher/packages.config -------------------------------------------------------------------------------- /Sources/staticPackages/Microsoft.Msagl.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/staticPackages/Microsoft.Msagl.Drawing.dll -------------------------------------------------------------------------------- /Sources/staticPackages/Microsoft.Msagl.WpfGraphControl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/staticPackages/Microsoft.Msagl.WpfGraphControl.dll -------------------------------------------------------------------------------- /Sources/staticPackages/Microsoft.Msagl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/Sources/staticPackages/Microsoft.Msagl.dll -------------------------------------------------------------------------------- /demoExcelSpec.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/demoExcelSpec.xlsx -------------------------------------------------------------------------------- /demoJSONSpec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgileoAutomation/DotNET-Assembly-Grapher/HEAD/demoJSONSpec.json --------------------------------------------------------------------------------