This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sqlcmd -E -S "(localdb)\v11.0" -q "BACKUP DATABASE <DBNAME> TO DISK='<DRIVE>:\<FOLDER_PATH>\<BACKUP_FILE_NAME>.bak'" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Filter to take a node id and grab it's name instead | |
// Usage: {{ pickerAlias | ncNodeName }} | |
// Cache for node names so we don't make a ton of requests | |
var ncNodeNameCache = { | |
id: "", | |
keys: {} | |
} | |
angular.module("umbraco.filters").filter("ncNodeName", function (editorState, entityResource) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Examine; | |
using umbraco.businesslogic; | |
namespace MyApplication | |
{ | |
public class ExamineIndexRebuild : ApplicationStartupHandler | |
{ |