i am getting error when building an ASP.net web-site:
Identifier '__ASP' is not CLS-compliant
Nowhere in my code is there the identifier __ASP
.
i know why
__ASP
is not CLS-compliant (it starts with an_
). What i need to figure out who is emitting it, and how either:
- change it to not start with an underscore, or
- make it private
i could also stop marking the assembly as CLSCompliant - but i'm not gonna
The warning does not list any useful file:
4d48b87d\63ccbbb9\App_Code.x0tl4q2v.49.cs line 15
Which is, obviously, not a file i created. How can i identify where this __ASP
identifier is, and remove it, or make it private?
i'm not the only person experiencing __ASP problems: