Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Modeling/3.3/HeuristicLab.Modeling-3.3.csproj @ 2440

Last change on this file since 2440 was 1914, checked in by epitzer, 15 years ago

Migration of DataAnalysis, GP, GP.StructureIdentification and Modeling to new Persistence-3.3 (#603)

File size: 6.5 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{3A5ACA94-47A7-47D6-B644-2B8A7503FCCC}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Modeling</RootNamespace>
12    <AssemblyName>HeuristicLab.Modeling-3.3</AssemblyName>
13    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <SignAssembly>true</SignAssembly>
16    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</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>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
36    <DebugSymbols>true</DebugSymbols>
37    <OutputPath>bin\x86\Debug\</OutputPath>
38    <DefineConstants>DEBUG;TRACE</DefineConstants>
39    <DebugType>full</DebugType>
40    <PlatformTarget>x86</PlatformTarget>
41    <ErrorReport>prompt</ErrorReport>
42  </PropertyGroup>
43  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
44    <OutputPath>bin\x86\Release\</OutputPath>
45    <DefineConstants>TRACE</DefineConstants>
46    <Optimize>true</Optimize>
47    <DebugType>pdbonly</DebugType>
48    <PlatformTarget>x86</PlatformTarget>
49    <ErrorReport>prompt</ErrorReport>
50  </PropertyGroup>
51  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
52    <DebugSymbols>true</DebugSymbols>
53    <OutputPath>bin\x64\Debug\</OutputPath>
54    <DefineConstants>DEBUG;TRACE</DefineConstants>
55    <DebugType>full</DebugType>
56    <PlatformTarget>x64</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58  </PropertyGroup>
59  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
60    <OutputPath>bin\x64\Release\</OutputPath>
61    <DefineConstants>TRACE</DefineConstants>
62    <Optimize>true</Optimize>
63    <DebugType>pdbonly</DebugType>
64    <PlatformTarget>x64</PlatformTarget>
65    <ErrorReport>prompt</ErrorReport>
66  </PropertyGroup>
67  <ItemGroup>
68    <Reference Include="System" />
69    <Reference Include="System.Core">
70      <RequiredTargetFramework>3.5</RequiredTargetFramework>
71    </Reference>
72    <Reference Include="System.Drawing" />
73    <Reference Include="System.Windows.Forms" />
74    <Reference Include="System.Xml.Linq">
75      <RequiredTargetFramework>3.5</RequiredTargetFramework>
76    </Reference>
77    <Reference Include="System.Data.DataSetExtensions">
78      <RequiredTargetFramework>3.5</RequiredTargetFramework>
79    </Reference>
80    <Reference Include="System.Data" />
81    <Reference Include="System.Xml" />
82  </ItemGroup>
83  <ItemGroup>
84    <Compile Include="ClassificationProblemInjector.cs" />
85    <Compile Include="Model.cs" />
86    <Compile Include="IModel.cs" />
87    <Compile Include="SimpleEvaluatorBase.cs" />
88    <Compile Include="ITimeSeriesAlgorithm.cs" />
89    <Compile Include="IClassificationAlgorithm.cs" />
90    <Compile Include="IStochasticAlgorithm.cs" />
91    <Compile Include="HeuristicLabModelingPlugin.cs" />
92    <Compile Include="IAlgorithm.cs" />
93    <Compile Include="SimpleMeanAbsolutePercentageErrorEvaluator.cs" />
94    <Compile Include="SimpleMeanAbsolutePercentageOfRangeErrorEvaluator.cs" />
95    <Compile Include="ProblemInjector.cs" />
96    <Compile Include="ProblemInjectorView.cs">
97      <SubType>UserControl</SubType>
98    </Compile>
99    <Compile Include="ProblemInjectorView.Designer.cs">
100      <DependentUpon>ProblemInjectorView.cs</DependentUpon>
101    </Compile>
102    <Compile Include="Properties\AssemblyInfo.cs" />
103    <Compile Include="SimpleMSEEvaluator.cs" />
104    <Compile Include="SimpleR2Evaluator.cs" />
105    <Compile Include="TimeSeriesProblemInjector.cs" />
106    <Compile Include="SimpleVarianceAccountedForEvaluator.cs" />
107  </ItemGroup>
108  <ItemGroup>
109    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
110      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
111      <Name>HeuristicLab.Core-3.3</Name>
112    </ProjectReference>
113    <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.3\HeuristicLab.DataAnalysis-3.3.csproj">
114      <Project>{6AD536AE-B4CC-4424-B0A2-20CECE88CE57}</Project>
115      <Name>HeuristicLab.DataAnalysis-3.3</Name>
116    </ProjectReference>
117    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
118      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
119      <Name>HeuristicLab.Data-3.3</Name>
120    </ProjectReference>
121    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
122      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
123      <Name>HeuristicLab.PluginInfrastructure</Name>
124    </ProjectReference>
125  </ItemGroup>
126  <ItemGroup>
127    <None Include="HeuristicLab.snk" />
128    <None Include="Properties\AssemblyInfo.frame" />
129  </ItemGroup>
130  <ItemGroup>
131    <EmbeddedResource Include="ProblemInjectorView.resx">
132      <DependentUpon>ProblemInjectorView.cs</DependentUpon>
133    </EmbeddedResource>
134  </ItemGroup>
135  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
136  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
137       Other similar extension points exist, see Microsoft.Common.targets.
138  <Target Name="BeforeBuild">
139  </Target>
140  <Target Name="AfterBuild">
141  </Target>
142  -->
143  <PropertyGroup>
144    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
145set ProjectDir=$(ProjectDir)
146set SolutionDir=$(SolutionDir)
147set Outdir=$(Outdir)
148
149call PreBuildEvent.cmd</PreBuildEvent>
150  </PropertyGroup>
151</Project>
Note: See TracBrowser for help on using the repository browser.