Search
Categories
Monthly Archives: November 2011
My attempts at installing Umbraco via NuGet
I often use Umbraco as a CMS for my web projects, and NuGet for referencing other libraries. This made me wonder whether Umbraco could be deployed via Nuget. The short answer is, it is possible, but it does not work … Continue reading
Posted in Development, Software
Tagged .net, asp.net, nuget, umbraco, visual studio, vs, vs2010
1 Comment
MacBook Pro BootCamp/Windows keyboard schema
Visual Studio 2010 + Resharper Key Description FN+ALT+[Right arrow] Go to sub types FN+ALT+[Left arrow] Go to super types ALT+SHIFT+F12 Find usages of variable CTRL+SHIFT+F11 Go to type of variable CTRL+SHIFT+R Refactor this CTRL+SHIFT+T Go to file CTRL+T Go to … Continue reading
Posted in Development, Mac, Software
Tagged bootcamp, macbook, resharper, shortcut, visual studio, vs2010
1 Comment
NHibernate query optimising with HQL expression IN
A note for me to remember. I have been doing some optimisation of queries done by NHibernate HQL. To optimise I have rewritten some of them to use the HQL IN expression. Point: important to check the collection parameter, if … Continue reading
Using OpenCover and NUnit with MSBuild
I am working on a project that has a large code base with a lot of logic. For this project I am trying to adopt a more TDD oriented development approach. This includes unit- and integration testing, as well as code … Continue reading