Free cookie consent management tool by TermsFeed Policy Generator

source: branches/MathNetNumerics-Exploration-2789/Main/Main.csproj @ 15450

Last change on this file since 15450 was 15450, checked in by gkronber, 6 years ago

#2789 more tests with CV and automatic determination of smoothing parameter

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>{2A18146C-C727-4B58-AD69-D175275FE97F}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>Main</RootNamespace>
11    <AssemblyName>Main</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <PlatformTarget>AnyCPU</PlatformTarget>
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25    <Prefer32Bit>false</Prefer32Bit>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <PlatformTarget>AnyCPU</PlatformTarget>
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="ALGLIB-3.7.0">
38      <HintPath>..\..\..\trunk\sources\bin\ALGLIB-3.7.0.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
41      <SpecificVersion>False</SpecificVersion>
42      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" />
45    <Reference Include="HeuristicLab.Common-3.3">
46      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
47    </Reference>
48    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" />
49    <Reference Include="HeuristicLab.Optimization-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec" />
50    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4, Version=3.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
51      <SpecificVersion>False</SpecificVersion>
52      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
53    </Reference>
54    <Reference Include="HeuristicLab.Problems.Instances-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
55      <SpecificVersion>False</SpecificVersion>
56      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances-3.3.dll</HintPath>
57    </Reference>
58    <Reference Include="HeuristicLab.Problems.Instances.DataAnalysis-3.3">
59      <HintPath>..\..\..\trunk\sources\bin\HeuristicLab.Problems.Instances.DataAnalysis-3.3.dll</HintPath>
60    </Reference>
61    <Reference Include="System" />
62    <Reference Include="System.Core" />
63    <Reference Include="System.Xml.Linq" />
64    <Reference Include="System.Data.DataSetExtensions" />
65    <Reference Include="Microsoft.CSharp" />
66    <Reference Include="System.Data" />
67    <Reference Include="System.Net.Http" />
68    <Reference Include="System.Xml" />
69  </ItemGroup>
70  <ItemGroup>
71    <Compile Include="Program.cs" />
72    <Compile Include="Properties\AssemblyInfo.cs" />
73  </ItemGroup>
74  <ItemGroup>
75    <None Include="App.config" />
76  </ItemGroup>
77  <ItemGroup>
78    <ProjectReference Include="..\HeuristicLab.Algorithms.DataAnalysis.Experimental\HeuristicLab.Algorithms.DataAnalysis.Experimental.csproj">
79      <Project>{d97f91b5-b71b-412d-90a5-177eed948a3a}</Project>
80      <Name>HeuristicLab.Algorithms.DataAnalysis.Experimental</Name>
81    </ProjectReference>
82  </ItemGroup>
83  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
84  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
85       Other similar extension points exist, see Microsoft.Common.targets.
86  <Target Name="BeforeBuild">
87  </Target>
88  <Target Name="AfterBuild">
89  </Target>
90  -->
91</Project>
Note: See TracBrowser for help on using the repository browser.