Skip to content

Commit

Permalink
update to reference local EncodingType enum
Browse files Browse the repository at this point in the history
  • Loading branch information
steveshortt committed Feb 18, 2018
1 parent ed482bf commit 840c12a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions Synapse.Handler.CommandLine/Classes/RegexArguments.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
using System.Xml.Serialization;
using System.Xml;

using Synapse.Core;

namespace Synapse.Handlers.CommandLine
{
public class RegexArguments
Expand Down
4 changes: 2 additions & 2 deletions Synapse.Handler.CommandLine/CommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ public override object GetParametersInstance()
RegexArguments args = new RegexArguments();
args.Find = "bbb";
args.ReplaceWith = "yyy";
args.Encoding = EncodingType.None;
args.Encoding = Synapse.Handlers.CommandLine.EncodingType.None;
parms.Expressions.Add(args);

RegexArguments args2 = new RegexArguments();
args2.Find = "ccc";
args2.ReplaceWith = "zzz";
args2.Encoding = EncodingType.Base64;
args2.Encoding = Synapse.Handlers.CommandLine.EncodingType.Base64;
parms.Expressions.Add(args2);


Expand Down
2 changes: 1 addition & 1 deletion Synapse.Handler.CommandLine/ScriptHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public override object GetParametersInstance()
RegexArguments args = new RegexArguments();
args.Find = "xxx";
args.ReplaceWith = "aaa";
args.Encoding = EncodingType.Base64;
args.Encoding = Synapse.Handlers.CommandLine.EncodingType.Base64;

parms.Expressions.Add(args);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Classes\Enums\EncodingType.cs" />
<Compile Include="Classes\ScriptHandlerParameters.cs" />
<Compile Include="Classes\Enums\ScriptType.cs" />
<Compile Include="Classes\CommandHandlerConfig.cs" />
Expand Down

0 comments on commit 840c12a

Please sign in to comment.