We have several projects that are referencing library assembly lets call "myUtil", now one of the method which is referenced in several projects is,
GetData(int p1, string p2, object p3, bool p4 = false);
Now if I change above method to this,
GetData(int p1, string p2, object p3, bool p4 = false, bool p5 = false);
Do I must need to update "myUtil.dll" assembly to projects referencing it ?
WIthout referencing it I get this error which does makes sense and goes away when I update reference, but I am NOT ABLE TO VALID FIND reference where it says you must need to update references
System.MissingMethodException: Method not found: 'Void GetData(....