Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MathNetNumerics-Exploration-2789/HeuristicLab.ExtLibs.MathNetNumerics/HeuristicLab.ExtLibs.MathNetNumerics.csproj @ 14991

Last change on this file since 14991 was 14991, checked in by gkronber, 7 years ago

#2789 implemented an alternative GaussianProcessModel which uses Math.Numerics and Intel MKL

File size: 4.8 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4  <PropertyGroup>
5    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7    <ProjectGuid>{FBD82EAE-0D8A-41FA-A8FD-EC3D1574EED5}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.ExtLibs.MathNetNumerics</RootNamespace>
11    <AssemblyName>HeuristicLab.ExtLibs.MathNetNumerics</AssemblyName>
12    <TargetFrameworkVersion>v4.5.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <NuGetPackageImportStamp>
15    </NuGetPackageImportStamp>
16    <TargetFrameworkProfile />
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>..\..\..\trunk\sources\bin\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="HeuristicLab.PluginInfrastructure-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
37      <SpecificVersion>False</SpecificVersion>
38      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="MathNet.Numerics, Version=3.19.0.0, Culture=neutral, processorArchitecture=MSIL">
41      <HintPath>..\packages\MathNet.Numerics.3.19.0\lib\net40\MathNet.Numerics.dll</HintPath>
42      <Private>True</Private>
43    </Reference>
44    <Reference Include="MathNet.Numerics.Data.Matlab, Version=3.2.1.0, Culture=neutral, processorArchitecture=MSIL">
45      <HintPath>..\packages\MathNet.Numerics.Data.Matlab.3.2.1\lib\net40\MathNet.Numerics.Data.Matlab.dll</HintPath>
46      <Private>True</Private>
47    </Reference>
48    <Reference Include="System" />
49    <Reference Include="System.Core" />
50    <Reference Include="System.Xml.Linq" />
51    <Reference Include="System.Data.DataSetExtensions" />
52    <Reference Include="Microsoft.CSharp" />
53    <Reference Include="System.Data" />
54    <Reference Include="System.Net.Http" />
55    <Reference Include="System.Xml" />
56  </ItemGroup>
57  <ItemGroup>
58    <Compile Include="Plugin.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60  </ItemGroup>
61  <ItemGroup>
62    <None Include="packages.config" />
63    <None Include="Plugin.cs.frame" />
64  </ItemGroup>
65  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
66  <Import Project="..\packages\MathNet.Numerics.MKL.Win.2.2.0\build\MathNet.Numerics.MKL.Win.targets" Condition="Exists('..\packages\MathNet.Numerics.MKL.Win.2.2.0\build\MathNet.Numerics.MKL.Win.targets')" />
67  <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
68    <PropertyGroup>
69      <ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them.  For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
70    </PropertyGroup>
71    <Error Condition="!Exists('..\packages\MathNet.Numerics.MKL.Win.2.2.0\build\MathNet.Numerics.MKL.Win.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MathNet.Numerics.MKL.Win.2.2.0\build\MathNet.Numerics.MKL.Win.targets'))" />
72  </Target>
73  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
74       Other similar extension points exist, see Microsoft.Common.targets.
75  <Target Name="BeforeBuild">
76  </Target>
77  <Target Name="AfterBuild">
78  </Target>
79  -->
80  <PropertyGroup>
81    <PreBuildEvent Condition=" '$(OS)' == 'Windows_NT' ">set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
82set ProjectDir=$(ProjectDir)
83set SolutionDir=$(SolutionDir)
84set Outdir=$(Outdir)
85
86call PreBuildEvent.cmd
87</PreBuildEvent>
88    <PreBuildEvent Condition=" '$(OS)' != 'Windows_NT' ">
89export ProjectDir=$(ProjectDir)
90export SolutionDir=$(SolutionDir)
91
92$SolutionDir/PreBuildEvent.sh
93</PreBuildEvent>
94  </PropertyGroup>
95</Project>
Note: See TracBrowser for help on using the repository browser.