Jeez
- Pipeline components - put them in a folder
- Functoids - put them in a folder and gac em [sometimes]
- Everything else - gac it and deploy it
why?
.comment-link {margin-left:.6em;}
SendPort Filters = no quotation marks for string values
Receive Shape Filters (in Orchestration) = quotation marks for string values.
[Serializable, Editor(typeof(CharsetPropertyEditor), typeof(UITypeEditor))]
public class CharsetList
Object charSetName = ReadPropertyBag(pb, "charSetName");
Object charSetCodePage = ReadPropertyBag(pb, "charSetCodePage");
if (charSetName != null && charSetCodePage != null && (int)charSetCodePage != 0) CharSet = new CharsetList((string)charSetName, (int)charSetCodePage);
var locator = WScript.CreateObject ("WbemScripting.SWbemLocator");
var wmi = locator.ConnectServer ("", "root");
var quota = wmi.Get ("__providerhostquotaconfiguration=@");
quota.MemoryPerHost = 384*1024*1024;