Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.MathNet.Numerics/HeuristicLab.MathNet.Numerics.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: 4.3 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>{71AE8AE6-F1A5-445C-AD31-AFFC83CE2E28}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.MathNet.Numerics</RootNamespace>
11    <AssemblyName>HeuristicLab.MathNet.Numerics</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    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
40    <DebugSymbols>true</DebugSymbols>
41    <OutputPath>..\bin\</OutputPath>
42    <DefineConstants>DEBUG;TRACE</DefineConstants>
43    <DebugType>full</DebugType>
44    <PlatformTarget>x64</PlatformTarget>
45    <ErrorReport>prompt</ErrorReport>
46    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
47  </PropertyGroup>
48  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
49    <OutputPath>..\bin\</OutputPath>
50    <DefineConstants>TRACE</DefineConstants>
51    <Optimize>true</Optimize>
52    <DebugType>pdbonly</DebugType>
53    <PlatformTarget>x64</PlatformTarget>
54    <ErrorReport>prompt</ErrorReport>
55    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
56  </PropertyGroup>
57  <ItemGroup>
58    <Reference Include="HEAL.Attic, Version=1.7.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
59      <SpecificVersion>False</SpecificVersion>
60      <HintPath>..\bin\HEAL.Attic.dll</HintPath>
61    </Reference>
62    <Reference Include="System" />
63    <Reference Include="System.Core" />
64    <Reference Include="System.Xml" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="VectorTransformer.cs" />
68    <None Include="HeuristicLab.snk" />
69    <None Include="Plugin.cs.frame" />
70    <Compile Include="Plugin.cs" />
71    <None Include="Properties\AssemblyInfo.cs.frame" />
72    <Compile Include="Properties\AssemblyInfo.cs" />
73  </ItemGroup>
74  <ItemGroup>
75    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
76      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
77      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
78    </ProjectReference>
79  </ItemGroup>
80  <ItemGroup>
81    <PackageReference Include="Google.Protobuf">
82      <Version>3.11.3</Version>
83    </PackageReference>
84    <PackageReference Include="MathNet.Numerics.Signed">
85      <Version>4.9.0</Version>
86    </PackageReference>
87    <PackageReference Include="System.Runtime.CompilerServices.Unsafe">
88      <Version>6.0.0</Version>
89    </PackageReference>
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <PropertyGroup>
93    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
94set ProjectDir=$(ProjectDir)
95set SolutionDir=$(SolutionDir)
96set Outdir=$(Outdir)
97
98call PreBuildEvent.cmd
99</PreBuildEvent>
100  </PropertyGroup>
101</Project>
Note: See TracBrowser for help on using the repository browser.