Stateless Console and how to overcome it
Submitted by Sunday, 12 September, 2004 - 19:09
on
When I want to compile C# source code within jEdit I encounter a problem with nonpersistent (stateless) Console plugin. Every command is executed in newly initialized shell which is a big problem for .NET Framework SDK. It uses sdkvars.bat to estabilish development environment within the shell (it sets apropriate paths etc.) but this settings seems to be valid only for one session. For example to compile "source.cs", i need to write:
But how can I acomplish this within stateless console plugin?
...> sdkvars.bat [some output from the bat] ...> csc source.cs
But how can I acomplish this within stateless console plugin?