Visual Studio "Clean & Rebuild" in one button? -
my solution i'm working on it's has specialy. , sometime need clean solution
, after rebuild solution
, if not web application can not access. why made bat
file work , bind bat file button in visual studio toolbar.
but way, visual studio run bat file, clean , rebuild 1 solution i'm defined before in bat file. want button can clean , rebuild on solution opening, made combo of clean
, rebuild
commands of visual studio 1 button.
is there way me?
i'm using visual studio 2013.
as @blorgbeard said,
what rebuild solution?
rebuild solution clean , build solution scratch, ignoring it’s done before. deletes assemblies, exe’s , referred files compile again.
what clean solution?
clean solution delete compiled files (i.e., exe’s , dll’s) bin/obj directory.
rebuild means compile , link source files regardless of whether changed or not. build normal thing , faster. versions of project target components can out of sync , rebuild necessary make build successful. in practice, never need clean.
Comments
Post a Comment