Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3040_VectorBasedGP/HeuristicLab.DiffSharp/HeuristicLab.DiffSharp.csproj @ 17786

Last change on this file since 17786 was 17786, checked in by pfleck, 3 years ago

#3040 Worked in DiffSharp for constant-opt.

File size: 3.8 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    <PackageReference Include="StrongNamer">
71      <Version>0.2.5</Version>
72    </PackageReference>
73  </ItemGroup>
74  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
75  <PropertyGroup>
76    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
77set ProjectDir=$(ProjectDir)
78set SolutionDir=$(SolutionDir)
79set Outdir=$(Outdir)
80
81call PreBuildEvent.cmd
82</PreBuildEvent>
83  </PropertyGroup>
84  <PropertyGroup>
85    <PostBuildEvent>rm -d -r $(OutDir)cs
86rm -d -r $(OutDir)de
87rm -d -r $(OutDir)es
88rm -d -r $(OutDir)fr
89rm -d -r $(OutDir)it
90rm -d -r $(OutDir)ja
91rm -d -r $(OutDir)ko
92rm -d -r $(OutDir)pl
93rm -d -r $(OutDir)pt-BR
94rm -d -r $(OutDir)ru
95rm -d -r $(OutDir)tr
96rm -d -r $(OutDir)zh-Hans
97rm -d -r $(OutDir)zh-Hant</PostBuildEvent>
98  </PropertyGroup>
99</Project>
Note: See TracBrowser for help on using the repository browser.