CS-Script.lib 3.26.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CS-Script.lib --version 3.26.2
NuGet\Install-Package CS-Script.lib -Version 3.26.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CS-Script.lib" Version="3.26.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CS-Script.lib --version 3.26.2
#r "nuget: CS-Script.lib, 3.26.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install CS-Script.lib as a Cake Addin
#addin nuget:?package=CS-Script.lib&version=3.26.2

// Install CS-Script.lib as a Cake Tool
#tool nuget:?package=CS-Script.lib&version=3.26.2

Class Library assembly for the CS-Script engine (no dependencies). CS-Script is a CLR (Common Language Runtime) based scripting system which uses ECMA-compliant C# as a programming language.
This package distributes only the raw CS-Script engine so you can use it (if required) with untested dependencies (e.g. any version of Roslyn).

Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on CS-Script.lib:

Package Downloads
CS-Script.lib.Roslyn

Class Library assembly for the CS-Script engine (no dependencies). CS-Script is a CLR (Common Language Runtime) based scripting system which uses ECMA-compliant C# as a programming language. This package distributes only the raw CS-Script engine so you can use it (if required) with untested dependencies (e.g. any version of Roslyn).

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on CS-Script.lib:

Repository Stars
leezer3/OpenBVE
OpenBVE- A free train simulator
Version Downloads Last updated
3.30.5.1 50,049 12/21/2020
3.30.5-pre 796 12/20/2020
3.30.4 1,007 12/12/2020
3.30.3 40,928 5/30/2020
3.30.2-HotFix 857 4/27/2020
3.30.1.1-HotFix 1,053 1/17/2020
3.30.1-HotFix 935 12/17/2019
3.30.0 29,685 10/14/2019
3.29.0 17,462 5/22/2019
3.28.7 11,642 9/2/2018
3.28.4 6,241 4/28/2018
3.28.2 2,628 3/15/2018
3.28.0.1 2,624 2/5/2018
3.28.0 3,649 2/4/2018
3.27.2 9,177 8/11/2017
3.27.0 2,005 7/19/2017
3.26.2 1,672 6/30/2017
3.25.1 4,009 3/23/2017
3.24.2 1,686 3/5/2017
3.24.0 1,548 2/14/2017
3.22.0 1,506 1/30/2017
3.21.1 1,530 1/25/2017
3.18.1 1,881 12/3/2016

# Release v3.26.2.0
Significant usability improvements particularly for supporting C# 7 on Mono/Linux. As well as the features triggered by VSCode integration.

* Linux support
 - Added "/debug:pdbonly" workaround to allow generation of debug symbols on Linux+Mono. Needed as Mono "/debug+" is broken on Linux.
 - Added resolving GAC assemblies from namespaces Mono/Linux
 - Added on-fly conversion of *.pdb to *.mdb under Mono
 - Patched Microsoft.CodeDom.Providers.DotNetCompilerPlatform to allow using Roslyn on Linux. This work around allows custom compiler (csc.exe) path and handles Mono problem when interfacing Roslyn (C#7). This is a work around for https://bugzilla.xamarin.com/show_bug.cgi?id=57130
 - Moved lock objects (*.lock files) on Linux away (to cache) from the actual folders where the files to be locked are. Just to stop pouting the file system

* Deployment
 - Default CS-Script code provider renamed to CSSRoslynProvider.dll.
 - Default code provider CSSRoslynProvider.dll embeds patched Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll to allow simplified low footprint deployment.
 - Added auto-loading CSSRoslynProvider.dll if found in the script engine folder.
 - Added resolving code provider when it is specified by file name without extension

* C# 7 and general improvements
 - `dbg.print` extended with direct support for IDictionary.
 - Added alias to the '-provider' switch: '-pvdr'
 - Added fully named equivalent of '-s' switch: '-sample'
 - Added C# 7 specific sample with '-s:7' switch
 - Added '-tc' switch for tracing the actual compiler input for CSSRoslynProvider.dll
 - Script engine assembly (e.g. cscs.exe) has been exposed to the precompiler routines.
 - Added ScriptParser.ProcessImportedScript to be used from precompilers.

* Assorted defect fixes:
 - Issue #70: Minor issue related to platform dependent line breaks, e.g. in error messages
 - Issue #69: Basic types not available to precompilers on linux
 - Issue #68: Add option to take Main from primary script file
 - Issue #67: Same script, multiple concurrent instances, on Linux (again)