Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.ExtLibs/HeuristicLab.TensorFlowNet/HeuristicLab.TensorFlowNet.csproj @ 18239

Last change on this file since 18239 was 18239, checked in by pfleck, 2 years ago

#3040 Updated to newer TensorFlow.NET version.

  • Removed IL Merge from TensorFlow.NET.
  • Temporarily removed DiffSharp.
  • Changed to a locally built Attic with a specific Protobuf version that is compatible with TensorFlow.NET. (Also adapted other versions of nuget dependencies.)
File size: 3.9 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.2</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <Deterministic>true</Deterministic>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>$(SolutionDir)\bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>$(SolutionDir)\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <RunPostBuildEvent>OnBuildSuccess</RunPostBuildEvent>
36  </PropertyGroup>
37  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
38    <DebugSymbols>true</DebugSymbols>
39    <OutputPath>..\..\bin\</OutputPath>
40    <DefineConstants>DEBUG;TRACE</DefineConstants>
41    <DebugType>full</DebugType>
42    <PlatformTarget>x64</PlatformTarget>
43    <ErrorReport>prompt</ErrorReport>
44    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
45  </PropertyGroup>
46  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
47    <OutputPath>..\..\bin\</OutputPath>
48    <DefineConstants>TRACE</DefineConstants>
49    <Optimize>true</Optimize>
50    <DebugType>pdbonly</DebugType>
51    <PlatformTarget>x64</PlatformTarget>
52    <ErrorReport>prompt</ErrorReport>
53    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
54  </PropertyGroup>
55  <ItemGroup>
56    <Reference Include="System" />
57    <Reference Include="System.Core" />
58  </ItemGroup>
59  <ItemGroup>
60    <None Include="Plugin.cs.frame" />
61    <Compile Include="Plugin.cs" />
62    <None Include="Properties\AssemblyInfo.cs.frame" />
63    <Compile Include="Properties\AssemblyInfo.cs" />
64  </ItemGroup>
65  <ItemGroup>
66    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
67      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
68      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
69    </ProjectReference>
70  </ItemGroup>
71  <ItemGroup>
72    <PackageReference Include="SciSharp.TensorFlow.Redist">
73      <Version>2.7.0</Version>
74    </PackageReference>
75    <PackageReference Include="TensorFlow.Keras">
76      <Version>0.7.0</Version>
77    </PackageReference>
78    <PackageReference Include="TensorFlow.NET">
79      <Version>0.70.0</Version>
80    </PackageReference>
81  </ItemGroup>
82  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
83  <PropertyGroup>
84    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
85set ProjectDir=$(ProjectDir)
86set SolutionDir=$(SolutionDir)
87set Outdir=$(Outdir)
88
89call PreBuildEvent.cmd</PreBuildEvent>
90  </PropertyGroup>
91  <PropertyGroup>
92    <PostBuildEvent>
93    </PostBuildEvent>
94  </PropertyGroup>
95</Project>
Note: See TracBrowser for help on using the repository browser.