EdCanHack.Exor.Compiler 2.0.0

dotnet add package EdCanHack.Exor.Compiler --version 2.0.0
NuGet\Install-Package EdCanHack.Exor.Compiler -Version 2.0.0
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="EdCanHack.Exor.Compiler" Version="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add EdCanHack.Exor.Compiler --version 2.0.0
#r "nuget: EdCanHack.Exor.Compiler, 2.0.0"
#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 EdCanHack.Exor.Compiler as a Cake Addin
#addin nuget:?package=EdCanHack.Exor.Compiler&version=2.0.0

// Install EdCanHack.Exor.Compiler as a Cake Tool
#tool nuget:?package=EdCanHack.Exor.Compiler&version=2.0.0

Exor.Compiler is a runtime compiler and ExtensionLoader factory. Intended for runtime compilation of game scripts written in C#, Exor.Compiler allows a game to pack "loose" .cs files and compile them for inclusion in the game's ExtensionLoader. Using Exor.Compiler on desktops, where CSharpCodeProvider is available, allows you (and your community) to trivially extend your projects. At the same time, the same code used in the dynamic loader on desktops can be added statically for platforms such as iOS where dynamic code loading isn't allowed--making mods on desktops easy without making life harder when you need to port to iOS, XBox One, or the PlayStation 4.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  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

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.0 1,953 4/26/2015
2.0.0-pre4 1,518 1/3/2015
2.0.0-pre3 1,673 12/24/2014
1.1.2.1 1,774 12/21/2014
1.1.2 1,838 12/21/2014
1.1.1 2,054 12/21/2014
1.1.0 1,859 12/3/2014
1.0.0 1,551 11/30/2014

2.0.0: Updated to Common.Logging 3.1.0; out of prerelease.
2.0.0-pre4: Bug fix where an error in a code source would happily crash your program.
2.0.0-pre3: Minor API changes to support an update to Common.Logging 3.0.0-alpha. ExtensionLoader now requires you to pass into it an ILog.
1.1.2.1: Fixed a bug with loading cache logic (mistaken use of Assembly.Load instead of Assembly.LoadFile).
1.1.2.0: Changed cache logic to actuallly reuse caches in the default case (instead of a GUID, breaking all saved caches).
     1.1.1.0: Updated to enable PDB generation.