mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-20 19:55:00 +00:00
feature: add powershell support for Windows
This commit is contained in:
parent
8f70778ec2
commit
4ac705f8ca
13 changed files with 88 additions and 46 deletions
|
@ -219,6 +219,19 @@ namespace SourceGit.ViewModels
|
|||
}
|
||||
}
|
||||
|
||||
public bool UsePowershellOnWindows
|
||||
{
|
||||
get => Native.OS.UsePowershellOnWindows;
|
||||
set
|
||||
{
|
||||
if (Native.OS.UsePowershellOnWindows != value)
|
||||
{
|
||||
Native.OS.UsePowershellOnWindows = value;
|
||||
OnPropertyChanged(nameof(UsePowershellOnWindows));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public int ExternalMergeToolType
|
||||
{
|
||||
get => _externalMergeToolType;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue