Skip to content

Commit

Permalink
fixed build
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanKert committed Apr 27, 2019
1 parent b1b0530 commit edc8082
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/BuildVision.UI/Models/BuildInformationModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,14 @@ public IProjectItem CurrentProject
get => _currentProject;
set => SetProperty(ref _currentProject, value);
}


private Guid _buildId = Guid.Empty;
public Guid BuildId
{
get => _buildId;
set => SetProperty(ref _buildId, value);
}

private string GetStateIconKey()
{
var resultState = GetBuildResultState();
Expand Down

0 comments on commit edc8082

Please sign in to comment.