RobotStudio event

No .rslib file generated

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

Best Answer

  • Gustaffson
    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.


Answers

  • 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.


    Thank you so much