c# - How to debug - public void Run(IBackgroundTaskInstance taskInstance) -
i need debug make sure background task running -
using windows.applicationmodel.background; namespace backgroundtask { public sealed class updatetask : ibackgroundtask { backgroundtaskdeferral _deferral; public void run(ibackgroundtaskinstance taskinstance) { _deferral = taskinstance.getdeferral(); int = 10; int b = 20; += b; _deferral.complete(); } } } i have created entry in manifest file - extension category="windows.updatetask" entrypoint="backgroundtask.updatetask"
however when update version in manifest file , f5, don't see debugger stop @ breakpoints in run method. appreciated?
Comments
Post a Comment