I've moved a class to the App_Code folder and I'm now receiving the following error message:
CS0433: The type 'myProject.App_Code.ItemType' exists in both 'c:\WINDOWS\
Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\8cdcbe9c\
b9695514\assembly\dl3\e5cfe230\82ca7cf7_5c89ca01\myProject.DLL' and
'c:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\
root\8cdcbe9c\b9695514\App_Code.5kpxjdxm.dll'
This error is returned at runtime.
I've searched my application for any duplicate but I'm guessing this is due to something not updating as I expect?
If I move the class back outside of the App_Code folder, everything works again as expected.
What am I missing?