Dear readers,
this Blog is closed and will never be updated.
If you like this project, you are welcome to take it over.
See you.
Dear readers,
this Blog is closed and will never be updated.
If you like this project, you are welcome to take it over.
See you.
I just have started to publish a documentation about available commands.
I can look at it here: http://www.codeplex.com/CSScript/Wiki/View.aspx?title=Documentation
Sorry for the delays...
I am glad to tell you that a new release is avaliable for download.
Codeplex Download
The current Version is 0.8.
it is a stable runtime for your C# Scripts.
Some Features:
Some people asking me "is the project still alive ?".
The Answer is YES.
Currently we working on Version 0.2.
Main Workitems are:
With just two steps you can use VisualStudio to edit your CSScript -Files (*.csr).
#region HEADER
#if CSSRIPT
//place for the C#Script - Directives
loadASM "System.Windows.Forms.dll";
#else
//ignore this part
public class vsdummy
{
public void Main()
{
#endif
#endregion
//######################
//start of script - code
//######################
string msg = "Hello World";
for(int i=0;i<3;i++) msg+=String.Format("\n{0}...",i);
System.Windows.Forms.MessageBox.Show(msg, "CSSCript - Sample");
//####################
//end of script - code
//####################
#if !CSSRIPT
}
}
#endif
Calling Convention: void loadAsm [AssemblyName];
This command load .net assemblys which needed to execute the script.
Please look at the following restrictions:
The firt CSScript - Runtime (V0.0.1 - Prototype) ist just released here:
http://www.codeplex.com/CSScript/Release/ProjectReleases.aspx?ReleaseId=8886
You can run some simple scripts like these:
loadASM "System.Windows.Forms.dll";
string msg = "Hello World";
for(int i=0;i<3;i++) msg+=String.Format("\n{0}...",i);
System.Windows.Forms.MessageBox.Show(msg, "CSSCript - Sample");
We have decided to publish this project under the GNU General Public License, Version 2.
Feel free to download it here.
I just started the C# Script - Project.
Targets of the project are: