Tagged Questions
The rebuild tag has no wiki summary.
43
votes
3answers
9k views
Difference between Rebuild and Clean + Build in Visual Studio 2008
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?
9
votes
3answers
204 views
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 ...
9
votes
13answers
468 views
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 ...
7
votes
3answers
17k views
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 ...
6
votes
4answers
109 views
rebuild the .Net assemblies at home!
as microsoft has made .Net framework an open source library, is there any chance that i can make a project of their source code files, and build it again, for example, can i create a solution for the ...
4
votes
1answer
368 views
Visual Studio 2008 Post Build event — only run on Rebuild
In Visual Studio 2008 we run a post build event which calls NANT and in turn creates our config files.
e.g.
if $(SolutionDir) == . GOTO end
nant -buildfile:$(SolutionDir)default.build ...
4
votes
13answers
4k views
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. ...
3
votes
1answer
55 views
Cabal rebuild on embedded file change
I'm using the file-embed package thusly:
import qualified Data.ByteString as B
import qualified Data.ByteString.Internal as B (w2c)
import qualified Data.FileEmbed as E
initWindow = do
b <- ...
3
votes
1answer
1k views
svn recovery - restoring individual revisions
Regardless of how I got here, I'm in the position of restoring a SVN repository from backup. Unfortunately the backup was slightly corrupted and out of over 19000 revisions, approximately 80 are lost. ...
2
votes
0answers
60 views
Drupal 7, form won't get rebuilt
I'm building a multistep form and I don't want users to lose any storaged information if they accidentally refresh the page. Steps to reproduce:
1) Press 'ok'-button
2) ...
2
votes
2answers
94 views
Why is it necessary to do a rebuild after adding a new member variable to a class?
This morning, in Visual Studio 2005, I tried adding a new private member variable to a class and found that it was giving me all sorts of weird segmentation faults and the like. When I went into ...
2
votes
1answer
159 views
Automake rebuild source file if Makefile changes
When using an autoconf/automake build system if the compiler flags or other variables in a Makefile.am (or even higher level like configure.ac) change, the C++ source files associated with that ...
2
votes
1answer
207 views
Oracle alter index/rebuild
If I rebuild an unusable index using
alter index x rebuild
will the the execution plan for any SQL that used that index previously be re-evaluated? I know that the statistics are re-calculated as ...
2
votes
1answer
264 views
Android Tablet Devices for development that support os rebuilding and loading
I am looking for a Android tablet device that will permit me to modify, rebuild and reload the Android operating system in a fashion similar to what Google provides developers with the Nexus One ...
2
votes
2answers
1k views
Rebuild N-tier app into Service-Oriented Architecture (SOA)?
Considering the regular characteristics of an n-tier app with layers like: presentation, business, data access; how is this normally rebuilt to make a Service-Oriented Architecture (SOA)?
Seeking ...
2
votes
1answer
975 views
How to rebuild ALL?
In Visual Studio, how do I rebuild a complete solution, including all configurations?
If I choose "Rebuild solution", it always rebuilds ONLY Debug or ONLY Release, but never both.
1
vote
2answers
55 views
If I rebuild Python will it break my Django installation?
Recently I was told I should rebuild Python 2.7.2 in order to get the Python interpreter behaving correctly as it's been acting strange lately.
If I rebuild Python will it break my Django ...
1
vote
2answers
52 views
How to rebuild an entirely static website, without changing URLs?
I have a website that I was asked to "redesign".
The site itself was built and still maintained by FrontPage, so there are hundreds (hopefully not more) of HTML pages.
My main limitation is that I ...
1
vote
1answer
52 views
Rebuilding a Newer Version of a Deb Package
What's the best way to update (rebuild) a Debian/Ubuntu-package to a more recent version? Should I be using apt source in all cases including when I want to publish it as Personal Package Archive? I ...
1
vote
1answer
86 views
Visual Studio 2010 randomly says the command line changed, and rebuilds
Visual Studio sometimes decides to rebuild my entire huge project because of one small change. I turned build logging up to Diagnostic to see what was the problem, and here's what I'm seeing:
< ...
1
vote
1answer
43 views
subject: rebuild old c++ dll, Visual Studio? Or what?
Folks:
I need a 8051 processor instruction + internal peripheral simulator to resurrect a very old project. (Long story.) I found an WinXP-targeted abandonware project that is almost perfect for my ...
1
vote
1answer
112 views
How to trigger VS post-build events without rebuilding
I have a bunch of VS 2005 C++ projects, which build a number of dlls and executables, which are a small part of a large interdependent file hierarchy. In order to debug the files, I copy the built ...
1
vote
1answer
44 views
Does the index need rebuilding when not batch inserting data?
Let me rephrase the question:
Is it vital for the /*! */ lines, in the SQL file below, to exist when inserting data using individual INSERT statements?
This is the contents of the file now:
LOCK ...
1
vote
4answers
529 views
creating tree traversal hierarchy from scratch using PHP/MySQL
I am currently developing a category hierarchy, and I got the point of creating tree treversal i think. But I need to add a new node into this hierarchy usign PHP function.
The problem is ...
1
vote
3answers
241 views
Changes are not happening until a rebuild is performed
I have a large windows application.
Recently when I make any change in the source code and run the project normally with or without debi, the changes are not made.
I tried to rebuild it, and ...
1
vote
2answers
282 views
Build/Rebuild Project VS 2008 using DTE
How can I Build and Rebuild a Project csproj using DTE.ExecuteCommand ?
Any reference of all commands of DTE ?
For solution, I use this:
Logica.BuildTracking.IniciarBuildTrack();
...
1
vote
4answers
246 views
How to avoid Grails automatically rebuilding my project on every change?
I have an old Grails 1.1.1 project that I had to upgrade to version 1.3.5 with STS Pro.
As expected, some debris is floating around that may be causing issues, but I'm not sure that's causing the ...
1
vote
2answers
400 views
Java StackOverflowError while recursively building an array from a binary search tree
I'm trying to balance a BST by first building an array (inorder) and then rebuild the entire tree from my array.
I have:
public void toArray(E[] a) {
toArray(root, a, 0);
}
/*
* Adds all ...
1
vote
1answer
253 views
Do Precompiled headers help with rebuilds?
I read some of the questions about precompiled headers but couldn't find a direct answer to that.
I usually rebuild my entire Visual Studio 2010 solution.
One of the projects in my solution is a ...
1
vote
2answers
41 views
Resuming MySQL indexing
I have been building index on a 200 million row table for almost 14 hours. Due to resource over-consumption on the machine (because of a separate incident), the machine cashed. Clearly, I want to ...
1
vote
1answer
356 views
SQL Server 2008 Full Text Rebuild - Large Memory Usage Issue
Each time I perform a SQL Server 2008 FTS Catalog Rebuild, my server is left in a state where the SQL Server process is at 2.8+ GB of memory and is causing performance degradation of the machine. ...
1
vote
4answers
145 views
What does the 'Rebuild All' setting do?
In visual studio, there is an option to "Rebuild All" from the build menu, what exactly does it do?
1
vote
2answers
447 views
Visual Studio 2008 forces me to Rebuild Web Site every time to effect any changes I make
I have been using Visual Studio 2008 for the past 2 years or so. Recently, in 2 particular ASP.NET (with VB.NET) web sites I am forced to do a Rebuild Solution after any change, no matter how minor, ...
1
vote
3answers
373 views
visual studio accidentally rebuild problem
many times i accidentally click on "rebuild" when i plan just to click on "build". This rebuild process may take so long time if there are dependencies of this project...
do you know any plug-in or a ...
1
vote
2answers
189 views
What do I need to re-build my web server?
I am getting ready to completely overhaul my web server. I use it for both development and to present product to clients. It also hosts my company website. I will be loading MS Server 2008 and MS SQL ...
0
votes
0answers
10 views
Rebuild or Reorganize indexes based on fragmentation. [migrated]
I am using one Defragmentation script , which provide nice way to rebuid or reorganize indexes based on fragmentation percentages.
Link
http://sqlfool.com/2011/06/index-defrag-script-v4-1
I like ...
0
votes
0answers
14 views
How to rebuild iOS Application after a language change?
i want that the iOS Application rebuilds itself, if a value is changed.
- (IBAction)languageChange
{
if(languageControll.selectedSegmentIndex == 0) {
languageMod = true;
...
0
votes
1answer
23 views
How to stop Eclipse rebuild workspace?
I have in workspace near 70 projects.
Sometimes Eclipse starts rebuild workspace, but I haven't made any modifications.
Rebuild takes near 2 hours. How to stop it and do Eclipse rebuild only ...
0
votes
3answers
84 views
Can't rebuild my application anymore
I'll give you 2 versions of my problem to describe it, first the short version.
When I try to build my application it does that perfectly and my app works but when I try to rebuild it, that fails and ...
0
votes
1answer
25 views
.asmx file requires rebuild before allowing full site build to succeed
I've been working with my web application for a long time, and recently two of the asmx files have started behaving rather oddly. As far as I know, nobody has touched them in ages, but suddenly when ...
0
votes
1answer
31 views
Rails 3 - how to make a rebuild
I am making simple tree structure and in the tutorial is following:
Build cache: TreeNode.rebuild_depth_cache!
I never use this command, I tried to give this line into my controller (in ...
0
votes
2answers
38 views
Rebuilding Index - sort in temp db
What is the significance of SORT_IN_TEMPDB when working with indexes on a table of significant size (20GB plus)?
Where else does sorting take place?
0
votes
1answer
47 views
Why are erlang lib changes not being incorporated into my project?
I'm using eclipse 3.6.2 with erlang 5.8.1.1 on a fairly large project that we're not ready to move to a more modern version of the language, so I'm stuck with a bug in eprof:
string_bp_mfa([{Mfa, ...
0
votes
4answers
59 views
Php array rebuild
I got an array looking like this:
array("canv" => array(1 => "4", 2 => "6", 3 => "9", 4 => "7");
I need it to look like this:
array("canv" => array("4", "6", "9", "7");
so I ...
0
votes
2answers
70 views
Visual Studio 2010: Building a solution with CTRL+SHIFT+B doesn't create new DLLs?
After consecutive builds of a solution without making any changes to an assembly's code or any of its referenced assemblies' code, I've noticed that new DLLs are not compiled in the build folder (ie, ...
0
votes
2answers
280 views
Eclipse clean and build (aka rebuild)… howto D:?
Hoi,
I deleted my ./bin folder in an Eclipse Indigo(supersimilar to Helios), and now wondering how to rebuild my Java project. I just cannot find a button like in Netbeans...
(PS: I agree of this ...
0
votes
1answer
61 views
Clean, Rebuild, Build Solution and Projects in vs 2008
Recently I have to work in a windows application which has 5 separate projects and a set up project within a one solution.
So far every time when I need to create setup file of this application, ...
0
votes
1answer
52 views
Rebuild and keep older .exe
I want to build different flavors of my c++ project from the cmd
I'm using msbuild with /p:Varable=Variable and using different folders for each flavor
the problem is every time I rebuild one of the ...
0
votes
1answer
203 views
how to call devenv to build some .vcproj with specific building macro in a solution (containing many .vcproj)?
all!
There are many vc projects in my solution. i can call devenv.exe xxx.sln to build/rebuild all these projects together. Also i can right-click some specific project and rebuild it.
My question: ...
0
votes
0answers
68 views
Rebuild Master Database and restoring all objects
I would like to rebuild (because of collation) master database (which is as I see simple operation), but after that I would like to restore all (or almost all) objects in database (all my tables, ...