Skip to content

Commit

Permalink
Bump version to 7.0.0-alpha010
Browse files Browse the repository at this point in the history
  • Loading branch information
forki committed Feb 7, 2022
1 parent 67d2ad7 commit 90d548a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
2 changes: 1 addition & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#### 7.0.0-alpha009 - 2022-12-07
#### 7.0.0-alpha010 - 2022-12-07
* Support as .NET 6.0 tool
* Auto-Restore after paket install an paket update

Expand Down
11 changes: 1 addition & 10 deletions src/Paket.Core/Installation/UpdateProcess.fs
Original file line number Diff line number Diff line change
Expand Up @@ -234,18 +234,9 @@ let SelectiveUpdate(dependenciesFile : DependenciesFile, alternativeProjectRoot,
let runDotnet arguments =
let result =
let p = new System.Diagnostics.Process()
p.StartInfo.UseShellExecute <- false
p.StartInfo.FileName <- "dotnet"
p.StartInfo.Arguments <- arguments
p.StartInfo.RedirectStandardOutput <- true
p.StartInfo.RedirectStandardError <- true

p.ErrorDataReceived.Add(fun d ->
if not (isNull d.Data) then tracefn "%s" d.Data)
p.OutputDataReceived.Add(fun d ->
if not (isNull d.Data) then tracefn "%s" d.Data)
p.StartInfo.Arguments <- arguments
p.Start() |> ignore
let standardOutput, errorOutput = p.StandardOutput.ReadToEnd(), p.StandardError.ReadToEnd()
p.WaitForExit()
p.ExitCode

Expand Down

0 comments on commit 90d548a

Please sign in to comment.