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.
73 lines
3.7 KiB
73 lines
3.7 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFrameworks>net45;netstandard1.6;netstandard2.0</TargetFrameworks>
|
|
<NetStandardImplicitPackageVersion>2.0.1</NetStandardImplicitPackageVersion>
|
|
<AssemblyName>MathNet.Numerics.FSharp</AssemblyName>
|
|
<RootNamespace>MathNet.Numerics</RootNamespace>
|
|
<IsPackable>true</IsPackable>
|
|
<PackageId>MathNet.Numerics.FSharp</PackageId>
|
|
<VersionPrefix>4.0.0</VersionPrefix>
|
|
<VersionSuffix>beta03</VersionSuffix>
|
|
<PackageVersion>4.0.0-beta03</PackageVersion>
|
|
<Version>4.0.0-beta03</Version>
|
|
<AssemblyVersion>4.0.0.0</AssemblyVersion>
|
|
<FileVersion>4.0.0.0</FileVersion>
|
|
<Title>Math.NET Numerics for F#</Title>
|
|
<Authors>Christoph Ruegg, Marcus Cuda, Jurgen Van Gael</Authors>
|
|
<Company>Math.NET Project</Company>
|
|
<Product>Math.NET Numerics</Product>
|
|
<Description>F# Modules for Math.NET Numerics, 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.5 or higher and .Net Standard 1.6 or higher, on Windows, Linux and Mac.</Description>
|
|
<Copyright>Copyright Math.NET Project</Copyright>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<PackageLicenseUrl>https://numerics.mathdotnet.com/License.html</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://numerics.mathdotnet.com/</PackageProjectUrl>
|
|
<PackageIconUrl>https://www.mathdotnet.com/images/MathNet128.png</PackageIconUrl>
|
|
<PackageReleaseNotes>Optimization: Limited-Memory BFGS ~Florian Wechsung
|
|
BUG: Trigonometry: Fix imaginary part sign of complex hyperbolic cotangent</PackageReleaseNotes>
|
|
<PackageTags>fsharp F# math numeric statistics probability integration interpolation regression solve fit linear algebra matrix fft</PackageTags>
|
|
<IsTool>false</IsTool>
|
|
<RepositoryUrl>https://github.com/mathnet/mathnet-numerics</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<NeutralLanguage>en</NeutralLanguage>
|
|
<NoPackageAnalysis>false</NoPackageAnalysis>
|
|
<IncludeBuildOutput>true</IncludeBuildOutput>
|
|
<IncludeContentInPack>false</IncludeContentInPack>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
<NoWarn>FS2003</NoWarn>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
|
|
<DefineConstants>NETSTANDARD</DefineConstants>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
|
|
<DefineConstants>NETSTANDARD</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Numerics\Numerics.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="Compatibility.fs" />
|
|
<Compile Include="Statistics.fs" />
|
|
<Compile Include="Random.fs" />
|
|
<Compile Include="Distributions.fs" />
|
|
<Compile Include="Generate.fs" />
|
|
<Compile Include="LinearAlgebra.Vector.fs" />
|
|
<Compile Include="LinearAlgebra.Matrix.fs" />
|
|
<Compile Include="Complex.fs" />
|
|
<Compile Include="BigIntegerExtensions.fs" />
|
|
<Compile Include="BigRational.fsi" />
|
|
<Compile Include="BigRational.fs" />
|
|
<Compile Include="Differentiate.fs" />
|
|
<Compile Include="Fit.fs" />
|
|
<Compile Include="FindRoots.fs" />
|
|
<Compile Include="RandomVariable.fs" />
|
|
<Compile Include="Quaternion.fs" />
|
|
<None Include="MathNet.Numerics.fsx" />
|
|
<None Include="MathNet.Numerics.IfSharp.fsx" />
|
|
</ItemGroup>
|
|
<Import Project="..\..\.paket\Paket.Restore.targets" />
|
|
</Project>
|
|
|