File tree Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Expand file tree Collapse file tree 4 files changed +6
-3
lines changed Original file line number Diff line number Diff line change
1
+ ### 0.0.4 - 29 April 2025
2
+ * Fix: String formatting had invalid indexes
3
+
1
4
### 0.0.3 - 29 April 2025
2
5
* Clean-up and move concrete classes to XrmPluginCore from XrmPluginCore.Abstractions
3
6
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ public override void Execute(IServiceProvider serviceProvider)
44
44
{
45
45
localcontext . Trace ( string . Format (
46
46
CultureInfo . InvariantCulture ,
47
- "No registered event found for Entity: {0}, Message: {2 } in {2}" ,
47
+ "No registered event found for Entity: {0}, Message: {1 } in {2}" ,
48
48
localcontext . PluginExecutionContext . PrimaryEntityName ,
49
49
localcontext . PluginExecutionContext . MessageName ,
50
50
ChildClassName ) ) ;
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public override void Execute(IServiceProvider serviceProvider)
60
60
{
61
61
localcontext . Trace ( string . Format (
62
62
CultureInfo . InvariantCulture ,
63
- "No registered event found for Entity: {0}, Message: {2 } in {3 }" ,
63
+ "No registered event found for Entity: {0}, Message: {1 } in {2 }" ,
64
64
localcontext . PluginExecutionContext . PrimaryEntityName ,
65
65
localcontext . PluginExecutionContext . MessageName ,
66
66
ChildClassName
Original file line number Diff line number Diff line change 1
- 0.0.3
1
+ 0.0.4
You can’t perform that action at this time.
0 commit comments