HCV- Postmortem–part 8

As I look below , the code is a small part of what has been done – documentation, test, CI /CD

The src folder has this number of lines / words ( obtained with Powershell

Get-ChildItem -r “src” |?{!$_.PSIsContainer} | Select-Object { Get-Content $_.FullName  | Measure-Object -Line -Word  | Select-Object  -Property Lines,Words }

 

@{Lines=6; Words=6}
@{Lines=20; Words=112}
@{Lines=36; Words=154}
@{Lines=8; Words=39}
@{Lines=36; Words=131}
@{Lines=27; Words=53}
@{Lines=35; Words=135}
@{Lines=33; Words=86}
@{Lines=24; Words=84}
@{Lines=9; Words=14}
@{Lines=10; Words=16}
@{Lines=18; Words=78}
@{Lines=16; Words=31}
@{Lines=24; Words=45}
@{Lines=63; Words=143}
@{Lines=11; Words=41}
@{Lines=35; Words=86}
@{Lines=37; Words=65}
@{Lines=50; Words=99}
@{Lines=15; Words=30}

( And does not count the yaml for CI )

That counts for 513 lines and 1448 words…

So the code is a small part od the application …

 

HealthCheckVersion

Health Check for Version
 NameLink
1Idea and Githubhttp://msprogrammer.serviciipeweb.ro/2020/07/20/healthcheckversion-idea-part-1/
2Documentationhttp://msprogrammer.serviciipeweb.ro/2020/07/21/healthcheckversiondocumentation-part-2/
3Testshttp://msprogrammer.serviciipeweb.ro/2020/07/22/hcv-adding-testspart-3/
4Codehttp://msprogrammer.serviciipeweb.ro/2020/07/23/hcv-adding-codepart-4/
5Test Applicationhttp://msprogrammer.serviciipeweb.ro/2020/07/27/hcvadding-test-applicationpart-5/
6CIhttp://msprogrammer.serviciipeweb.ro/2020/07/28/hcvautomatic-cipart-6/
7NuGethttp://msprogrammer.serviciipeweb.ro/2020/07/29/hcvpreparing-for-nugetpart-7/
8PostMortemhttp://msprogrammer.serviciipeweb.ro/2020/07/30/hcv-postmortempart-8/