diff --git a/src/utils/dotnetUtils.ts b/src/utils/dotnetUtils.ts index b3d008d..b3d7437 100644 --- a/src/utils/dotnetUtils.ts +++ b/src/utils/dotnetUtils.ts @@ -56,7 +56,7 @@ export namespace dotnetUtils { for (const version of versions) { const versionNumber = version.split(' ')[1]; if (compareVersion(versionNumber, minVersion) >= 0) { - return false; + return true; } } } catch (error) {