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.
40 lines
1.5 KiB
40 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;netstandard1.6</TargetFrameworks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AssemblyName>MathNet.Numerics.FSharp</AssemblyName>
|
|
<RootNamespace>MathNet.Numerics</RootNamespace>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<OutputType>Library</OutputType>
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
|
|
<DefineConstants>NETSTANDARD;NOSYSNUMERICS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Numerics\Numerics-2017.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>
|
|
</Project>
|
|
|