No .rslib file generated

Gustaffson
Netherlands ✭
Hi Everyone,
The problem:
My code outputs all types of files exept the file I want because the .rslib file is nowhere to be found.
Did anyone came across this already and do you have a solution because now I am stuck. I use the exact code as in the how to guide.
With kind regards,
Nick
I am following the how to create a smart component guide (RobotStudio SDK, https://developercenter.robotstudio.com/api/robotstudio/articles/How-To/SmartComponent/Creating-a-SmartComponent.html )
The problem:
My code outputs all types of files exept the file I want because the .rslib file is nowhere to be found.
Did anyone came across this already and do you have a solution because now I am stuck. I use the exact code as in the how to guide.
With kind regards,
Nick
Best Answer
-
Problem solved!
The problem was caused in the Post-build event command line.
Wrong way (this was automaticly set in VS):
copy /y "$(TargetPath)" "$(ProjectDir)"
"D:\RobotStudio\Bin\LibraryCompiler.exe" "$(ProjectDir)SCTest2.xml"Right way:
"D:\RobotStudio\Bin\LibraryCompiler.exe" "$(ProjectDir)SCTest2.xml"copy /y "$(TargetPath)" "$(ProjectDir)"
So you have to swap the post-build event lines if you have the same problem.