-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
645cf64
commit 83b9de1
Showing
49 changed files
with
1,032 additions
and
737 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ public enum BuildState | |
NotStarted = 0, | ||
InProgress = 1, | ||
Done = 2, | ||
Cancelled = 3 | ||
Cancelled = 3, | ||
Failed = 4 | ||
} | ||
} |
24 changes: 24 additions & 0 deletions
24
src/BuildVision.Contracts/Models/IBuildInformationModel.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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
using System; | ||
|
||
namespace BuildVision.Contracts.Models | ||
{ | ||
public interface IBuildInformationModel | ||
{ | ||
BuildActions BuildAction { get; set; } | ||
DateTime? BuildFinishTime { get; set; } | ||
BuildScopes BuildScope { get; set; } | ||
DateTime? BuildStartTime { get; set; } | ||
BuildState CurrentBuildState { get; set; } | ||
int ErrorCount { get; set; } | ||
int FailedProjectsCount { get; set; } | ||
int MessagesCount { get; set; } | ||
BuildResultState ResultState { get; } | ||
string StateMessage { get; set; } | ||
int SucceededProjectsCount { get; set; } | ||
int UpToDateProjectsCount { get; set; } | ||
int WarnedProjectsCount { get; set; } | ||
int WarningsCount { get; set; } | ||
|
||
BuildResultState GetBuildState(); | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
namespace BuildVision.Contracts.Models | ||
{ | ||
public interface ISolutionModel | ||
{ | ||
string FileName { get; set; } | ||
string FullName { get; set; } | ||
bool IsEmpty { get; set; } | ||
string Name { get; set; } | ||
} | ||
} |
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
13 changes: 13 additions & 0 deletions
13
src/BuildVision.Exports/Providers/IBuildInformationProvider.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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Collections.Generic; | ||
using BuildVision.Contracts.Models; | ||
|
||
namespace BuildVision.Exports.Providers | ||
{ | ||
public interface IBuildInformationProvider | ||
{ | ||
void BuildFinished(bool success, bool modified, bool canceled); | ||
void BuildStarted(uint dwAction); | ||
void BuildUpdate(); | ||
IBuildInformationModel GetBuildInformationModel(); | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.