-
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
f227aa9
commit 645cf64
Showing
84 changed files
with
2,316 additions
and
2,479 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 was deleted.
Oops, something went wrong.
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,22 @@ | ||
namespace BuildVision.Contracts | ||
{ | ||
public enum BuildResultState | ||
{ | ||
Unknown, | ||
|
||
RebuildSucceeded, | ||
RebuildSucceededWithErrors, | ||
RebuildFailed, | ||
RebuildCancelled, | ||
|
||
BuildSucceeded, | ||
BuildSucceededWithErrors, | ||
BuildFailed, | ||
BuildCancelled, | ||
|
||
CleanSucceeded, | ||
CleanSucceededWithErrors, | ||
CleanFailed, | ||
CleanCancelled | ||
} | ||
} |
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ public enum BuildState | |
{ | ||
NotStarted = 0, | ||
InProgress = 1, | ||
Done = 2 | ||
Done = 2, | ||
Cancelled = 3 | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net472</TargetFramework> | ||
<SignAssembly>true</SignAssembly> | ||
<AssemblyOriginatorKeyFile>Key.snk</AssemblyOriginatorKeyFile> | ||
</PropertyGroup> | ||
|
||
</Project> |
Binary file not shown.
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,14 @@ | ||
namespace BuildVision.Exports.Services | ||
{ | ||
public interface IBuildService | ||
{ | ||
void ShowGridColumnsSettingsPage(); | ||
void ShowGeneralSettingsPage(); | ||
void BuildSolution(); | ||
void CleanSolution(); | ||
void RebuildSolution(); | ||
void CancelBuildSolution(); | ||
void ProjectCopyBuildOutputFilesToClipBoard(); | ||
void RaiseCommandForSelectedProject(); | ||
} | ||
} |
4 changes: 2 additions & 2 deletions
4
...ion/Core/IStatusBarNotificationService.cs → .../Sevices/IStatusBarNotificationService.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,8 +1,8 @@ | ||
namespace BuildVision.Core | ||
namespace BuildVision.Exports.Services | ||
{ | ||
public interface IStatusBarNotificationService | ||
{ | ||
void ShowText(string str); | ||
void ShowTextWithFreeze(string str); | ||
} | ||
} | ||
} |
14 changes: 14 additions & 0 deletions
14
src/BuildVision.Exports/ViewModels/IBuildVisionPaneViewModel.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,14 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Collections.ObjectModel; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using BuildVision.Exports.ViewModels; | ||
|
||
namespace BuildVision.Exports.ViewModels | ||
{ | ||
public interface IBuildVisionPaneViewModel : IViewModel | ||
{ | ||
} | ||
} |
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,9 @@ | ||
using System; | ||
using System.ComponentModel; | ||
|
||
namespace BuildVision.Exports.ViewModels | ||
{ | ||
public interface IViewModel : INotifyPropertyChanged | ||
{ | ||
} | ||
} |
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.