We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8345f8e commit 4f95a1bCopy full SHA for 4f95a1b
build.config
@@ -1,2 +1,2 @@
1
#!/usr/bin/env bash
2
-DOTNET_VERSION=2.1.803,3.1.101
+DOTNET_VERSION=2.1.803,3.1.102
build.ps1
@@ -65,7 +65,7 @@ $PSScriptRoot = Split-Path $MyInvocation.MyCommand.Path -Parent
65
foreach($line in Get-Content (Join-Path $PSScriptRoot 'build.config'))
66
{
67
if ($line -like 'DOTNET_VERSION=*') {
68
- $DotNetVersion = $line.SubString(15).Split(',')
+ $DotNetVersion = $line.SubString("DOTNET_VERSION=".Length).Split(',')
69
}
70
71
0 commit comments