Revision: 4416
Author: [email protected]
Date: Mon Dec 6 14:39:12 2010
Log: Edited wiki page HowToUseCSharp through web user interface.
http://code.google.com/p/robotframework/source/detail?r=4416
Modified:
/wiki/HowToUseCSharp.wiki
=======================================
--- /wiki/HowToUseCSharp.wiki Mon Dec 6 14:11:49 2010
+++ /wiki/HowToUseCSharp.wiki Mon Dec 6 14:39:12 2010
@@ -8,7 +8,21 @@
= Getting and running the example =
-xxxxxxx
+Create a file ipybot.bat as follows. Make sure to
replace[IRONPYTHON_INSTALL_FOLDER] with the installation path of IronPython
on your system:
+
+{{{
+:: IronPython executable to use.
+
+set ironpython="[IRONPYTHON_INSTALL_FOLDER]\ipy.exe"
+
+:: Path to robot\runner.pypath
+
+set runner="[IRONPYTHON_INSTALL_FOLDER]\lib\site-packages\robot\runner.py"
+
+:: Run Robot on IronPython interpreter
+
+%ironpython% %runner% %*
+}}}
= Introduction =