Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ExcelIntegration/HeuristicLabExcel/HeuristicLabExcel.csproj @ 11217

Last change on this file since 11217 was 11217, checked in by gkronber, 10 years ago

initial commit of demo of excel interoperability (PredictRandomForest)

File size: 4.0 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  <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>{05AA19D5-22F6-459F-B72A-2F674405CC0D}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLabExcel</RootNamespace>
11    <AssemblyName>HeuristicLabExcel</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14  </PropertyGroup>
15  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16    <PlatformTarget>AnyCPU</PlatformTarget>
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    <PlatformTarget>AnyCPU</PlatformTarget>
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <StartupObject />
36  </PropertyGroup>
37  <ItemGroup>
38    <Reference Include="ExcelDna.Integration">
39      <HintPath>.\ExcelDna.Integration.dll</HintPath>
40    </Reference>
41    <Reference Include="HeuristicLab.Algorithms.DataAnalysis-3.4">
42      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Algorithms.DataAnalysis-3.4.dll</HintPath>
43    </Reference>
44    <Reference Include="HeuristicLab.Common-3.3">
45      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
46    </Reference>
47    <Reference Include="HeuristicLab.Core-3.3">
48      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
49    </Reference>
50    <Reference Include="HeuristicLab.Data-3.3">
51      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Data-3.3.dll</HintPath>
52    </Reference>
53    <Reference Include="HeuristicLab.Optimization-3.3">
54      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Optimization-3.3.dll</HintPath>
55    </Reference>
56    <Reference Include="HeuristicLab.Problems.DataAnalysis-3.4">
57      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Problems.DataAnalysis-3.4.dll</HintPath>
58    </Reference>
59    <Reference Include="System" />
60    <Reference Include="System.Core" />
61    <Reference Include="System.Xml.Linq" />
62    <Reference Include="System.Data.DataSetExtensions" />
63    <Reference Include="Microsoft.CSharp" />
64    <Reference Include="System.Data" />
65    <Reference Include="System.Xml" />
66  </ItemGroup>
67  <ItemGroup>
68    <Compile Include="ExcelFunctions.cs" />
69    <Compile Include="Program.cs" />
70    <Compile Include="Properties\AssemblyInfo.cs" />
71  </ItemGroup>
72  <ItemGroup>
73    <None Include="App.config" />
74    <None Include="HeuristicLabExcel.dna">
75      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
76    </None>
77    <None Include="HeuristicLabExcel.xll">
78      <CopyToOutputDirectory>Always</CopyToOutputDirectory>
79    </None>
80  </ItemGroup>
81  <ItemGroup>
82    <Content Include="ExcelDna.Integration.dll" />
83  </ItemGroup>
84  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
85  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
86       Other similar extension points exist, see Microsoft.Common.targets.
87  <Target Name="BeforeBuild">
88  </Target>
89  <Target Name="AfterBuild">
90  </Target>
91  -->
92</Project>
Note: See TracBrowser for help on using the repository browser.