Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.DiffSharp/HeuristicLab.DiffSharp.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: 3.7 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>{99935EB6-C98F-4524-A8E2-94C8F6A0C8D9}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.DiffSharp</RootNamespace>
11    <AssemblyName>HeuristicLab.DiffSharp</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <Deterministic>true</Deterministic>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup>
18    <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
19    <SignAssembly>true</SignAssembly>
20  </PropertyGroup>
21  <PropertyGroup>
22    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
23  </PropertyGroup>
24  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
25    <DebugSymbols>true</DebugSymbols>
26    <OutputPath>..\bin\</OutputPath>
27    <DefineConstants>DEBUG;TRACE</DefineConstants>
28    <DebugType>full</DebugType>
29    <PlatformTarget>x64</PlatformTarget>
30    <ErrorReport>prompt</ErrorReport>
31    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
32  </PropertyGroup>
33  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
34    <OutputPath>..\bin\</OutputPath>
35    <DefineConstants>TRACE</DefineConstants>
36    <Optimize>true</Optimize>
37    <DebugType>pdbonly</DebugType>
38    <PlatformTarget>x64</PlatformTarget>
39    <ErrorReport>prompt</ErrorReport>
40    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
41  </PropertyGroup>
42  <PropertyGroup>
43    <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
44  </PropertyGroup>
45  <ItemGroup>
46    <Reference Include="System" />
47    <Reference Include="System.Core" />
48  </ItemGroup>
49  <ItemGroup>
50    <None Include="HeuristicLab.snk" />
51    <None Include="Plugin.cs.frame" />
52    <Compile Include="Plugin.cs" />
53    <None Include="Properties\AssemblyInfo.cs.frame" />
54    <Compile Include="Properties\AssemblyInfo.cs" />
55  </ItemGroup>
56  <ItemGroup>
57    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
58      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
59      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
60    </ProjectReference>
61  </ItemGroup>
62  <ItemGroup>
63    <PackageReference Include="DiffSharp">
64      <Version>0.7.7</Version>
65    </PackageReference>
66    <PackageReference Include="FSharp.Core">
67      <Version>4.7.2</Version>
68      <PrivateAssets>all</PrivateAssets>
69    </PackageReference>
70  </ItemGroup>
71  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
72  <PropertyGroup>
73    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
74set ProjectDir=$(ProjectDir)
75set SolutionDir=$(SolutionDir)
76set Outdir=$(Outdir)
77
78call PreBuildEvent.cmd
79</PreBuildEvent>
80  </PropertyGroup>
81  <PropertyGroup>
82    <PostBuildEvent>rm -d -r $(OutDir)cs
83rm -d -r $(OutDir)de
84rm -d -r $(OutDir)es
85rm -d -r $(OutDir)fr
86rm -d -r $(OutDir)it
87rm -d -r $(OutDir)ja
88rm -d -r $(OutDir)ko
89rm -d -r $(OutDir)pl
90rm -d -r $(OutDir)pt-BR
91rm -d -r $(OutDir)ru
92rm -d -r $(OutDir)tr
93rm -d -r $(OutDir)zh-Hans
94rm -d -r $(OutDir)zh-Hant</PostBuildEvent>
95  </PropertyGroup>
96</Project>
Note: See TracBrowser for help on using the repository browser.