-
Notifications
You must be signed in to change notification settings - Fork 369
Closed
Description
This is in the current release, i.e. 0.13.3 on Choco.
IIRC, we had some kind of 'de-duplication' of references at one time but it seems to have disappeared. I think what we require is a more general version of the changes that went into the dev branch recently for the scriptcs assemblies (
scriptcs/src/ScriptCs.Core/ScriptExecutor.cs
Lines 66 to 67 in af885ff
| .Where(assembly => | |
| assembly != typeof(ScriptExecutor).Assembly && assembly != typeof(IScriptEnvironment).Assembly)) |
scriptcs/src/ScriptCs.Core/ScriptExecutor.cs
Lines 88 to 96 in af885ff
| .Where(path => | |
| !string.Equals( | |
| Path.GetFileName(path), | |
| Path.GetFileName(typeof(ScriptExecutor).Assembly.Location), | |
| StringComparison.OrdinalIgnoreCase) && | |
| !string.Equals( | |
| Path.GetFileName(path), | |
| Path.GetFileName(typeof(IScriptEnvironment).Assembly.Location), | |
| StringComparison.OrdinalIgnoreCase))) |
Unless we can push out 0.14 soon I think this should be a patch on master (0.13.4) but I'd prefer someone else to reproduce and confirm the issue first.
