From 350bf4a646f1cdd90033460aa474cee03c33a3ef Mon Sep 17 00:00:00 2001 From: Darii Nurgaleev <50947177+Darleev@users.noreply.github.com> Date: Mon, 22 Jun 2020 16:41:34 +0700 Subject: [PATCH] Change .NET software description. (#1078) --- images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 b/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 index 644080be4..646a35182 100644 --- a/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 +++ b/images/win/scripts/SoftwareReport/SoftwareReport.Generator.ps1 @@ -155,7 +155,8 @@ $markdown += New-MDHeader ".NET Core Runtime" -Level 3 Get-DotnetRuntimes | Foreach-Object { $path = $_.Path $versions = $_.Versions - $markdown += "``Location $path``" + $markdown += "``Type: Developer Pack``" + $markdown += "``Location: $path``" $markdown += New-MDNewLine $markdown += New-MDList -Lines $versions -Style Unordered }