Don't understand "application is already precompiled"

  • Thread starter Thread starter Dave
  • Start date Start date
D

Dave

When and what does .Net want to compile? I have a file called
upload.cs. I made changes to it. Tried to rebuild. But it won't
saying "the application is already precomiled." I would have expected
the cs code change to update the Dlls or something. What is it that
I'm not getting? Even if it is precompiled, why can't I compile it
again? Thanks....
 
Why not try switching your project to the Web Application Project model,
instead of the Web Site model. You may find it a lot more intuitive. I do.
Peter
 
aspnet supports precompiled vdirs. if precompiled, the aspnet compiler
will not recompile the site, because all the source files may not be
there (if you look at the aspx pages they should be empty).

normally you precompile to a new folder, not inplace. anyway just delete
precompiledapp.config
 
aspnet supports precompiled vdirs. if precompiled, the aspnet compiler
will not recompile the site, because all the source files may not be
there (if you look at the aspx pages they should be empty).

normally you precompile to a new folder, not inplace. anyway just delete
precompiledapp.config




- Show quoted text -

Okay, I get it now. So obvious. Duh..
 
Back
Top