Reputation: 41
I am trying to change the properties in App_Code
classes to Build Action
but the property windows do not have any option that I can change !!
Below is the screen shot of my VS2005 Pro
Thanks
Upvotes: 1
Views: 125
Reputation: 39946
It is because you have used Web Site Project not a Web Application. ASP.NET web sites do not build.
If you want to have Build Action
property you should use Web Application Project instead of Web Sites..
Check this may help:Converting a Web Site Project to a Web Application Project in Visual Studio.
Upvotes: 2