Skip to content

Commit

Permalink
Renamed PostProcessingMSBuild -> PostProcessing
Browse files Browse the repository at this point in the history
  • Loading branch information
3F committed Sep 23, 2019
1 parent 2c7941a commit 10afc23
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions SobaScript/Components/ComponentAbstract.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ public virtual bool Enabled
} = true;

/// <summary>
/// Allows post-processing with MSBuild core.
/// Allows post-processing with used evaluator engine.
/// Some components may require immediate processing with evaluation before passing control to the next level.
/// </summary>
public virtual bool PostProcessingMSBuild
public virtual bool PostProcessing
{
get;
set;
Expand Down
4 changes: 2 additions & 2 deletions SobaScript/Components/IComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ public interface IComponent
bool ARegex { get; }

/// <summary>
/// Allows post-processing with MSBuild core.
/// Allows post-processing with used evaluator engine.
/// Some components may require immediate processing with evaluation before passing control to the next level.
/// </summary>
bool PostProcessingMSBuild { get; set; }
bool PostProcessing { get; set; }

/// <summary>
/// Will be located before deepening if true.
Expand Down
2 changes: 1 addition & 1 deletion SobaScript/Soba.cs
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ private protected string selector(SData data)

foreach(IComponent c in Components)
{
c.PostProcessingMSBuild = data.postEvM;
c.PostProcessing = data.postEvM;

if(!c.BeforeDeepening) {
continue;
Expand Down
2 changes: 1 addition & 1 deletion SobaScriptTest/Stubs/StubPrioZComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ internal sealed class StubPrioZComponent: ComponentAbstract
{
public override string Activator => nameof(StubPrioZComponent);

public override string Eval(string data) => Value.From(PostProcessingMSBuild);
public override string Eval(string data) => Value.From(PostProcessing);

public StubPrioZComponent()
{
Expand Down

0 comments on commit 10afc23

Please sign in to comment.