October 2006 - Posts

Tree Surgeon

One of the problems that I always have is How do I structure my source tree in new projects. Confluence have released a tool called Tree Surgeon that will automate the creation of source trees for you. From their website:

Tree Surgeon is a .NET development tree generator. Just give it the name of your project, and it will set up a development tree for you in seconds. More than that, your new tree has years worth of accumulated build engineering experience built right in.

Posted by trumpi | with no comments

Windows Live Writer and images

Does anybody know how to configure Windows Live Writer to publish images embedded in a blog post written for a dotnet blog?

Any help will be appreciated.

Posted by trumpi | 9 comment(s)
Filed under:

Developer or Programmer?

Who of you are developers? And who are programmers? Read Developers are from Mars, Programmers are from Venus before commenting.
Posted by trumpi | with no comments

Powershell and Subversion

I'm busy playing around with Powershell, looking particularly at using it to write hook scripts for Subversion. Scott Hanselman has an approach using the NSvn library that comes with AnkhSvn. I will need to look at that approach a bit more in depth, but what impresses me about Powershell is its handling of XML.

Those who know SubVersion will know that one of the aims of the Subversion team is to make the output of the command line tools human readable as well as machine readable. So for most tools, you can format the output of tools like svnlook as text or as XML. Formatting as XML gives a great integration point for Powershell.

Here is a one-liner that will get the revision number of a working copy:

([xml](svn info 'Working Copy' --xml)).info.entry.revision
Posted by trumpi | with no comments
Filed under: ,