Skip to content

Commit

Permalink
Fix a bug on InstallPackageAsync() method (#1335)
Browse files Browse the repository at this point in the history
  • Loading branch information
doggy8088 authored Apr 11, 2022
1 parent 1bfbf16 commit 5f7bc70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/GUI/Shared/Helpers/NuGetHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public async Task<bool> InstallPackageAsync(string packageId, Project project, V
var args = $"add {project.FullPath} package {packageId} ";
if (version != null)
{
args += "-v" + version.ToString(3);
args += "-v " + version.ToString(3);
}

var startInfo = new ProcessStartInfo
Expand Down

0 comments on commit 5f7bc70

Please sign in to comment.