forked from tsai/mathnet-numerics
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
2.3 KiB
39 lines
2.3 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net40;net461;netstandard1.3;netstandard2.0</TargetFrameworks>
|
|
<AssemblyName>MathNet.Numerics</AssemblyName>
|
|
<RootNamespace>MathNet.Numerics</RootNamespace>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>MathNet.Numerics$(PackageIdSuffix)</PackageId>
|
|
<VersionPrefix>4.8.0</VersionPrefix>
|
|
<VersionSuffix></VersionSuffix>
|
|
<Title>Math.NET Numerics$(TitleSuffix)</Title>
|
|
<Description>Math.NET Numerics is the numerical foundation of the Math.NET project, aiming to provide methods and algorithms for numerical computations in science, engineering and every day use. Supports .Net Framework 4.0 or higher and .Net Standard 1.3 or higher, on Windows, Linux and Mac.$(DescriptionSuffix)</Description>
|
|
<PackageReleaseNotes>Optimization: Levenberg-Marquardt, Trust-Region Dogleg ~Jong Hyun Kim
|
|
Optimization: Nelder-Mead-Simplex: Improve convergence for symmetrical functions ~Erik Ovegard
|
|
BUG: Optimization: Nelder-Mead-Simplex did not return the best evaluated point in some cases ~Eric Scott Salem
|
|
Factorial: first 170 values now constant (data segment) instead of precomputed on first use ~Portalez Regis
|
|
Window Functions: Tukey window ~Marco Ross</PackageReleaseNotes>
|
|
<PackageTags>math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
|
|
<IsTool>false</IsTool>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<NoPackageAnalysis>false</NoPackageAnalysis>
|
|
<IncludeBuildOutput>true</IncludeBuildOutput>
|
|
<IncludeContentInPack>false</IncludeContentInPack>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
|
|
<NoWarn>1701;1702;1705;1591;1573</NoWarn>
|
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net40'">
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Numerics" />
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
</ItemGroup>
|
|
<Import Project="..\..\.paket\Paket.Restore.targets" />
|
|
</Project>
|
|
|