-
Any chance something like this http://www.strathweb.com/2016/06/implementing-custom-load-behavior-in-roslyn-scripting/ can be incorporated? It allows for loading csx files over http, e.g. #load http:/…
-
This will support use cases where one wants to compile in memory and get the generated assembly in order to reuse it. This can be done today but it requires one to write their own custom executor whic…
-
How can I tell scriptcs to target x86 on my 64bit win7 box?
I have a COM object dependency that means my app needs to be 32bit, and my script is throwing a Exception from HRESULT: 0x80040154 (REGDB_…
-
In console application I can set a global exception handler (http://stackoverflow.com/questions/3133199/net-global-exception-handler-in-console-application). I've tried the example in ScriptCS but it …
-
Whilst the 0.10 fixes now allow me to start REPL in the scriptcs root folder, when I try and execute some code, an exception is thrown and the code is not executed:
![image](https://cloud.githubuserc…
-
This will allow:
- Isolating the script so that it runs in its own sandbox
- Ultimately being able to replace the scripts at runtime (on the fly) without restarting the app
-
### URL
https://dotnet.microsoft.com/en-us/learn/dotnet/hello-world-tutorial/create
### Operating system
windows
### More information about your system
_No response_
### Description
scriptcs :…
seyfy updated
1 month ago
-
As an enhancement to https://github.com/adamralph/scriptcs-nancy/issues/12 instead of having to do:
``` C#
> nancy.Start();
> #load "somemodules.csx"
> nancy.Refresh();
> #r "SomeMoreModules.dll"
> n…
-
Currently if I try to run scriptcs script file (.csx) within a solution folder it picks up "packages" folder created by ripple (NuGet package manager from Fubu) and fails miserably.
The name of the fo…
-
Currently we do a lot of unnecessary work when loading from the cache. We need a fast path that does the bare minimum necessary to load i.e. not loading modules or instantiating of the scriptcs servic…