-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathArchiMetrics.Analysis.symbols.nuspec
80 lines (70 loc) · 2.3 KB
/
ArchiMetrics.Analysis.symbols.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>ArchiMetrics.Analysis</id>
<title>Roslyn Code Analysis</title>
<version>1.0.1.0</version>
<authors>Jacob Reimers</authors>
<owners>Jacob Reimers</owners>
<projectUrl>https://github.com/jjrdk/ArchiMetrics</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>http://www.opensource.org/licenses/MS-PL</licenseUrl>
<description>The package provides code analysis features using the Roslyn CTP.
The project calculates the following metrics:
Project Level
- Cyclomatic Complexity
- LinesOfCode
- Maintainability Index
- Project Dependencies
- Type Couplings
- Abstractness
- Afferent Coupling
- Efferent Coupling
- RelationalCohesion
Namespace Level
- Cyclomatic Complexity
- LinesOfCode
- Maintainability Index
- Project Dependencies
- Type Couplings
- Depth of Inheritance
- Abstractness
Type Level
- Cyclomatic Complexity
- LinesOfCode
- Maintainability Index
- Project Dependencies
- Type Couplings
- Depth Of Inheritance
- Type Coupling
- Afferent Coupling
- Efferent Coupling
- Instability
Member Level
- Cyclomatic Complexity
- Lines Of Code
- Maintainability Index
- Project Dependencies
- Type Couplings
- Number Of Parameters
- Number Of Local Variables
- Afferent Coupling
- Halstead Metrics</description>
<summary>The package provides code analysis features using Roslyn.</summary>
<releaseNotes />
<tags>metrics analysis roslyn</tags>
<dependencies>
<dependency id="Microsoft.CodeAnalysis.CSharp.Workspaces" version="1.0.0.0" />
</dependencies>
</metadata>
<files>
<file src="artifacts\4.5.2\Release\ArchiMetrics.Common.dll" target="lib\Net452" />
<file src="artifacts\4.5.2\Release\ArchiMetrics.Analysis.dll" target="lib\Net452" />
<file src="artifacts\4.5.2\Release\ArchiMetrics.Common.pdb" target="lib\Net452" />
<file src="artifacts\4.5.2\Release\ArchiMetrics.Analysis.pdb" target="lib\Net452" />
<file src="artifacts\4.5.2\Release\ArchiMetrics.Common.xml" target="lib\Net452" />
<file src="artifacts\4.5.2\Release\ArchiMetrics.Analysis.xml" target="lib\Net452" />
<file src="ArchiMetrics.Common\**\*.cs" target="src\ArchiMetrics.Common" />
<file src="ArchiMetrics.Analysis\**\*.cs" target="src\ArchiMetrics.Analysis" />
</files>
</package>