Skip to content

Commit

Permalink
Removing error debug write [release]
Browse files Browse the repository at this point in the history
  • Loading branch information
timheuer committed Feb 15, 2022
1 parent 884b12b commit cceac0a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions AddActionsWorkflow/Commands/MyCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,6 @@ protected override async Task ExecuteAsync(OleMenuCmdEventArgs e)

var workflowName = $"build-{Guid.NewGuid().ToString().Substring(0, 5)}";
proc.StartInfo.Arguments = $"new workflow -n {workflowName} --no-update-check";
proc.ErrorDataReceived += (s, e) =>
{
Debug.WriteLine(e.ToString());
};
proc.Start();

// add solution folder
Expand Down

0 comments on commit cceac0a

Please sign in to comment.