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.
27 lines
1.0 KiB
27 lines
1.0 KiB
<!--
|
|
*
|
|
* MathNet.Numerics.OpenBLAS.Win.targets
|
|
*
|
|
* WARNING: This MSBuild file requires MSBuild 4.0 features.
|
|
*
|
|
-->
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<!--
|
|
******************************************************************************
|
|
** MathNet Interop Library Files **
|
|
******************************************************************************
|
|
-->
|
|
|
|
<ItemGroup Condition="'$(MSBuildThisFileDirectory)' != '' And
|
|
HasTrailingSlash('$(MSBuildThisFileDirectory)')">
|
|
<!--
|
|
NOTE: Copy "MathNet.Numerics.OpenBLAS.dll" and all related files, for every
|
|
architecture that we support, to the build output directory.
|
|
-->
|
|
<MathNetInteropFiles Include="$(MSBuildThisFileDirectory)**\*.dll" />
|
|
<Content Include="@(MathNetInteropFiles)">
|
|
<Link>%(RecursiveDir)%(FileName)%(Extension)</Link>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|
|
|