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.
38 lines
1.5 KiB
38 lines
1.5 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net45;netcoreapp1.1;netcoreapp2.0</TargetFrameworks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.6'">
|
|
<DefineConstants>NETSTANDARD;NOSYSNUMERICS</DefineConstants>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="FsUnit" Version="3.0.*" />
|
|
<PackageReference Include="NUnit" Version="3.8.*" />
|
|
<PackageReference Include="NUnitLite" Version="3.8.*" />
|
|
<ProjectReference Include="..\FSharp\FSharp-2017.fsproj" />
|
|
<ProjectReference Include="..\TestData\TestData-2017.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="AssemblyInfo.fs" />
|
|
<Compile Include="VectorTests.fs" />
|
|
<Compile Include="SparseVectorTests.fs" />
|
|
<Compile Include="DenseVectorTests.fs" />
|
|
<Compile Include="MatrixTests.fs" />
|
|
<Compile Include="SparseMatrixTests.fs" />
|
|
<Compile Include="DenseMatrixTests.fs" />
|
|
<Compile Include="Utilities.fs" />
|
|
<Compile Include="BigRationalTests.fs" />
|
|
<Compile Include="RandomVariableTests.fs" />
|
|
<Compile Include="PokerTests.fs" />
|
|
<Compile Include="FitTests.fs" />
|
|
<Compile Include="FindRootsTests.fs" />
|
|
<Compile Include="QuaternionTests.fs" />
|
|
<Compile Include="Main.fs" />
|
|
<None Include="paket.references" />
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
</Project>
|
|
|