Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Changing Assembly Name gives errors

Tags:

c#

assemblies

When I change the assembly name of my project, i.e from "Gui" to "Gui2", I get many errors during build. Most of these errors contain "xxxx could not be found (Are you missing a using directive or an assembly reference?)

What am I doing wrong?

like image 546
sbenderli Avatar asked Jun 27 '26 21:06

sbenderli


1 Answers

You'll need to fix up all of the references to that assembly to use the new name. Depending on how you made the change, you may also need to fix up namespace references.

like image 170
Jim Lamb Avatar answered Jun 30 '26 12:06

Jim Lamb