|
|
|
@ -1,8 +1,6 @@ |
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
<PropertyGroup> |
|
|
|
<!--<TargetFrameworks>net45;netstandard1.6</TargetFrameworks>--> |
|
|
|
<!--<TargetFramework>netstandard1.6</TargetFramework>--> |
|
|
|
<TargetFramework>net45</TargetFramework> |
|
|
|
<TargetFrameworks>net45;netstandard1.6</TargetFrameworks> |
|
|
|
<DisableImplicitFSharpCoreReference>true</DisableImplicitFSharpCoreReference> |
|
|
|
<AssemblyName>MathNet.Numerics.FSharp</AssemblyName> |
|
|
|
<RootNamespace>MathNet.Numerics</RootNamespace> |
|
|
|
@ -11,10 +9,28 @@ |
|
|
|
<EnableDefaultCompileItems>false</EnableDefaultCompileItems> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(TargetFramework)'=='netstandard1.6'"> |
|
|
|
<DefineConstants>NETSTANDARD;NOSYSNUMERICS</DefineConstants> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
|
|
|
<DebugSymbols>true</DebugSymbols> |
|
|
|
<DebugType>full</DebugType> |
|
|
|
<Optimize>false</Optimize> |
|
|
|
<Tailcalls>false</Tailcalls> |
|
|
|
<OutputPath>bin\Debug\</OutputPath> |
|
|
|
</PropertyGroup> |
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> |
|
|
|
<DebugType>pdbonly</DebugType> |
|
|
|
<Optimize>true</Optimize> |
|
|
|
<Tailcalls>true</Tailcalls> |
|
|
|
<OutputPath>bin\Release\</OutputPath> |
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
<Import Project="$(FSharpTargetsPath)" Condition="Exists('$(FSharpTargetsPath)')" /> |
|
|
|
<ItemGroup> |
|
|
|
<Reference Include="mscorlib" /> |
|
|
|
<PackageReference Include="FSharp.Core" Version="4.2.*" Private="True" /> |
|
|
|
<PackageReference Include="FSharp.NET.Sdk" Version="1.0.*" PrivateAssets="All" /> |
|
|
|
<PackageReference Include="FSharp.Core" Version="4.2.*" PrivateAssets="All" /> |
|
|
|
<ProjectReference Include="..\Numerics\Numerics.csproj" /> |
|
|
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
|
|
|