forked from pieterderycke/Jace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jace.nuspec
24 lines (23 loc) · 1.56 KB
/
Jace.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?>
<package >
<metadata>
<id>Jace</id>
<version>$version$</version>
<title>Jace.NET</title>
<authors>Pieter De Rycke</authors>
<license type="expression">MIT</license>
<projectUrl>https://github.com/pieterderycke/Jace</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
Jace.NET is a high performance calculation engine for the .NET platform that can dynamically parse, interprete and execute strings containing mathematical functions. Jace.NET is available for the various .NET flavors: .NET, .NET Core, WinRT, Xamarin.Android and Xamarin.IOS.
</description>
<summary>
Jace.NET is a high performance calculation engine for the .NET platform that can dynamically parse, interprete and execute strings containing mathematical functions. Jace.NET is available for the various .NET flavors: .NET, .NET Core, WinRT, Xamarin.Android and Xamarin.IOS.
Jace can execute functions in two modes: in interpreted mode and in a dynamic compilation mode. If dynamic compilation mode is used, Jace will create a dynamic method at runtime and will generate the necessary MSIL opcodes for native execution of the function. If a function is re-executed with other variables, Jace will take the dynamically generated method from its cache. It is recommended to use Jace in dynamic compilation mode.
</summary>
<tags>math interprete parse windows phone mathematical formula calculation expression parse evaluate</tags>
<dependencies>
<group targetFramework=".NETStandard1.6" />
</dependencies>
</metadata>
</package>