Free cookie consent management tool by TermsFeed Policy Generator

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

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

#3040 Added DiffSharp as alternative for AutoDiff and TensorFlowNet

File size: 4.0 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">
59      <HintPath>..\bin\HEAL.Attic.dll</HintPath>
60    </Reference>
61    <Reference Include="System" />
62    <Reference Include="System.Core" />
63    <Reference Include="System.Xml" />
64  </ItemGroup>
65  <ItemGroup>
66    <Compile Include="VectorTransformer.cs" />
67    <None Include="HeuristicLab.snk" />
68    <None Include="Plugin.cs.frame" />
69    <Compile Include="Plugin.cs" />
70    <None Include="Properties\AssemblyInfo.cs.frame" />
71    <Compile Include="Properties\AssemblyInfo.cs" />
72  </ItemGroup>
73  <ItemGroup>
74    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
75      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
76      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
77    </ProjectReference>
78  </ItemGroup>
79  <ItemGroup>
80    <PackageReference Include="Google.Protobuf">
81      <Version>3.11.3</Version>
82    </PackageReference>
83    <PackageReference Include="MathNet.Numerics.Signed">
84      <Version>4.9.0</Version>
85    </PackageReference>
86  </ItemGroup>
87  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
88  <PropertyGroup>
89    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
90set ProjectDir=$(ProjectDir)
91set SolutionDir=$(SolutionDir)
92set Outdir=$(Outdir)
93
94call PreBuildEvent.cmd
95</PreBuildEvent>
96  </PropertyGroup>
97</Project>
Note: See TracBrowser for help on using the repository browser.