Skip to content

Commit

Permalink
removed c# feature which was causing a failing build on AppVeyor
Browse files Browse the repository at this point in the history
  • Loading branch information
brianlagunas committed Jul 22, 2015
1 parent f539b86 commit 3cdfede
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,13 @@ public TestableCommandBehaviorBase(UIElement targetObject)

class TestCommand : ICommand
{
public bool CanExecuteResult { get; set; } = true;
bool _canExecte = true;
public bool CanExecuteResult
{
get { return _canExecte; }
set { _canExecte = value; }
}

public object CanExecuteCalledWithParameter { get; set; }
public bool CanExecute(object parameter)
{
Expand Down

0 comments on commit 3cdfede

Please sign in to comment.