diff --git a/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectPackages.cshtml b/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectPackages.cshtml index 7b5f61f..716a432 100644 --- a/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectPackages.cshtml +++ b/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectPackages.cshtml @@ -6,11 +6,12 @@ var prefix = GlobalsForGenerating.globalPrefix(); } --- - sidebar_position: 20 --- # Project packages @relativePath +## Number items @Model.AlphabeticalProjectPackages.Length + |Nr|ID|Version| | ----------- | ----------- | ----------- | @{ diff --git a/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectRelations.cshtml b/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectRelations.cshtml index 03ba37c..ab2d1aa 100644 --- a/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectRelations.cshtml +++ b/src/NetPackageAnalyzer/NetPackageAnalyzerWork/Templates/ProjectRelations.cshtml @@ -6,10 +6,18 @@ var prefix = GlobalsForGenerating.globalPrefix(); } +--- +sidebar_position: 10 +--- -# Project relations for @nameCsproj +# Project references for @nameCsproj +## Downstream @Model.ProjectsReferences.Count, Upstream : @Model.UpStreamProjectReferences.Count +@if(Model.AlphabeticalProjectsReferences.Length>0) +{ + +# Project relations for @nameCsproj ```mermaid flowchart @@ -42,8 +50,11 @@ flowchart } + +} - +@if (Model.AlphabeticalUpStreamProjectReferences.Length>0){ + # Projects that reference @nameCsproj ```mermaid flowchart @@ -74,14 +85,19 @@ flowchart } + +} +@if (Model.AlphabeticalProjectsReferences.Length>0){ + + # Full Project relations for @nameCsproj ```mermaid flowchart @name -click @nameCsproj "@prefix/Projects/@nameCsproj/ProjectReferences" "@relativePath" +%% click @nameCsproj "@prefix/Projects/@nameCsproj/ProjectReferences" "@relativePath" @foreach (var rel in Model.AlphabeticalProjectsReferences) { @@ -93,7 +109,8 @@ click @nameCsproj "@prefix/Projects/@nameCsproj/ProjectReferences" "@relativePat } ``` - + +} [Packages](Packages)