Dynamics 365 Blog - Posts from March 2020
These posts are machine-translated.
Remove label file on a development environmentIf you should get into the embarrassment of having to delete a label file on a development environment, you should case check afterwards whether fragments of this label file are still left in the following directories:
|
Simple time measurement in codeTo measure the execution time of a function/logic, you can use System.Diagnostics.Stopwatch: System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch(); watch.Start(); // ... do something watch.Stop(); info(strFmt("%1ms", watch.ElapsedMilliseconds)); |
[BPFrameworkFatalException]:A fatal exception occured in the Best Practices frameworkI have had the problem in the past that the BP test did not find all expected deviations or even the following error was issued:
In all these cases it has helped to disable the following rule: BPCheckTableDimensionFields I found the decisive tip in the Dynamics 365 Community |
|
|
|
|
|
|
|
If the following error occurs during a platform update of a local VPC...
...it might help to start the Azure storage emulator and then continue the update process at the failed step.