It’s critical this is done first. Web deploy may not install correctly if it’s installed with the Management Service icon missing. Check IIS for the Management Delegation icon, it’ll be under the Management section. If it’s missing run the following commands. Windows 2012 dism /online /enable-feature /featurename:IIS-WebServerRole dism /online /enable-feature /featurename:IIS-WebServerManagementTools dism /online /enable-feature /featurename:IIS-ManagementService…
Month: October 2014
Calling Stored Procedures with Code First
One of the weaknesses of Entity Framework 6 Code First is the lack of support for natively calling database constructs (views, stored procedures… etc). For those who have not heard of or used Code-First in Entity Framework (EF), Code-First is simply a Fluent mapping API. The idea is to create all your database mappings in…
Git Cheat Sheet
Below are git commands I find myself using over and over. clone repository git clone https://github.com/tinymce/tinymce-dist.git Add existing git files to remote git repo cd /path/to/my/repo git remote add origin https://lostinkali@bitbucket.org/lostinkali/flightstats.git git push -u origin –all # pushes up the repo and its refs for the first time git push -u origin –tags # pushes…