private static void ExecuteConversion(ExcelRowsWithDependencies excel)
        {
            ExcelRowsConverterToGraphViz convertor = new ExcelRowsConverterToGraphViz();
            DotGraph graph       = convertor.Convert(excel).GeneratedGraph;
            string   graphInText = graph.Compile();

            File.WriteAllText(@"C:\dev\examples\ProjectDependencyGraph\UnitTestProject1\bin\Debug\ConvertToGraphViz1.dot", graphInText);
        }
Ejemplo n.º 2
0
        private static (DotGraph GeneratedGraph, string ConversionErrors) ConvertToGraph(ExcelRowsWithDependencies excel)
        {
            ExcelRowsConverterToGraphViz convertor = new ExcelRowsConverterToGraphViz();

            return(convertor.Convert(excel));
        }