Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 17460 was 17449, checked in by pfleck, 5 years ago

#3040 Added Transformers for Vectors.
Added specialiced Transformers for double Dense/SparseVectorStorage and a generic mapper for the remaining (serializable) types.

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