Today I Learned: Nuget commands

The following command will update all packages in every project to the latest version available from nuget.org. Update-Package You can also restrict this down to one project. Update-Package -Project YourProjectName If you want to reinstall the packages to the same versions as were previously installed then you can use the -reinstall argument with Update-Package command. Update-Package -reinstall You can also restrict this down to one project. Update-Package -reinstall -Project YourProjectName The -reinstall option will first uninstall and then install the package back again into a project. ...

October 28, 2016

Today I Learned: Ninject in OWIN WebApi application

This chapter explains how to setup an application in case you want to use the OWIN (Open Web Interface for .NET) interface to be able to move your application between OWIN supporting hosts without making code changes. Requirements Version You will need Version 3.2.4 or newer, otherwise you will get a Ninject.ActivationException regarding HttpConfiguration. Installation via nuget First you have to add a reference to Ninject.Web.Common.OwinHost and Ninject.Web.WebApi.OwinHost either by adding the reference manually or installing the corresponding NuGet Package. ...

December 21, 2015

Today I Learned: Homebrew, Jekyll and Liquid

I’ve decide to start writing in my blog.. And I faced with several issues and strange things in the tools and frameworks. How-to install Sublime Text 3 with Homebrew It’s pretty easy to install it but for man who is moving from Windows to Mac OS it is rather hard to change mind. I did not have brew cask installed so I had to install it first, so these were the steps I followed: ...

November 8, 2015