Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/TensorFlowNet/TensorFlowNet.csproj @ 17725

Last change on this file since 17725 was 17725, checked in by pfleck, 4 years ago

#3040 Adapted dependencies and versions for hive execution.

File size: 2.6 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>{99BF44AE-436E-4B30-9435-E2BA98EE6FB3}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>TensorFlowNetBuild</RootNamespace>
11    <AssemblyName>TensorFlowNetBuild</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  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core" />
36  </ItemGroup>
37  <ItemGroup>
38    <Compile Include="Properties\AssemblyInfo.cs" />
39  </ItemGroup>
40  <ItemGroup>
41    <PackageReference Include="Google.Protobuf">
42      <Version>3.11.3</Version>
43    </PackageReference>
44    <PackageReference Include="ilmerge">
45      <Version>3.0.29</Version>
46    </PackageReference>
47    <PackageReference Include="TensorFlow.NET">
48      <Version>0.15.0</Version>
49    </PackageReference>
50  </ItemGroup>
51  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
52  <PropertyGroup>
53    <PostBuildEvent>rm $(OutDir)\NumSharp.Lite.pdb
54
55"$(ILMergeConsolePath)" /out:$(Outdir)\TensorFlow.NET.Signed.dll /keyfile:$(SolutionDir)\HeuristicLab\3.3\HeuristicLab.snk $(Outdir)\TensorFlow.NET.dll $(Outdir)\NumSharp.Lite.dll
56
57rm $(OutDir)\NumSharp.Lite.dll
58rm $(OutDir)\TensorFlow.NET.dll</PostBuildEvent>
59  </PropertyGroup>
60  <PropertyGroup>
61    <PreBuildEvent>
62    </PreBuildEvent>
63  </PropertyGroup>
64</Project>
Note: See TracBrowser for help on using the repository browser.