File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ import { getDotnetInfo } from '../shared/utils/getDotnetInfo';
16
16
import { readFile } from 'fs/promises' ;
17
17
import { RuntimeInfo } from '../shared/utils/dotnetInfo' ;
18
18
19
- export const DotNetRuntimeVersion = '8.0' ;
19
+ export const DotNetRuntimeVersion = '8.0.10 ' ;
20
20
21
21
interface IDotnetAcquireResult {
22
22
dotnetPath : string ;
@@ -166,7 +166,7 @@ export class DotnetRuntimeExtensionResolver implements IHostExecutableResolver {
166
166
}
167
167
168
168
// Verify that the dotnet we found includes a runtime version that is compatible with our requirement.
169
- const requiredRuntimeVersion = semver . parse ( `${ DotNetRuntimeVersion } .0 ` ) ;
169
+ const requiredRuntimeVersion = semver . parse ( `${ DotNetRuntimeVersion } ` ) ;
170
170
if ( ! requiredRuntimeVersion ) {
171
171
throw new Error ( `Unable to parse minimum required version ${ DotNetRuntimeVersion } ` ) ;
172
172
}
You can’t perform that action at this time.
0 commit comments