Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My company uses a flavour of GIT for moving source code from your local system to the repository at the desired location (which later deploys and stuff , its a server basically) and the support for that tool is BAD. It uses the commandline and its very tedious to use it . I want to build somthing similar to tortoiseSVN / tortoiseGIT for this purpose and i am looking for a starting point.

How would i get the overlay icons in the folder ? How would i be able to do windows explorer integration in the "right" way ?

I'm going to use .Net C# to build this tool.

Thanks in advance for the help!

Cheers.

share|improve this question
6  
If only tortoisegit was open source... Oh wait – Austin Salonen Jun 19 '12 at 15:51

1 Answer

up vote 1 down vote accepted

You can write a Shell Extension! There is a lot to learn, though. Part IX of the complete idiot's guide to shell extensions series explains how to deal with icons.

In general writing IE and Shell extensions in C# isn't supported. Of course, newer versions of the runtime do allow you more flexibility in the area of SxS support. But you're on your own in terms of writing the COM interop and you need to think very carefully about how this will effect other apps that do things like use the file-open dialog.

share|improve this answer
I will try this ! – Shrayas Aug 4 '12 at 10:39

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.