Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.TensorFlowNet/HeuristicLab.TensorFlowNet.csproj @ 17752

Last change on this file since 17752 was 17469, checked in by pfleck, 5 years ago

#3040 Added TensorFlow.NET library for constant optimization with vectors (as alternative to AutoDiff+Alglib).

File size: 3.2 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="15.0" 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>{C2E26343-88C7-4288-938B-EEE7C2ABBDB6}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.TensorFlowNet</RootNamespace>
11    <AssemblyName>HeuristicLab.TensorFlowNet</AssemblyName>
12    <TargetFrameworkVersion>v4.7</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <Deterministic>true</Deterministic>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>$(SolutionDir)\bin\</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>$(SolutionDir)\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
35  </PropertyGroup>
36  <ItemGroup>
37    <Reference Include="System" />
38    <Reference Include="System.Core" />
39    <Reference Include="System.Data" />
40    <Reference Include="TensorFlow.NET.Signed, Version=0.15.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
41      <SpecificVersion>False</SpecificVersion>
42      <HintPath>..\bin\TensorFlow.NET.Signed.dll</HintPath>
43    </Reference>
44  </ItemGroup>
45  <ItemGroup>
46    <None Include="Plugin.cs.frame" />
47    <Compile Include="Plugin.cs" />
48    <None Include="Properties\AssemblyInfo.cs.frame" />
49    <Compile Include="Properties\AssemblyInfo.cs" />
50  </ItemGroup>
51  <ItemGroup>
52    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
53      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
54      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
55    </ProjectReference>
56  </ItemGroup>
57  <ItemGroup>
58    <Content Include="tensorflow.dll">
59      <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
60    </Content>
61  </ItemGroup>
62  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
63  <PropertyGroup>
64    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
65set ProjectDir=$(ProjectDir)
66set SolutionDir=$(SolutionDir)
67set Outdir=$(Outdir)
68
69call PreBuildEvent.cmd</PreBuildEvent>
70  </PropertyGroup>
71  <PropertyGroup>
72    <PostBuildEvent>
73    </PostBuildEvent>
74  </PropertyGroup>
75</Project>
Note: See TracBrowser for help on using the repository browser.