Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Algorithms.GradientDescent/HeuristicLab.Algorithms.GradientDescent/3.3/HeuristicLab.Algorithms.GradientDescent.csproj @ 5516

Last change on this file since 5516 was 5516, checked in by gkronber, 13 years ago

Added files for implementation of Levenberg-Marquardt optimization algorithm.

File size: 11.4 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" 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>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{1256B945-EEA9-4BE4-9880-76B5B113F089}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Algorithms.GradientDescent</RootNamespace>
12    <AssemblyName>HeuristicLab.Algorithms.GradientDescent-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>bin\x86\Debug\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x86</PlatformTarget>
45    <CodeAnalysisLogFile>bin\Debug\Plugin.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
46    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
47    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
48    <ErrorReport>prompt</ErrorReport>
49    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
50    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
51    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
52    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
53    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
54  </PropertyGroup>
55  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
56    <OutputPath>bin\x86\Release\</OutputPath>
57    <DefineConstants>TRACE</DefineConstants>
58    <Optimize>true</Optimize>
59    <DebugType>pdbonly</DebugType>
60    <PlatformTarget>x86</PlatformTarget>
61    <CodeAnalysisLogFile>bin\Release\Plugin.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
62    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
63    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
64    <ErrorReport>prompt</ErrorReport>
65    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
66    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
67    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
68    <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
69  </PropertyGroup>
70  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
71    <DebugSymbols>true</DebugSymbols>
72    <OutputPath>bin\x64\Debug\</OutputPath>
73    <DefineConstants>DEBUG;TRACE</DefineConstants>
74    <DebugType>full</DebugType>
75    <PlatformTarget>x64</PlatformTarget>
76    <CodeAnalysisLogFile>bin\Debug\Plugin.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
77    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
78    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
79    <ErrorReport>prompt</ErrorReport>
80    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
81    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
82    <CodeAnalysisIgnoreBuiltInRuleSets>false</CodeAnalysisIgnoreBuiltInRuleSets>
83    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
84    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
85  </PropertyGroup>
86  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
87    <OutputPath>bin\x64\Release\</OutputPath>
88    <DefineConstants>TRACE</DefineConstants>
89    <Optimize>true</Optimize>
90    <DebugType>pdbonly</DebugType>
91    <PlatformTarget>x64</PlatformTarget>
92    <CodeAnalysisLogFile>bin\Release\Plugin.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
93    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
94    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
95    <ErrorReport>prompt</ErrorReport>
96    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
97    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
98    <CodeAnalysisIgnoreBuiltInRuleSets>true</CodeAnalysisIgnoreBuiltInRuleSets>
99    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
100    <CodeAnalysisIgnoreBuiltInRules>true</CodeAnalysisIgnoreBuiltInRules>
101    <CodeAnalysisFailOnMissingRules>false</CodeAnalysisFailOnMissingRules>
102  </PropertyGroup>
103  <ItemGroup>
104    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
105      <HintPath>..\..\HeuristicLab.PluginInfrastructure\3.3\bin\x86\Debug\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
106    </Reference>
107    <Reference Include="System" />
108    <Reference Include="System.Core" />
109    <Reference Include="System.Data" />
110  </ItemGroup>
111  <ItemGroup>
112    <None Include="Plugin.cs.frame" />
113    <Compile Include="LevenbergMarquardt.cs" />
114    <Compile Include="LevenbergMarquardtMove.cs" />
115    <Compile Include="Plugin.cs" />
116    <Compile Include="Properties\AssemblyInfo.cs" />
117    <None Include="Properties\AssemblyInfo.frame" />
118  </ItemGroup>
119  <ItemGroup>
120    <None Include="HeuristicLab.snk" />
121  </ItemGroup>
122  <ItemGroup>
123    <ProjectReference Include="..\..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
124      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
125      <Name>HeuristicLab.Collections-3.3</Name>
126    </ProjectReference>
127    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
128      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
129      <Name>HeuristicLab.Common-3.3</Name>
130    </ProjectReference>
131    <ProjectReference Include="..\..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
132      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
133      <Name>HeuristicLab.Core-3.3</Name>
134    </ProjectReference>
135    <ProjectReference Include="..\..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
136      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
137      <Name>HeuristicLab.Data-3.3</Name>
138    </ProjectReference>
139    <ProjectReference Include="..\..\HeuristicLab.Encodings.RealVectorEncoding\3.3\HeuristicLab.Encodings.RealVectorEncoding-3.3.csproj">
140      <Project>{BB6D334A-4BB6-4674-9883-31A6EBB32CAB}</Project>
141      <Name>HeuristicLab.Encodings.RealVectorEncoding-3.3</Name>
142    </ProjectReference>
143    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\ALGLIB-3.1.0\ALGLIB-3.1.0.csproj">
144      <Project>{FC841674-62A7-4055-BE91-E41944B6C606}</Project>
145      <Name>ALGLIB-3.1.0</Name>
146    </ProjectReference>
147    <ProjectReference Include="..\..\HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\3.1.0\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0.csproj">
148      <Project>{DE69A359-A5B8-4D3D-BA8D-D5780D7F96D6}</Project>
149      <Name>HeuristicLab.ALGLIB-3.1.0 %28HeuristicLab.ExtLibs\HeuristicLab.ALGLIB\HeuristicLab.ALGLIB-3.1.0\HeuristicLab.ALGLIB-3.1.0%29</Name>
150    </ProjectReference>
151    <ProjectReference Include="..\..\HeuristicLab.Operators\3.3\HeuristicLab.Operators-3.3.csproj">
152      <Project>{23DA7FF4-D5B8-41B6-AA96-F0561D24F3EE}</Project>
153      <Name>HeuristicLab.Operators-3.3</Name>
154    </ProjectReference>
155    <ProjectReference Include="..\..\HeuristicLab.Optimization.Operators\3.3\HeuristicLab.Optimization.Operators-3.3.csproj">
156      <Project>{25087811-F74C-4128-BC86-8324271DA13E}</Project>
157      <Name>HeuristicLab.Optimization.Operators-3.3</Name>
158    </ProjectReference>
159    <ProjectReference Include="..\..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
160      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
161      <Name>HeuristicLab.Optimization-3.3</Name>
162    </ProjectReference>
163    <ProjectReference Include="..\..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
164      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
165      <Name>HeuristicLab.Parameters-3.3</Name>
166    </ProjectReference>
167    <ProjectReference Include="..\..\HeuristicLab.Persistence\3.3\HeuristicLab.Persistence-3.3.csproj">
168      <Project>{102BC7D3-0EF9-439C-8F6D-96FF0FDB8E1B}</Project>
169      <Name>HeuristicLab.Persistence-3.3</Name>
170    </ProjectReference>
171    <ProjectReference Include="..\..\HeuristicLab.Problems.TestFunctions\3.3\HeuristicLab.Problems.TestFunctions-3.3.csproj">
172      <Project>{88B9B0E3-344E-4196-82A3-0F9732506FE8}</Project>
173      <Name>HeuristicLab.Problems.TestFunctions-3.3</Name>
174    </ProjectReference>
175    <ProjectReference Include="..\..\HeuristicLab.Random\3.3\HeuristicLab.Random-3.3.csproj">
176      <Project>{F4539FB6-4708-40C9-BE64-0A1390AEA197}</Project>
177      <Name>HeuristicLab.Random-3.3</Name>
178    </ProjectReference>
179  </ItemGroup>
180  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
181  <PropertyGroup>
182    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
183set ProjectDir=$(ProjectDir)
184set SolutionDir=$(SolutionDir)
185set Outdir=$(Outdir)
186
187call PreBuildEvent.cmd
188SubWCRev "%25ProjectDir%25\" "%25ProjectDir%25\Plugin.cs.frame" "%25ProjectDir%25\Plugin.cs"</PreBuildEvent>
189  </PropertyGroup>
190  <PropertyGroup>
191    <PostBuildEvent>
192    </PostBuildEvent>
193  </PropertyGroup>
194  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
195       Other similar extension points exist, see Microsoft.Common.targets.
196  <Target Name="BeforeBuild">
197  </Target>
198  <Target Name="AfterBuild">
199  </Target>
200  -->
201</Project>
Note: See TracBrowser for help on using the repository browser.