Click here to Skip to main content
15,884,388 members
Articles / All Topics

The (10) Survival Development Tools

Rate me:
Please Sign up or sign in to vote.
5.00/5 (6 votes)
19 Jan 2012CPOL2 min read 25.9K   32   3
A list of tools and libraries I consider necessary to carry on my USB key in order to be operative everywhere in a very short time

Here below is a list of tools and libraries I consider necessary to carry on my USB key in order to be operative everywhere in a very short time:

  1. SharpDevelop
  2. NHibernate
  3. Caliburn (Micro)
  4. NInject
  5. Kaxaml
  6. SQLite
  7. Rad Software Regular Expression Designer
  8. ILSpy
  9. FlyFetch
  10. log4net

SharpDevelop

This is probably the single OS replacement for Microsoft Visual Studio. Install and start using it in terms of minutes, thanks to xcopy deploy. It reads projects in the same format of the original one (since it uses the standard framework libraries for reading/writing projects).

NHibernate

If you can see a way to model the DB you want to use, then NH is probably the best OR/M existing in the .NET environment. As soon you have some confidence with it, it is very easy to start modeling our objects, especially with the 3.2.x version that does not require anymore to write hbms.

Caliburn Micro

If you write UI using some XAML dialect (WPF/SILVERLIGHT/WP7/ the new coming Win8) and you like MVVM, you have to look at it. Very easy to boostrap, with coroutine support embedded, I would like to use it even for an Hello World application. Smile

NInject

An easy to learn DI framework. Easy and very intuitive to configure, it has some functions to allow multiple components to be injected as array, and to configure dependencies from external modules. I choose it not only for these, but also for the wonderful home page. Smile

Kaxaml

A pad to learn and test XAML, with intellisense and preview as you type. Like xamlpad, but much better.

SQlite

An embedded file based database. It handles concurrent access consistently, easy to interface with NHibernate. Unfortunately, it is a native solution, so it works only in fully trusted environments.

Rad Software Regular Expression Designer

There is a lot of regex testing tool, but this is the one I use, so…

ILSPy

The open source replacement for reflector. It comes from the same team that created SharpDevelop. It has all the features the standard reflector has, but not yet a real plug in environment.

FlyFetch

This is the tool I use when I need to display in UI a very long recordset, and I want to page it without rewriting the same code every day.

log4net

To use in all applications, even the simplest: logManager.GetLogger(GetType()).Info(“Hello World”); Smile It is probably the .NET logger existing from the early days, with a lot of appenders already written and tested.

So this is my list, of course, another survival pre condition is having an internet access, and the StackOverflow help Smile. There is no NUnit nor a Mocking library (as for example, Moq) since both can be replaced by custom test and mocks, but of course, if there is still place on the USB. Winking smile


License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 5 Pin
Wooters19-Jan-12 13:08
Wooters19-Jan-12 13:08 
GeneralMy vote of 5 Pin
canozurdo19-Jan-12 11:47
canozurdo19-Jan-12 11:47 
GeneralRe: My vote of 5 Pin
Felice Pollano20-Jan-12 2:19
Felice Pollano20-Jan-12 2:19 
Feel free to add it as a comment in the original blog. My is just a drop of what I currently use, but is nice to have more Smile | :)

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.