1
vote
What Visual Studio add-ins do you use?
I use:
ReSharper
VisualSVN
TestDriven.net
If anyone knows of a good native C++ refactoring tool that doesn't bring the system to a standstill all the …
2
votes
Can I configure VisualStudio 2008 to always build the startup project?
This is a pain. What we really need is for Microsoft to allow us to hook into a Post-Solution Build event. You can do this via macros but that's too complicated.
I'm assuming this is a C++ …
1
vote
Can I configure VisualStudio 2008 to always build the startup project?
flipdoubt: they are projects created originally in 2008. My suggestion if it's not working C# is to look in the Build Events tab and check the setting of the "Run the post-build event:" drop down. …
3
votes
Do you have any recommended macros for Microsoft Visual Studio?
This is my macro to close the solution, delete the intellisense file, and reopen the solution. Essential if you're working in native C++.
Sub UpdateIntellisense()
Dim solution A …
3
votes
How do I get the assembler output from a C file in VS2005
Project->Properties->Configuration Properties->C/C++->Output Files
There you should see an option for Assembler Output.
John.
…
