Skip to content

Commit 9499716

Browse files
committed
some chars need to be escaped in comments
1 parent 7270f1d commit 9499716

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

CodingSeb.ExpressionEvaluator/CodingSeb.ExpressionEvaluator.csproj

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,7 @@
1919
<PackageIconUrl>https://github.com/codingseb/ExpressionEvaluator/blob/master/Icon.png?raw=true</PackageIconUrl>
2020
<PackageIcon>Icon.png</PackageIcon>
2121
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
22-
<PackageReleaseNotes>* OptionInlineNamespacesEvaluationActive become OptionInlineNamespacesEvaluationRule and allow more possibilities with the addition of InlineNamespacesList
23-
This option can now be one of those :
24-
- InlineNamespacesEvaluationRule.AllowAll
25-
- InlineNamespacesEvaluationRule.AllowOnlyInlineNamespacesList
26-
- InlineNamespacesEvaluationRule.BlockOnlyInlineNamespacesList
27-
- InlineNamespacesEvaluationRule.BlockAll
28-
* Throw better exception and get better exception context with ExceptionDispatchInfo on TargetInvocationException.InnerException and BubbleExceptionContainer
22+
<PackageReleaseNotes>* net45 target is now net452 because (net45 is not supported anymore)
2923
* Add net5.0 and net6.0 as target</PackageReleaseNotes>
3024
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
3125
<RepositoryUrl>https://github.com/codingseb/ExpressionEvaluator</RepositoryUrl>

CodingSeb.ExpressionEvaluator/ExpressionEvaluator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -779,21 +779,21 @@ public bool OptionNewFunctionEvaluationActive
779779
public bool OptionEvaluateFunctionActive { get; set; } = true;
780780

781781
/// <summary>
782-
/// If <c>true</c> allow to assign a value to a variable in the Variable disctionary with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)
782+
/// If <c>true</c> allow to assign a value to a variable in the Variable disctionary with (=, +=, -=, *=, /=, %=, &amp;=, |=, ^=, &lt;&lt;=, &gt;&gt;=, ++ or --)
783783
/// If <c>false</c> unactive this functionality
784784
/// By default : true
785785
/// </summary>
786786
public bool OptionVariableAssignationActive { get; set; } = true;
787787

788788
/// <summary>
789-
/// If <c>true</c> allow to set/modify a property or a field value with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)
789+
/// If <c>true</c> allow to set/modify a property or a field value with (=, +=, -=, *=, /=, %=, &amp;=, |=, ^=, &lt;&lt;=, &gt;&gt;=, ++ or --)
790790
/// If <c>false</c> unactive this functionality
791791
/// By default : true
792792
/// </summary>
793793
public bool OptionPropertyOrFieldSetActive { get; set; } = true;
794794

795795
/// <summary>
796-
/// If <c>true</c> allow to assign a indexed element like Collections, List, Arrays and Dictionaries with (=, +=, -=, *=, /=, %=, &=, |=, ^=, <<=, >>=, ++ or --)
796+
/// If <c>true</c> allow to assign a indexed element like Collections, List, Arrays and Dictionaries with (=, +=, -=, *=, /=, %=, &amp;=, |=, ^=, &lt;&lt;=, &gt;&gt;=, ++ or --)
797797
/// If <c>false</c> unactive this functionality
798798
/// By default : true
799799
/// </summary>

0 commit comments

Comments
 (0)