Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.SupportVectorMachines/3.2/HeuristicLab.SupportVectorMachines-3.2.csproj @ 1837

Last change on this file since 1837 was 1837, checked in by gkronber, 15 years ago

Implemented #627 (Datatypes of SVM should be wrapped into dedicated classes that implement IItem).

File size: 5.9 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>{7E18E25A-BCEB-467A-BACC-ABCA73F9D655}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.SupportVectorMachines</RootNamespace>
12    <AssemblyName>HeuristicLab.SupportVectorMachines-3.2</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    <PlatformTarget>AnyCPU</PlatformTarget>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
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  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
37    <DebugSymbols>true</DebugSymbols>
38    <OutputPath>bin\x64\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <DebugType>full</DebugType>
41    <PlatformTarget>x64</PlatformTarget>
42    <ErrorReport>prompt</ErrorReport>
43  </PropertyGroup>
44  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
45    <OutputPath>bin\x64\Release\</OutputPath>
46    <DefineConstants>TRACE</DefineConstants>
47    <Optimize>true</Optimize>
48    <DebugType>pdbonly</DebugType>
49    <PlatformTarget>x64</PlatformTarget>
50    <ErrorReport>prompt</ErrorReport>
51  </PropertyGroup>
52  <ItemGroup>
53    <Reference Include="System" />
54    <Reference Include="System.Core">
55      <RequiredTargetFramework>3.5</RequiredTargetFramework>
56    </Reference>
57    <Reference Include="System.Xml.Linq">
58      <RequiredTargetFramework>3.5</RequiredTargetFramework>
59    </Reference>
60    <Reference Include="System.Data.DataSetExtensions">
61      <RequiredTargetFramework>3.5</RequiredTargetFramework>
62    </Reference>
63    <Reference Include="System.Data" />
64    <Reference Include="System.Xml" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="SVMRangeTransform.cs" />
68    <Compile Include="SVMModel.cs" />
69    <Compile Include="HeuristicLabSupportVectorMachinesPlugin.cs" />
70    <Compile Include="Properties\AssemblyInfo.cs" />
71    <Compile Include="SimpleMSEEvaluator.cs" />
72    <Compile Include="SimpleR2Evaluator.cs" />
73    <Compile Include="SupportVectorCreator.cs" />
74    <Compile Include="SupportVectorEvaluator.cs" />
75    <Compile Include="SVMHelper.cs" />
76  </ItemGroup>
77  <ItemGroup>
78    <None Include="HeuristicLab.snk" />
79    <None Include="Properties\AssemblyInfo.frame" />
80  </ItemGroup>
81  <ItemGroup>
82    <ProjectReference Include="..\..\HeuristicLab.Core\3.2\HeuristicLab.Core-3.2.csproj">
83      <Project>{F43B59AB-2B8C-4570-BC1E-15592086517C}</Project>
84      <Name>HeuristicLab.Core-3.2</Name>
85    </ProjectReference>
86    <ProjectReference Include="..\..\HeuristicLab.DataAnalysis\3.2\HeuristicLab.DataAnalysis-3.2.csproj">
87      <Project>{7DD3A97A-56E9-462F-90E2-A351FE7AF5C2}</Project>
88      <Name>HeuristicLab.DataAnalysis-3.2</Name>
89    </ProjectReference>
90    <ProjectReference Include="..\..\HeuristicLab.Data\3.2\HeuristicLab.Data-3.2.csproj">
91      <Project>{F473D9AF-3F09-4296-9F28-3C65118DAFFA}</Project>
92      <Name>HeuristicLab.Data-3.2</Name>
93    </ProjectReference>
94    <ProjectReference Include="..\..\HeuristicLab.GP.StructureIdentification\3.3\HeuristicLab.GP.StructureIdentification-3.3.csproj">
95      <Project>{74223A32-C726-4978-BE78-37113A18373C}</Project>
96      <Name>HeuristicLab.GP.StructureIdentification-3.3</Name>
97    </ProjectReference>
98    <ProjectReference Include="..\..\HeuristicLab.Operators\3.2\HeuristicLab.Operators-3.2.csproj">
99      <Project>{A9983BA2-B3B2-475E-8E2C-62050B71D1C5}</Project>
100      <Name>HeuristicLab.Operators-3.2</Name>
101    </ProjectReference>
102    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\HeuristicLab.PluginInfrastructure.csproj">
103      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
104      <Name>HeuristicLab.PluginInfrastructure</Name>
105    </ProjectReference>
106    <ProjectReference Include="..\..\HeuristicLab.SequentialEngine\3.2\HeuristicLab.SequentialEngine-3.2.csproj">
107      <Project>{B4BE8E53-BA06-4237-9A01-24255F880201}</Project>
108      <Name>HeuristicLab.SequentialEngine-3.2</Name>
109    </ProjectReference>
110    <ProjectReference Include="..\..\LibSVM\LibSVM.csproj">
111      <Project>{A16F23B5-FB62-499E-A831-26953AA56FE2}</Project>
112      <Name>LibSVM</Name>
113    </ProjectReference>
114  </ItemGroup>
115  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
117       Other similar extension points exist, see Microsoft.Common.targets.
118  <Target Name="BeforeBuild">
119  </Target>
120  <Target Name="AfterBuild">
121  </Target>
122  -->
123  <PropertyGroup>
124    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
125set ProjectDir=$(ProjectDir)
126set SolutionDir=$(SolutionDir)
127set Outdir=$(Outdir)
128
129call PreBuildEvent.cmd</PreBuildEvent>
130  </PropertyGroup>
131</Project>
Note: See TracBrowser for help on using the repository browser.