-
Recent Posts
Recent Comments
Archives
- May 2024
- October 2023
- September 2022
- November 2021
- May 2021
- April 2021
- January 2021
- February 2020
- May 2019
- August 2018
- July 2018
- April 2018
- December 2017
- November 2017
- October 2017
- June 2017
- May 2017
- April 2017
- February 2017
- December 2016
- September 2016
- July 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
Categories
Meta
Category Archives: Umbraco
Umbraco – WriteLock and ReadLock with ReaderWriterLockSlim
this post is to clear how to use WriteLock and ReadLock to make sure critical resources have been visited properly. Take the following code for example in “public abstract class ResolverBase : ResolverBase where TResolver : ResolverBase”. 1 2 3 … Continue reading
Posted in Umbraco
Comments Off on Umbraco – WriteLock and ReadLock with ReaderWriterLockSlim
Umbraco – start of source code analysis with Logging System
This is first article about umbraco’s source code analysis. umbraco is big project using Asp.net MVC with 3338 cs file and lots of javascript/css/html. Normally it is bigger than enterprise project and it will take long time to analysis it … Continue reading
Posted in Umbraco
Comments Off on Umbraco – start of source code analysis with Logging System
Umbraco – How to build Umbraco
1. Download Umbraco from github 2. %path%\Umbraco-CMS-dev-v7\build run “build.bat” 3. open %path%\src\umbraco.sln 4. build and run umbraco. It will setup database. The database only has table without view and stored procedure.
Posted in Umbraco
Comments Off on Umbraco – How to build Umbraco