Questions tagged [rebuild]
343 questions
323
votes
7 answers
Difference between Rebuild and Clean + Build in Visual Studio
What is the difference between just a Rebuild and doing a Clean + Build in Visual Studio 2008? Is Clean + Build different then doing Clean + Rebuild?

Jim McKeeth
- 38,225
- 23
- 120
- 194
50
votes
3 answers
How to achieve that Eclipse clean and build (aka rebuild)?
I deleted my ./bin folder in an Eclipse Indigo (super similar to Helios), and now I am wondering how to rebuild my Java project. I just cannot find a button like we can see in Netbeans.

imacake
- 1,703
- 7
- 18
- 26
47
votes
9 answers
Reorganise index vs Rebuild Index in Sql Server Maintenance plan
In the SSW rules to better SQL Server Database there is an example of a full database maintenance plan: SSW. In the example they run both a Reorganize Index and then a Rebuild Index and then Update Statistics. Is there any point to this? I thought…

BTB
- 2,126
- 3
- 21
- 22
26
votes
2 answers
r modify and rebuild package
I'm trying to use the SemiMarkov package and I want to change one small line of code in there. I've done some digging via:
getAnywhere("semiMarkov")
& I've identified that I want to change this line:
hessian <- diag(ginv(hessian(V, solution)))
to…

Rob
- 599
- 2
- 6
- 9
13
votes
1 answer
Scons: how to force rebuild?
When using make, I can specify make -B to force rebuild.
But how specify it with scons, to force rebuild all or force rebuild specific folders?

Hind Forsum
- 9,717
- 13
- 63
- 119
12
votes
18 answers
Why is Visual Studio 2008 always rebuilding my whole project?
I have a Visual Studio project with about 60 C++ source files. I can do a build, and it completes without errors. But if I immediately hit F7 again, it always re-compiles about 50 of the source files. It doesn't re-compile all of the files, which is…

Rocketmagnet
- 5,656
- 8
- 36
- 47
11
votes
2 answers
Do I have to rebuild MongoDB index when I add documents
I have just discovered the extraordinary power of mongodb indexes. Building indexes on just a few fields has allowed me to speed up some operations 1000 fold, and more. My apologies for what might seem a stupid question: once I have built an index…

Peter Robinson
- 363
- 4
- 17
10
votes
13 answers
At what point does refactoring become not worth it?
Say you have a program that currently functions the way it is supposed to. The application has very poor code behind it, eats up a lot of memory, is unscalable and would take major rewriting to implement any changes in functionality.
At what point…

JD Isaacks
- 56,088
- 93
- 276
- 422
10
votes
1 answer
webpack-dev-server rebuild with ejs
I'm using webpack-dev-server with this config:
import webpack from 'webpack';
import autoprefixer from 'autoprefixer';
import ExtractTextPlugin from 'extract-text-webpack-plugin';
import CaseSensitivePathsPlugin from…

Jarosław Wlazło
- 370
- 1
- 3
- 14
10
votes
2 answers
When should you prefer ReBuild instead of Build?
Just to make it more clear for me, I would like to ask you guys the correct condition(s) to have your
project or solution Rebuild instead of build in Visual Studio?
If I rephrase it: Why the MS needed to create "Re-build ALL" option in Visual…

pencilCake
- 51,323
- 85
- 226
- 363
9
votes
2 answers
Visual Studio C# projects force a rebuild when switching from debug to release and vice-versa
It seems Visual Studio 2012 C# projects force a rebuild every time you switch from Debug to Release or vice-versa, even if nothing has changed in the project. This does not happen for a standalone project -- but if you add a single project…

Aaron Frantisak
- 543
- 5
- 11
9
votes
1 answer
Android Studio Requires rebuild every run
Android Studio is giving me an absolute nightmare!
Every build I attempt probably has a 15% chance of actually compiling correctly and installing on my device. I have to use Log.d to see if the changes actually are running! (FYI: It definitely…

Droideh
- 116
- 5
9
votes
3 answers
Avoid accidental rebuild of a project in Visual Studio
I often click on "rebuild" by accident when I actually want to click "build". This rebuild process may take so long time if there are dependencies of this project...
Do you know any plug-in or a configuration that makes visual studio to ask me if I…

ufukgun
- 6,889
- 8
- 33
- 55
9
votes
3 answers
How to "repackage" a RPM file for example cpio2rpm without installing the RPM?
I'm able to extract files from a RPM file, but how do I "rebuild" it, for example cpio2rpm?
I have extracted RPM file using following command.
rpm2cpio theFileName.rpm | cpio –idmv
I have to modify the few web application files…

Dr Bob
- 91
- 1
- 1
- 2
8
votes
0 answers
webpack, why 'eval' is described as faster at 'rebuild'
eval is one of the types of webpack source-map. As the official doc says,
eval - Each module is executed with eval() and //@ sourceURL. This is pretty fast. The main disadvantage is that it doesn't display line numbers correctly since it gets…

user2687620
- 111
- 3