Hi Here is the Part 2 on how to add the TDS to your helix project. If you have missed the Part 1, you can watch it here
Creating Sitecore Helix structure from Scratch – Part 1 Create the MVC project
I have started a new series on Sitecore Helix. Hopefully, you can join me on this journey.
Sitecore Helix: How to use one assembly files for all the assembly version
You are using Helix principles with your Sitecore project. Great!!! You are listening well to the Sitecore Gurus and following the divine path. You are setting up TDS, MsBuild server and Octopus deploy for you Continuous Integration. Sweet!! You might run into issue where you need to have consistent Assembly version for all the projects. You…
How to create Continuous Integration with TFS, TDS and Visual Studio for a Sitecore Helix Solution
(**Note: This might be little pre mature, but I want to capture the main process of the solution before I forget.) I have created a Sitecore project using Helix Principle. For all the TDS projects I have created a Global TDS config and that is the easiest way to handle the TDS items. We are…
Visual Studio 2019 and Gulp script for Sitecore Habitat
If you are using Visual Studio 2019 and have the Habitat project and trying to run the Gulp script, You might find that you are getting errors. It might look like this { Error: spawn C:\Program Files (x86)\Microsoft Visual Studio\2019\Professional\MSBuild\15.0\Bin\amd64\MSBuild.exe ENOENT at Process.ChildProcess._handle.onexit (internal/child_process.js:232:19) at onErrorNT (internal/child_process.js:407:16) at process._tickCallback (internal/process/next_tick.js:63:19) This is an issue with…
Learn from failure. Fail quick and fail fast.
I know when I was learning to walk, I fell many times. So many times that it was ok to fall down and it was neither good or bad. It was just a process to “learn” how to walk. That’s the way it should be. I never trust a person who will say they were…
How to add Splash Screen on Xamarin.forms for iOS
Took a while. Project -> Resources -> Launch.StoryBoard add image here Project -> info.plist->iTunes Artwork
Simple way to Flip a string
I just thought sometimes simple extensions helps a lot. Like this Flip. public static string Flip(this string target, bool trimEnds) { if (trimEnds) target= target.TrimIfNotNull(); var len = target.Length; var newString = new string[len]; foreach (var c in target) { var temp = len; newString[temp – 1] = c.ToString(); len–; } return string.Join(string.Empty, newString); }…
Customizing Sitecore Upload Pipeline for both folder and database based Media
I wanted to upload documents to Sitecore Media library and at the time of upload, I would like to replace the metadata on the pdf file. Many of you probably have looked at this document for reference from Sitecore SDN. But that document has few problems. I will point those out as I write this…
Sitecore “Tracker.Current is not initialized ” issue
PROBLEM: Solution: Culprit is the MongoDB is not installed on your PC. Go through your config and disable connections to it. If you have MongoDB installed, make sure it is running and your connectionstring is correct. Steps: You have 2 Options to fix it. You can Install MongoDB and point your instance to it. …