Updating your custom assembly (user control)
When updating your custom control in your bin folder to a newer version, I got an error that Type is not defined.
Solution:
Edit your project file (in notepad++ or similar) and update your version number to the one corresponding to your latest version.
This will allow the project to compile again.
Hope this is of any help.
Solution:
Edit your project file (in notepad++ or similar) and update your version number to the one corresponding to your latest version.
<Reference Include="assembly.name, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
This will allow the project to compile again.
Hope this is of any help.
Comments