InterpreterDll 1.0.0
See the version list below for details.
dotnet add package InterpreterDll --version 1.0.0
NuGet\Install-Package InterpreterDll -Version 1.0.0
<PackageReference Include="InterpreterDll" Version="1.0.0" />
paket add InterpreterDll --version 1.0.0
#r "nuget: InterpreterDll, 1.0.0"
// 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 | Versions 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. |
.NET Core | netcoreapp2.1 is compatible. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
-
.NETCoreApp 2.1
- Microsoft.Extensions.Configuration (>= 2.1.1)
- Microsoft.Extensions.Configuration.Json (>= 2.1.1)
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 | 8,407 | 7/14/2020 |
2018.7.13.3 | 1,396 | 7/13/2018 |
2018.7.13.2 | 919 | 7/13/2018 |
1.0.0 | 926 | 7/13/2018 |
first version