This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The dependency property for the FolderBox was not correctly set up so the bindings did not update The analyzer was applied to _all_ projects The analyzer was registered twice Added a messagebox informing that the whitelist refresh command is not yet available Added a "deployment complete" message box
- Loading branch information
Malware
committed
Jul 25, 2017
1 parent
c1de280
commit 3d8d3de
Showing
45 changed files
with
546 additions
and
231 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 |
---|---|---|
@@ -1,16 +1,43 @@ | ||
using System; | ||
using System.Runtime.Serialization; | ||
|
||
namespace MDK.Build { | ||
namespace MDK.Build | ||
{ | ||
/// <summary> | ||
/// Represents exceptions happening during a build | ||
/// </summary> | ||
[Serializable] | ||
public class BuildException : Exception | ||
{ | ||
public BuildException() { } | ||
public BuildException(string message) : base(message) { } | ||
public BuildException(string message, Exception inner) : base(message, inner) { } | ||
/// <summary> | ||
/// Creates an instance of <see cref="BuildException"/> | ||
/// </summary> | ||
public BuildException() | ||
{ } | ||
|
||
/// <summary> | ||
/// Creates an instance of <see cref="BuildException"/> | ||
/// </summary> | ||
/// <param name="message"></param> | ||
public BuildException(string message) : base(message) | ||
{ } | ||
|
||
/// <summary> | ||
/// Creates an instance of <see cref="BuildException"/> | ||
/// </summary> | ||
/// <param name="message"></param> | ||
/// <param name="inner"></param> | ||
public BuildException(string message, Exception inner) : base(message, inner) | ||
{ } | ||
|
||
/// <summary> | ||
/// Creates an instance of <see cref="BuildException"/> | ||
/// </summary> | ||
/// <param name="info"></param> | ||
/// <param name="context"></param> | ||
protected BuildException( | ||
SerializationInfo info, | ||
StreamingContext context) : base(info, context) { } | ||
StreamingContext context) : base(info, context) | ||
{ } | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -1,12 +1,23 @@ | ||
using System; | ||
using Microsoft.CodeAnalysis; | ||
using Microsoft.CodeAnalysis.CSharp.Syntax; | ||
|
||
namespace MDK.Build | ||
{ | ||
/// <summary> | ||
/// Flags altering the behavior of <see cref="AnalysisExtensions.GetFullName(ISymbol, DeclarationFullNameFlags)"/> and <see cref="AnalysisExtensions.GetFullName(TypeDeclarationSyntax, DeclarationFullNameFlags)"/> | ||
/// </summary> | ||
[Flags] | ||
public enum DeclarationFullNameFlags | ||
{ | ||
/// <summary> | ||
/// Default behavior. Returns a complete, fully qualified name, including the namespace. | ||
/// </summary> | ||
Default = 0b0000, | ||
|
||
/// <summary> | ||
/// Only generates the name up to the outermost type declaration. Does not include the namespace. | ||
/// </summary> | ||
WithoutNamespaceName = 0b0001 | ||
} | ||
} | ||
} |
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.