-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
09935d5
commit b245261
Showing
17 changed files
with
176 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,3 @@ | |
using System.Threading.Tasks; | ||
|
||
namespace NPA.HtmlData; | ||
internal class globals | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
| ||
using Microsoft.Extensions.Logging; | ||
using NetPackageAnalyzerExportHTML; | ||
using System.Runtime.InteropServices; | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/NetPackageAnalyzer/NetPackageAnalyzerExportHTML/MDSummaryData.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
| ||
namespace NetPackageAnalyzerExportHTML; | ||
internal class MDSummaryData | ||
{ | ||
public string nameSolution { get; set; }=string.Empty; | ||
public bool ExistsMajorDiffers { get; internal set; } | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
src/NetPackageAnalyzer/NetPackageAnalyzerExportHTML/Templates/MDSummary.cshtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
@inherits RazorBlade.PlainTextTemplate<MDSummaryData> | ||
@{ | ||
var name = Model.nameSolution; | ||
var nameFolder = name + "_summary"; | ||
} | ||
|
||
# Summary for @name | ||
|
||
## Project relations | ||
|
||
![Project relations](./images/@(nameFolder)/projects-without-tests.png) | ||
|
||
|
||
|
||
## Project Data | ||
|
||
### Public Classes per project | ||
|
||
![Class per project](./images/@(nameFolder)/Public-class-per-project.png) | ||
|
||
### Number lines per project | ||
|
||
![Number lines per project](./images/@(nameFolder)/Number-exec-lines-per-project.png) | ||
|
||
|
||
## Class data | ||
|
||
### Public methods per class | ||
|
||
![Public methods](./images/@(nameFolder)/Public-methods-per-class.png) | ||
|
||
### Number methods per class | ||
|
||
![Number-methods-per-class](./images/@(nameFolder)/Number-methods-per-class.png) | ||
|
||
### Number lines per class | ||
![Number-exec-lines-per-class](./images/@(nameFolder)/Number-exec-lines-per-class.png) | ||
|
||
## Method data | ||
|
||
### Cyclomatic complexity per method | ||
|
||
![Cyclomatic-Complexity-for-Method](./images/@(nameFolder)/Cyclomatic-Complexity-for-Method.png) | ||
|
||
### Maintainability index per method | ||
![Maintainability-for-Method](./images/@(nameFolder)/Maintainability-for-Method.png) | ||
|
||
### Number lines per method | ||
![Number-exec-lines-per-method](./images/@(nameFolder)/Number-exec-lines-per-method.png) | ||
|
||
|
||
|
||
## Commits | ||
![Number-exec-lines-per-method](./images/@(nameFolder)/commits-year-project.png) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters