CS-Script.bin 3.26.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CS-Script.bin --version 3.26.2
NuGet\Install-Package CS-Script.bin -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.bin" 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.bin --version 3.26.2
#r "nuget: CS-Script.bin, 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.bin as a Cake Addin
#addin nuget:?package=CS-Script.bin&version=3.26.2

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

Class Library assembly for the CS-Script engine. CS-Script is a CLR (Common Language Runtime) based scripting system which uses ECMA-compliant C# as a programming language.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on CS-Script.bin:

Package Downloads
CS-Script.RoslynProvider

The CodeDom provider for CS-Script Class Library that targets Roslyn.

LightNet.ScriptEngine.CSharp

基于LightNet,以CS-Script作为脚本引擎的扩充

GitHub repositories (5)

Showing the top 5 popular GitHub repositories that depend on CS-Script.bin:

Repository Stars
fdorg/flashdevelop
FlashDevelop is a free and open source code editor.
dukus/digiCamControl
DSLR camera remote control open source software
SparkDevNetwork/Rock
An open source CMS, Relationship Management System (RMS) and Church Management System (ChMS) all rolled into one.
vchelaru/FlatRedBall
Cross-platform 2D game engine focused on ultimate productivity built in .NET
FransBouma/RawDataAccessBencher
Bench code which tests entity materialization speed of various .NET data access / ORM implementations
Version Downloads Last updated
3.30.5.1 81,895 12/21/2020
3.30.5-pre 466 12/20/2020
3.30.4 3,150 12/12/2020
3.30.3 23,767 5/30/2020
3.30.2-HotFix 1,009 4/27/2020
3.30.1-HotFix 8,412 12/17/2019
3.30.0 87,634 10/14/2019
3.29.0 289,660 5/22/2019
3.28.7 21,462 9/2/2018
3.28.4 35,350 4/28/2018
3.28.2 4,762 3/15/2018
3.28.0.1 4,561 2/5/2018
3.28.0 1,220 2/4/2018
3.27.2 11,000 8/11/2017
3.27.0 3,664 7/19/2017
3.26.2 1,805 6/30/2017
3.25.1 6,533 3/23/2017
3.24.2 18,666 3/5/2017
3.24.0 14,229 2/14/2017
3.22.0 2,997 1/30/2017
3.21.1 30,589 1/25/2017
3.19.0 14,727 12/12/2016
3.18.1 4,432 11/16/2016
3.16.0 16,157 10/26/2016
3.14.0 15,216 8/3/2016
3.13.2 31,930 7/7/2016
3.13.1 2,344 7/7/2016
3.12.2.1 10,484 5/14/2016
3.12.1 2,320 3/30/2016
3.12.0.1 6,802 3/22/2016
3.11.1-HotFix 1,016 2/5/2016
3.11.0.1 6,042 2/3/2016
3.11.0 9,319 2/3/2016
3.10.0 31,306 1/12/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)