csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
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.
35 lines
1.7 KiB
35 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net45;netcoreapp1.1;netcoreapp2.0</TargetFrameworks>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<AssemblyName>MathNet.Numerics.UnitTests</AssemblyName>
|
|
<RootNamespace>MathNet.Numerics.UnitTests</RootNamespace>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="$(TargetFramework.Contains('netcoreapp')) OR $(TargetFramework.Contains('netstandard'))">
|
|
<DefineConstants>NETSTANDARD</DefineConstants>
|
|
</PropertyGroup>
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net45'">
|
|
<Reference Include="System" />
|
|
<Reference Include="System.Core" />
|
|
<Reference Include="System.Numerics" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
<Reference Include="System.Runtime.Serialization" />
|
|
<Reference Include="System.Xml" />
|
|
</ItemGroup>
|
|
<ItemGroup Condition="$(TargetFramework.Contains('netcoreapp')) OR $(TargetFramework.Contains('netstandard'))">
|
|
<PackageReference Include="System.Reflection" Version="4.3.*" />
|
|
<PackageReference Include="System.Reflection.Extensions" Version="4.3.*" />
|
|
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.4.*" />
|
|
<PackageReference Include="System.Threading.Tasks.Parallel" Version="4.3.*" />
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.3.*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="NUnit" Version="3.9.0" />
|
|
<PackageReference Include="NUnitLite" Version="3.9.0" />
|
|
<ProjectReference Include="..\Numerics\Numerics.csproj" />
|
|
<ProjectReference Include="..\TestData\TestData.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|