Skip to content

Commit

Permalink
#7
Browse files Browse the repository at this point in the history
  • Loading branch information
nicollasricas committed Feb 2, 2022
1 parent 9e1787a commit 43c4a25
Show file tree
Hide file tree
Showing 5 changed files with 845 additions and 821 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.3.3] - 2022-02-02

### Changed

- Fixed broken actions due to command arguments.

## [3.3.2] - 2022-01-29

### Added
Expand Down
2 changes: 1 addition & 1 deletion StreamDeckVS/ExecuteCommandKey.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private int GetVisualStudioPIDFromPipeLink(string link)

private bool IsLinkedByPipe(string arguments) => arguments.Contains(@"\\.\pipe\Microsoft-VisualStudio-Debug-Console-");

private void ExecuteCommand(DTE dte, ExecuteCommandSettings settings) => dte?.ExecuteCommand(settings.Command, settings.CommandArgs);
private void ExecuteCommand(DTE dte, ExecuteCommandSettings settings) => dte?.ExecuteCommand(settings.Command, settings.CommandArgs ?? "");

private bool IsProcessVisualStudio(int processId)
{
Expand Down
Loading

0 comments on commit 43c4a25

Please sign in to comment.