Archive for Trac tag
My development tools
Christopher Bennage wrote about his development tool set-up and encouraged others to do the same so here’s my current set-up.
Daily tools
- Visual Studio 2005 – IDE of preference despite it’s sluggish behaviour
- SQL Server 2005 Management Studio – Took getting used to but it’s an improvement on 2000′s Enterprise Manager
- AnkhSVN - Subversion support inside Visual Studio 2005
- .NET Reflector – Searching .NET API or to find out what it’s doing
- Web Application Projects – Stop using VS’s web sites and start using web applications!
- Web Deployment Projects – Deploy to dev, test or live servers as easily as building a project
Not quite daily
- CodeSmith – Need to get to grips with v4 to build our whole database layer in one hit
- Trac – Bug tracking, milestones & wiki with integrated support for Subversion
- TortoiseSVN – Check-in/out of non-project items (e.g. art assets)
- Web Developer Extension – Trying CSS changes on-the-fly, validating pages etc. from Firefox
- Firebug – Examining pages, the page DOM etc. from Firefox
- KDiff – Excellent 3-way diff tool that works great with AnkhSVN
- Subtext – Blogging system running here
On occasion
- Visual C# Express and XNA – Messing with 3D graphics, controllers and pixel shaders
- Ogre – Steve’s object-oriented 3D engine
- XCode and Cocoa – Still quite alien with it’s message-based calling mechanism but obviously powerful
Keeping an eye on
- Eclipse – IDE for developing Java (C++ and C# support in various stages too)
- Ruby on Rails – Interesting RAD approach to web development – Apple also supporting on Mac OS X 10.5
- Sandcastle – Microsoft’s documentation tool that already seems to have had an impact on NDoc
- SubSonic – Build-provider that generates an ORM on the fly and provides automatic developer-only db editing pages
Not used lately, still installed
- Delphi 5/6 – Borland’s great RAD tool for non-.NET development, later versions support .NET too
- JBuilder – Java development although I’d probably move to Eclipse
- Visual Studio 2003 – Still required for the odd .NET 1.1 application/testing
[)amien
My .NET toolkit
Every developer has his own favourite set of development tools and libraries that he’s come to rely on. Here’s a round-up of some I use or am looking at.
Actively using
- CodeSmith – Now in version 3 with it’s own IDE this tool lets you write templates that are executed against database structures. The C# ASP.Net style syntax is easy to get to grips with, allowing you to easily generate stored procedures, database scripts, class templates, simple object-relational-mappings, collection classes and the works. Will be less useful when .Net 2.0 arrives with Generics support but until then snap it up. A free version is available.
- NullableTypes – A shortcoming in .Net 1.1 is the lack of null support for value types outside the SQL Server name space. Until this is addressed in .Net 2.0 then check out this open-source library that does a sterling job. (Disclosure, I’ve contributed to this project)
- Subversion – A great source control tool, the replacement for the ageing CVS product. Gaining some good support now you can run the server directly or inside Apache. Combine with TortoiseSVN for Explorer shell based integration or AnkhSVN for integration inside the Visual Studio IDE.
- NUnit – Unit testing is a great way to prevent regressions and NUnit is both simple to learn and fast to use.
- VisualStyles – I’ve mentioned this before but .Net’s support for XP themes is abysmal with drawing problems all over the place especially when it comes to tab controls. VisualStyles is a free component you just drop on your form that magically fixes everything.
On my radar
- Trac – Provides wiki, issue tracking and source browsing over the top of a Subversion repository. I installed on my server at the weekend and it looks quite promising although its convoluted installation procedure had far too many dependencies for my liking. Will be testing this on a project I’m working on to see how it goes.
- PageMethods – Previously called SharpURL’s but now free and without an expiration this provides a way of identifying methods into a web page and the parameters they require.
I’m also on the lookout for a replacement for my object-relational CodeSmith templates I knocked up a while back and have been refining since. While they are functional and incredibly fast I’m now wanting features they don’t provide such as database independence, lazy loading and locking patterns.
[)amien