Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MonoDroid: Getting the Resource .Designer.cs to refresh

After I update the XML in a Layout, the Resource.Designer.cs does not refresh automatically.

How can I get MonoDroid to update the class so that I get Intellisence on new items added/changed in my Activity's layout.

like image 368
Ian Vink Avatar asked Oct 25 '22 03:10

Ian Vink


1 Answers

The designer files get updated as part of the build, so if you rebuild your project after updating your layout they'll get regenerated.

like image 76
Greg Shackles Avatar answered Jan 02 '23 19:01

Greg Shackles