Skip to content

Commit

Permalink
Always use server when version >= 28
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Apr 12, 2024
1 parent 525c28b commit 6796872
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ private ICSharpierProcess setupCSharpierProcess(String directory, String version
var installedVersion = version.split("\\.");
var versionWeCareAbout = Integer.parseInt(installedVersion[1]);

if (CSharpierSettings.getInstance(this.project).getUseServer()) {
if (versionWeCareAbout >= 28 || CSharpierSettings.getInstance(this.project).getUseServer()) {
return new CSharpierProcessServer(customPath, this.project);
}

Expand Down

0 comments on commit 6796872

Please sign in to comment.