Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.MathNet.Numerics/HeuristicLab.MathNet.Numerics.csproj @ 17511

Last change on this file since 17511 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.1 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  <ItemGroup>
34    <Reference Include="HEAL.Attic, Version=1.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
35      <SpecificVersion>False</SpecificVersion>
36      <HintPath>..\bin\HEAL.Attic.dll</HintPath>
37    </Reference>
38    <Reference Include="System" />
39    <Reference Include="System.Core" />
40    <Reference Include="System.Xml" />
41  </ItemGroup>
42  <ItemGroup>
43    <Compile Include="VectorTransformer.cs" />
44    <None Include="Plugin.cs.frame" />
45    <Compile Include="Plugin.cs" />
46    <None Include="Properties\AssemblyInfo.cs.frame" />
47    <Compile Include="Properties\AssemblyInfo.cs" />
48  </ItemGroup>
49  <ItemGroup>
50    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
51      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
52      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
53    </ProjectReference>
54  </ItemGroup>
55  <ItemGroup>
56    <PackageReference Include="Google.Protobuf">
57      <Version>3.11.4</Version>
58    </PackageReference>
59    <PackageReference Include="MathNet.Numerics.Signed">
60      <Version>4.9.0</Version>
61    </PackageReference>
62  </ItemGroup>
63  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
64  <PropertyGroup>
65    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
66set ProjectDir=$(ProjectDir)
67set SolutionDir=$(SolutionDir)
68set Outdir=$(Outdir)
69
70call PreBuildEvent.cmd
71</PreBuildEvent>
72  </PropertyGroup>
73</Project>
Note: See TracBrowser for help on using the repository browser.