Questions tagged [rebuild]
343 questions
7
votes
1 answer
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 execs/dlls to the hierarchy by post-build…

Serge
- 1,027
- 14
- 21
7
votes
1 answer
How to avoid node-gyp rebuild when running yarn install?
When I run yarn install, my native add on is always rebuilt. It can be seen that the command node-gyp rebuild is run instead of node-gyp build, even if nothing is updated.
caros@ubuntu:~/Developer/xviz-converter$ yarn install
yarn install…

Jing Li
- 639
- 7
- 18
7
votes
6 answers
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 debug, the changes are not made.
I tried to rebuild it, and everything goes fine,
now every change I made to the…

Maen
- 116
- 1
- 4
7
votes
1 answer
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 create..web.config
Is there a way to run this only on ReBuild?

Chris McKelt
- 1,378
- 2
- 17
- 38
6
votes
0 answers
Stateful widget consumer widget builds twice and hence calls initState twice. How to stop this from happening?
So for my project, I am using Riverpod, and I am creating the home page of my app.
The tree looks like this ->
CommunityView(Stateful Widget)
WillPopScope
ProviderScope
Consumer
Scaffold
...and so on
Now inside the build method of the CommunityView…

codenameakshay
- 86
- 1
- 6
6
votes
3 answers
DraggableScrollableSheet rebuilds all children every frame when dragged
I'm trying to implement a DraggableScrollableSheet with 2 nested scrollable lists.
I cannot use the out-of-the-box NestedScrollView class (I already tried it, but i couldn't get it to work, since it seems to be made for one preceding header sliver…

JohnnyRainbow
- 61
- 5
6
votes
2 answers
Why does my target always get recompiled, even if nothing has changed in code?
I'm almost new in writing Makefiles, so sorry for possible trivial mistakes.
My Makefile keeps recompiling the executable file (.out) even if nothing has changed in source code.
The target has some dependencies on other objects, but they don't…

Maria Chiara
- 103
- 8
6
votes
2 answers
Xamarin Studio: Rebuild project error with error : The "DebugType" parameter is not supported by the "XamlCTask" task
I have managed to rebuild the project by remove the line DebugType = "$(DebugType)" in the xml file below. What does this line really do and why it can fix my problem. I have the error because I pulling the new code from source tree.

LittleFunny
- 8,155
- 15
- 87
- 198
5
votes
1 answer
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 projects in which modifications were made?
Thanks.

user710818
- 23,228
- 58
- 149
- 207
5
votes
1 answer
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 <- Gtk.builderNew
let glade = map B.w2c $ B.unpack $…

György Andrasek
- 8,187
- 4
- 48
- 76
5
votes
1 answer
Widgets tree rebuild using FocusScope.of(context).unfocus()
I have this example:
@override
Widget build(BuildContext context) {
return Scaffold(
body: SafeArea(
child: Padding(
padding: const EdgeInsets.all(30),
child: GestureDetector(
onTap: () {
…

Jose Manuel Márquez
- 91
- 4
5
votes
3 answers
How to rebuild Jenkins pipeline
We have been using Rebuilder plugin (https://wiki.jenkins.io/display/JENKINS/Rebuild+Plugin) on our Jenkins and see a lot of value with that.
However, I dont see the "Rebuild" / "Rebuild with parameters" action for pipeline jobs. Am I missing a…

Ram
- 173
- 2
- 11
5
votes
0 answers
Bitbucket pull request add rebuild button
I have a bamboo branch plan that is start to build when a pull request is created,
what i want to do is to add a rebuild button to action menu in bitbucket pull request that allow me to restart the build in case of this build is failed like it is…

tbounsiar
- 199
- 1
- 9
5
votes
4 answers
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 DataGridView control, and build it ?
the reason…

Nour
- 5,252
- 3
- 41
- 66
5
votes
1 answer
How to figure out why ReSharper is not rebuilding unit test project before running?
Recently I am having an annoying problem. When I go to Unit Test Sessions window and run some tests, ReSharper seems to completely ignore any changes in my code(even in the code of the test itself!) and does not rebuild anything. Because of that I…

ironic
- 8,368
- 7
- 35
- 44