wimpie3 Well-Known Member Licensed User Longtime User Jun 12, 2017 #1 I have two different apps. One of them seems to make use of the rapid debugger - the other one recompiles on every run. So I guess there must be some constraint somewhere? Are there certain things that make that the rapid debugger cannot be used?
I have two different apps. One of them seems to make use of the rapid debugger - the other one recompiles on every run. So I guess there must be some constraint somewhere? Are there certain things that make that the rapid debugger cannot be used?
Erel B4X founder Staff member Licensed User Longtime User Jun 14, 2017 #2 The rapid debugger is always used, the question is why it requires a full deployment each time. Are you sure that you are not forcing it with: #DebuggerForceFullDeployment attribute? Does it do a full deployment if you run your app, stop it and then run again without making any change? Upvote 0
The rapid debugger is always used, the question is why it requires a full deployment each time. Are you sure that you are not forcing it with: #DebuggerForceFullDeployment attribute? Does it do a full deployment if you run your app, stop it and then run again without making any change?
wimpie3 Well-Known Member Licensed User Longtime User Jun 14, 2017 #3 You're a genius! #DebuggerForceFullDeployment: true was indeed the culprit! Thanks Erel! Upvote 0