<CustomAction Code="HBRelog.SkipCurrentTask(HBRelog.CurrentProfileName);" />
Also, in the latest build
PHP:<CustomAction Code="HBRelog.SkipCurrentTask(HBRelog.CurrentProfileName);" />
This now causes HBRelog to skip TWO tasks.... No idea why since now all code is streamed and we can't even see it /sigh
Check if the /Bots/Professionbuddy folder exists in the HB install folder and if it does see if removing it fixes your problems.
You need to place the component source somewhere where it'll get compiled and loaded by HB, such as in a subfolder inside the Plugins, Bots or Routine folderNope, it doesn't exist...
Also, I used to have my own custom PB Component - how would I go about getting this to run using the new system? There was a note in one of the release logs stating it was possible just not *how*?
Nothing was changed that should effect this. I've tested and it's skipping one task for me. Only thing I can think of is to try it on a clean install.Also, in the latest build
PHP:<CustomAction Code="HBRelog.SkipCurrentTask(HBRelog.CurrentProfileName);" />
This now causes HBRelog to skip TWO tasks.... No idea why since now all code is streamed and we can't even see it /sigh
You need to place the component source somewhere where it'll get compiled and loaded by HB, such as in a subfolder inside the Plugins, Bots or Routine folder
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(26,33) : error CS0234: The type or namespace name 'ComponentBase' does not exist in the namespace 'HighVoltz.Professionbuddy' (are you missing an assembly reference?)
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(27,33) : error CS0234: The type or namespace name 'Dynamic' does not exist in the namespace 'HighVoltz.Professionbuddy' (are you missing an assembly reference?)
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(28,33) : error CS0234: The type or namespace name 'PropertyGridUtilities' does not exist in the namespace 'HighVoltz.Professionbuddy' (are you missing an assembly reference?)
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(29,33) : error CS0234: The type or namespace name 'PropertyGridUtilities' does not exist in the namespace 'HighVoltz.Professionbuddy' (are you missing an assembly reference?)
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(30,33) : error CS0234: The type or namespace name 'PropertyGridUtilities' does not exist in the namespace 'HighVoltz.Professionbuddy' (are you missing an assembly reference?)
Compiler Error: c:\HB\729\Plugins\PBExtensions\DoAuction.cs(211,35) : error CS0246: The type or namespace name 'PBAction' could not be found (are you missing a using directive or an assembly reference?)
var theList = Assembly.GetEntryAssembly().GetTypes().ToList().Where(t => t.Namespace != null && t.Namespace.Contains("Professionbuddy")).ToList();
foreach(var v in theList)
{
Log(v.Namespace + " -> " + v.FullName);
}
Nothing was changed that should effect this. I've tested and it's skipping one task for me. Only thing I can think of is to try it on a clean install.
Result testCounter = 3 instead of 2.<Declaration Code="int testCounter = 1;"/>
<CustomAction Code="testCounter++;"/>
I have similar problems. Since the BuddyStore ppdate PB runs CustomAction Code twice. Profile runs fine before the update.
I made a small test Profile with just few lines of Code, same result.
Result testCounter = 3 instead of 2.
I tested with a complete fresh Installation of HB
Have the same thing.Nothing was changed that should effect this. I've tested and it's skipping one task for me. Only thing I can think of is to try it on a clean install.