Visual Studio ASP NET Project is rebuilding all the times

  • Thread starter Thread starter Miso
  • Start date Start date
M

Miso

Hello,

what can be the cause of building my ASP.NET project
when it has apparently no reason - if there are no code changes,
and I have choosen "Start without debugging" menu.

I have done investigation in all possible projects files
and directories, but no clue.

Other projects behave correctly.

Thanks

Miso
 
Make sure that you don't have a missing reference or a missing file in the
project. If the missing reference or file is not vital, project will compile
ok but build logic will try to recompile it over and over.

Bruno.
 
Miso,

Try this:
In the Solution Explorer window, right click on the solution name, click
Properties / Configuration Properties / Optimizations, check Enable
Incremental Build and click OK

Bud Corazza
 
Hello Bud,
unfortunatelly my project is in C# and there is no Optimizations Section
under Configuration Properties.
In VB it is there.

miso
 
This was the case.
Thank you Bruno.
Miso


Bruno Jouhier said:
Make sure that you don't have a missing reference or a missing file in the
project. If the missing reference or file is not vital, project will compile
ok but build logic will try to recompile it over and over.

Bruno.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top