IDS Peak comfortSDK, genericSDK, IPL, and AFL developer manuals are external documents. Please contact us if you need them.
If you need to configure a project in Visual Studio manually, perform the following steps:
1.Create a project in Visual Studio.
2.Insert additional references (right-click References in project folder explorer):
$(IDS_PEAK_GENERIC_SDK_PATH)\api\binding\dotnet\x86_64\ids_peak_dotnet.dll;$(IDS_PEAK_GENERIC_SDK_PATH)\ipl\binding\dotnet\x86_64\ids_peak_ipl_dotnet.dll
3.Open the project properties by double-clicking "Properties" in the project folder explorer.
4.Correct the target platform in the "Build" tab.
5.Define the post-build event by command line in the "Build Events" tab:
copy "$(IDS_PEAK_GENERIC_SDK_PATH)\api\lib\x86_64\*.dll " "$(TargetDir)"
copy "$(IDS_PEAK_GENERIC_SDK_PATH)\api\binding\dotnet\x86_64\*.dll " "$(TargetDir)"
copy "$(IDS_PEAK_GENERIC_SDK_PATH)\ipl\lib\x86_64\*.dll " "$(TargetDir)"
copy "$(IDS_PEAK_GENERIC_SDK_PATH)\ipl\binding\dotnet\x86_64\*.dll " "$(TargetDir)"
Fig. 270: References
Fig. 271: Target platform
Fig. 272: Build events
Test the configuration with a short test code, e.g.
Program-cs (genericC#) |
---|
using System; |