Skip to content

Commit e9159ce

Browse files
author
ecfan
committed
Updates per feedback
1 parent e552bd7 commit e9159ce

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

articles/logic-apps/rules-engine/add-rules-control-functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide describes how to optimize code for your rules engine by using control
2626

2727
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
2828

29-
- The XML file that contains the rule store that you want to work on.
29+
- The XML file that contains the ruleset that you want to work on.
3030

3131
To add facts, specify their values in the XML documents that you point at from the RuleSet Explorer window. Or, you can use a fact creator to supply your rules engine with an array that contains .NET objects as facts. For more information, see [Build fact creators and retrievers](build-fact-creators-retrievers.md).
3232

articles/logic-apps/rules-engine/add-rules-operators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide describes how to add arithmetic and logical operators to the rules in
2626

2727
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
2828

29-
- An XML file that contains the rule store that you want to work on.
29+
- The XML file that contains the ruleset that you want to work on.
3030

3131
<a name="add-arithmetic-operator"></a>
3232

articles/logic-apps/rules-engine/build-fact-creators-retrievers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,15 @@ The following sample code shows how to assert .NET and XML facts using a fact re
7878
using System;
7979
using System.Xml;
8080
using System.Collections;
81-
using Microsoft.RuleEngine;
81+
using Microsoft.Azure.Workflows.RuleEngine;
8282
using System.IO;
8383
using System.Data;
8484
using System.Data.SqlClient;
8585
namespace MyApplication.FactRetriever
8686
{
8787
public class myFactRetriever:IFactRetriever
8888
{
89-
public object UpdateFacts(RuleSetInfo rulesetInfo, Microsoft.RuleEngine.RuleEngine engine, object factsHandleIn)
89+
public object UpdateFacts(RuleSetInfo rulesetInfo, RuleEngine engine, object factsHandleIn)
9090
{
9191
object factsHandleOut;
9292
if (factsHandleIn == null)

articles/logic-apps/rules-engine/create-manage-vocabularies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This guide shows how to create and define vocabularies that are placed in the sh
2828

2929
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
3030

31-
- An XML file that contains the rule store where you want to add a vocabulary.
31+
- The XML file that contains the rule store where you want to add a vocabulary.
3232

3333
## How does a vocabulary make rules easier to read and understand?
3434

articles/logic-apps/rules-engine/create-rules.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,12 @@ This how-to guide provides an overview for how rules work and how to create a ru
2828

2929
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
3030

31-
- The XML file that contains the rule store that you want to work on.
31+
- If you have an existing ruleset that you want to work on, you need the XML file that contains that ruleset. Otherwise, this guide shows you how to create a new ruleset, which you save as an XML file.
3232

3333
> [!IMPORTANT]
3434
>
35-
> If your XML file depends on any .NET assemblies, or if the assemblies that you
36-
> use to add facts have other dependencies, make sure to keep all these files
35+
> If your existing XML file depends on any .NET assemblies, or if the assemblies that
36+
> you use to add facts have other dependencies, make sure to keep all these files
3737
> in the same folder and in a directory local to the Microsoft Rules Composer.
3838
3939
## What is a rule?
@@ -86,6 +86,8 @@ A *ruleset* is a set of rules that you group together based on domain, bounded c
8686

8787
The Microsoft Rules Composer creates a new empty ruleset with a ruleset version numbered **1.0** as the default version.
8888

89+
1. Save your rule store. On the **Rule Store** menu, select **Save**, which creates an XML file for your rule store.
90+
8991
The following table describes other RuleSet Explorer commands that you can use to work with rulesets:
9092

9193
| Task | Command |

articles/logic-apps/rules-engine/perform-advanced-ruleset-tasks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ This guide describes more advanced operations that you can perform on rulesets i
2626

2727
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
2828

29-
- An XML file that contains the rule store that you want to work on.
29+
- The XML file that contains the ruleset that you want to work on.
3030

3131
## Copy a ruleset version
3232

articles/logic-apps/rules-engine/test-rulesets.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ If you wait to test your rules all at the same time or when you're all done, and
2929

3030
- Download and install the [Microsoft Rules Composer](https://go.microsoft.com/fwlink/?linkid=2274238).
3131

32-
- The XML file that contains the rule store that you want to work on and the facts that you want to test.
32+
- The XML file that contains the ruleset that you want to work on and the facts that you want to test.
3333

34-
To add facts, specify their values in the XML documents that you point at from the RuleSet Explorer window. Or, you can use a fact creator to supply your rules engine with an array that contains .NET objects as facts. For more information, see [Build fact creators and retrievers](build-fact-creators-retrievers.md).
34+
To add facts, specify their values in the XML documents that you point at from the RuleSet Explorer window. Or, you can use a fact creator to supply your rules engine with an array that contains .NET objects to use as facts. For more information, see [Build fact creators and retrievers](build-fact-creators-retrievers.md).
3535

3636
## Test a ruleset version
3737

0 commit comments

Comments
 (0)