Dotnet: Revision history

Jump to navigation Jump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

1 March 2023

28 February 2023

16 February 2023

22 January 2023

  • curprev 10:3810:38, 22 January 2023MkWikiEnSysOp talk contribs 479 bytes +479 Created page with "Notes about Microsoft's "dotnet" system. == Code Coverage == === Prerequisites === dotnet tool install -g dotnet-reportgenerator-globaltool === Performing === dotnet test --collect:"XPlat Code Coverage" This command creates a file with the name "coverage.cobertura.xml". reportgenerator -reports:"./path/to/coverage.cobertura.xml" -targetdir:"coveragereport" -reporttypes:Html This command creates a HTML report in directory "coveragereport". Category:Programmi..."