![]() |
![]() |
![]() |
Incessant rebuilds with VS.NET Something about VS.NET is really starting to grate on our nerves.
Richard Kuo
The up-to-date checks in VS.NET are completely broken for some reason. All my project files are local so I don't mind as much but I can see how it could get very annoying with lengthier builds.
Chris Nahr
exit and reopen project?
na
+1 for the build system in VS.NET being a fundamentally broken piece of trash. +1 for loving to NAnt.
Brad Wilson (dotnetguy.techieswithcats.com)
Has anyone got a sneak preview the new MS build product? I saw a mention of it on someone's blog and it was supposed to be demonstrated at PDC.
Mark Hoffman
For those of you using NAnt - How does that work for debugging? Are you only using NAnt for final builds, but still debugging with the VS.NET builder?
JWA
I use NAnt for builds, but run from within VS.Net because:
Rob Walker
In point of fact, if you wanted to eschew VS.NET altogether, you could. There is a GUI debugger that ships with the SDK. Or you can use the IDE to edit and debug, as others do (I find Intellisense very useful, personally, and can't find it in any quality in any other editor besides VS.NET's).
Brad Wilson (dotnetguy.techieswithcats.com)
One bug that we ran into all the time comes from just wanted to relink everything. This is worked around by not putting any relative paths in the "Additional Dependencies" section in the "Linker\Input" options. Only put file names here. If the files you want to link to aren't in your %PATH%, put the paths to the .libs in the "Linker\General", "Additional Library Directories"
Nick Lassonde
This problem often occurs when you put relative paths into your resource compiler or MIDL compiler input paths. You can usually fix it by including "$(ProjectDir)" in whichever of those path collections you have other paths in. See http://groups.google.com/groups?hl=en&lr=&ie=UTF-8&oe=utf-8&selm=3cee7e84%241%40news.microsoft.com.
David Pickett
Copy that URL and paste it, btw, I think the posting software is escaping the '%' signs, so the link doesn't directly work.
David Pickett
Generally what I do when using NAnt and developing is to build a version with all the debug symbols etc ,deploy it to my test environment and then attach VS.NET to the aspnet_wp and remotely debug it. Works well enough
Dan G
The GUI debugger that comes free with the SDK is good, but not as good as the VS.Net debugger. Particularly for me, I can't set conditional breakpoints with the free debugger.
Ankur
|