1
0
mirror of synced 2024-11-12 02:00:50 +01:00

Fix appveyor errors

This commit is contained in:
KillzXGaming 2019-03-27 19:14:28 -04:00
parent f7ac2527a1
commit 87be68531e
3 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@ -37,7 +37,10 @@ namespace Switch_Toolbox.Library.Forms
get; set;
}
public bool IsBound { get => Property != null; }
public bool IsBound
{
get { return Property != null; }
}
private PropertyInfo Property;
private object BoundObject;

View File

@ -96,7 +96,7 @@ namespace Switch_Toolbox.Library
_fileData.Position = 0;
return _fileData;
}
set => _fileData = value;
set { _fileData = value; }
}
}
}