-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring/quality of life changes (#26)
* Updated squirrel.windows to 1.8.0 * Updated further nuget packages * Added new resharper style settings * Applied new code styles to whole solution * Fixed resharper async/await issues
- Loading branch information
Luka Grabarevic
authored
Jul 9, 2018
1 parent
7487f5c
commit 6ffc68f
Showing
145 changed files
with
1,066 additions
and
2,487 deletions.
There are no files selected for viewing
17 changes: 3 additions & 14 deletions
17
BuildsAppReborn.Access.UI/Base/View/BuildProviderViewBase.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,18 @@ | ||
using System; | ||
using System.Windows.Controls; | ||
|
||
using BuildsAppReborn.Access.UI.Resources; | ||
using BuildsAppReborn.Contracts.UI; | ||
|
||
namespace BuildsAppReborn.Access.UI.View | ||
{ | ||
internal abstract class BuildProviderViewBase : UserControl, IBuildProviderView | ||
{ | ||
#region Implementation of IBuildProviderView | ||
public String Header => Resource.TfsConnectBoxLabel; | ||
|
||
public virtual IBuildProviderViewModel ViewModel | ||
{ | ||
get | ||
{ | ||
return (IBuildProviderViewModel)DataContext; | ||
} | ||
protected set | ||
{ | ||
DataContext = value; | ||
} | ||
get { return (IBuildProviderViewModel) DataContext; } | ||
protected set { DataContext = value; } | ||
} | ||
|
||
public String Header => Resource.TfsConnectBoxLabel; | ||
|
||
#endregion | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.