Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is Repeater Tasks process?

I was working on a ASP.NET web forms project and was trying to attach a data source to a repeater using wizard. My Visual Studio window suddenly hanged for some seconds and during that time I saw a popup minimized window: enter image description here.

Can someone please tell me what it is? And why its showing default icon of Windows Forms? Is it some internal process of Visual Studio?

like image 377
Aishwarya Shiva Avatar asked Oct 21 '22 02:10

Aishwarya Shiva


1 Answers

It seems to be a background task that Visual Studio uses to Scaffold your code to ensure that the dots are connected when creating a data source.

The gist is that it runs through your code, checks objects for links to your data source, and sets up the settings you've added in the wizard.

like image 130
Ryanb58 Avatar answered Oct 22 '22 19:10

Ryanb58