RE: Debug C# dll for Small Package Shipment
Hi Mack,
apologies for not answering earlier. I've been meaning to put up a blog post about this but I kept getting dragged in other matters.
I'll put one up in my blog at some point but you probably can't wait till then, so here is the quick version.
In your ratting engine c# project, - only for the Tier 1 machine, you have to copy the resulting dll into the ApplicationSuite\bin folder. The tutorial will not mention this but if you debug the part where it tries to find the engine, you'll see that it only looks in the ApplicationSuite model. Without this it won't run your engine
Additionally you need to copy the pdb file and the dll (which has your debug symbols into your model's meta data bin folder.
Once you do this it should be able to debug but if you're stuck drop me a line here or on linkedin and I'll try to give you a call (its been a while so memory is a bit fuzzy)
This might help you - in the Post Build Events I added the following steps so that what I said above is done automatically:
xcopy /R /Y "$(TargetDir)$(ProjectName).dll" "K:\AosService\PackagesLocalDirectory\MYRateEngine\bin\$(ProjectName).dll"
xcopy /R /Y "$(TargetDir)$(ProjectName).pdb" "K:\AosService\PackagesLocalDirectory\MYRateEngine\bin\$(ProjectName).pdb"
xcopy /R /Y "$(TargetDir)$(ProjectName).dll" "K:\AosService\PackagesLocalDirectory\ApplicationSuite\bin\$(ProjectName).dll"