InterpreterDll 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package InterpreterDll --version 1.0.0
NuGet\Install-Package InterpreterDll -Version 1.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="InterpreterDll" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add InterpreterDll --version 1.0.0
#r "nuget: InterpreterDll, 1.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 InterpreterDll as a Cake Addin
#addin nuget:?package=InterpreterDll&version=1.0.0

// Install InterpreterDll as a Cake Tool
#tool nuget:?package=InterpreterDll&version=1.0.0

If you have this kind of strings that are serialized and you want to deserialize:

“ConnectionString”:”#file:SqlServerConnectionString#”,

“FileName”: “SendTo#now:yyyyMMdd#.csv”,

“DriveRoot”:”@static:Path.GetPathRoot(#static:Directory.GetCurrentDirectory()#)@”

“NameSln”:”@static:System.IO.Path.GetFileNameWithoutExtension(#env:solutionPath#)@”,

“newFileName”:”#guid:N#.csv”

the Interpreter is for you.

The first item will be interpreted as ConnectionString : “Server=(local)\SQL2016;Database=tempdb;Trusted_Connection=True;”

The second item will be interpreted as FileName: “SendTo20180710.csv”

The third item will call the static functions( Directory.GetCurrentDirectory() , Path.GetPathRoot) from C# and return the result

The fourth item will call Environment variable solutionPath and give back as an argument to the static function System.IO.Path.GetFileNameWithoutExtension

The fifth will call Guid.NewGuid().ToString(“N”)

More details at

http://msprogrammer.serviciipeweb.ro/category/interpreter/

Open source at https://github.com/ignatandrei/Interpreter

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on InterpreterDll:

Package Downloads
CLIExecute

This program will execute ASP.NET Core WebAPI from Command Line. Can be usefull for a CI integration or just making a demo. Please see https://github.com/ignatandrei/WebAPI2CLI for details Please see http://msprogrammer.serviciipeweb.ro/category/WEBAPI2CLI/ about how I made it.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2020.7.14.5 7,276 7/14/2020
2018.7.13.3 1,352 7/13/2018
2018.7.13.2 885 7/13/2018
1.0.0 884 7/13/2018

first version