21 lines
863 B
Plaintext
21 lines
863 B
Plaintext
Automation Interface Sample Application
|
|
-----------------------------------------
|
|
|
|
To get the Sample Application running follow these steps:
|
|
|
|
1. Add a reference to your project to the file 'Tecan.At.Dragonfly.AutomationInterface.dll'.
|
|
This file is located in the Clients folder usually under C:\Program Files\Tecan\SparkControl.
|
|
|
|
2. In Visual Studio project post build event add call to a powershell script.
|
|
The script is called 'CopyAdditionalAutomationInterfaceFiles.ps1' and is located in the same folder as the 'AutomationInterface.dll'.
|
|
|
|
Example:
|
|
powershell.exe <your path>\CopyAdditionalAutomationInterfaceFiles.ps1 $(TargetDir)
|
|
|
|
|
|
Remark:
|
|
It might be necessary that you add following call in your pre-build step:
|
|
|
|
powershell.exe Set-ExecutionPolicy -Scope CurrentUser -ExecutionPolicy Unrestricted -Force;
|
|
|
|
Try it first without this call! |