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>{0E3AAB5E-F152-44E0-A054-4D9A83ECEE08}</ProjectGuid>
|
---|
8 | <OutputType>Library</OutputType>
|
---|
9 | <RootNamespace>HeuristicLab.JsonInterface</RootNamespace>
|
---|
10 | <AssemblyName>HeuristicLab.JsonInterface</AssemblyName>
|
---|
11 | <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
---|
12 | <FileAlignment>512</FileAlignment>
|
---|
13 | <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
|
---|
14 | <Deterministic>true</Deterministic>
|
---|
15 | <TargetFrameworkProfile />
|
---|
16 | </PropertyGroup>
|
---|
17 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
---|
18 | <PlatformTarget>AnyCPU</PlatformTarget>
|
---|
19 | <DebugSymbols>true</DebugSymbols>
|
---|
20 | <DebugType>full</DebugType>
|
---|
21 | <Optimize>false</Optimize>
|
---|
22 | <OutputPath>$(SolutionDir)\bin\</OutputPath>
|
---|
23 | <DefineConstants>DEBUG;TRACE</DefineConstants>
|
---|
24 | <ErrorReport>prompt</ErrorReport>
|
---|
25 | <WarningLevel>4</WarningLevel>
|
---|
26 | </PropertyGroup>
|
---|
27 | <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
---|
28 | <PlatformTarget>AnyCPU</PlatformTarget>
|
---|
29 | <DebugType>pdbonly</DebugType>
|
---|
30 | <Optimize>true</Optimize>
|
---|
31 | <OutputPath>$(SolutionDir)\bin\</OutputPath>
|
---|
32 | <DefineConstants>TRACE</DefineConstants>
|
---|
33 | <ErrorReport>prompt</ErrorReport>
|
---|
34 | <WarningLevel>4</WarningLevel>
|
---|
35 | </PropertyGroup>
|
---|
36 | <PropertyGroup>
|
---|
37 | <StartupObject />
|
---|
38 | </PropertyGroup>
|
---|
39 | <PropertyGroup>
|
---|
40 | <SignAssembly>true</SignAssembly>
|
---|
41 | </PropertyGroup>
|
---|
42 | <PropertyGroup>
|
---|
43 | <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
|
---|
44 | </PropertyGroup>
|
---|
45 | <ItemGroup>
|
---|
46 | <Reference Include="HEAL.Attic, Version=1.4.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
|
---|
47 | <SpecificVersion>False</SpecificVersion>
|
---|
48 | <HintPath>..\bin\HEAL.Attic.dll</HintPath>
|
---|
49 | </Reference>
|
---|
50 | <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
---|
51 | <HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
|
---|
52 | </Reference>
|
---|
53 | <Reference Include="System" />
|
---|
54 | <Reference Include="System.Core" />
|
---|
55 | <Reference Include="System.Drawing" />
|
---|
56 | <Reference Include="System.Xml.Linq" />
|
---|
57 | <Reference Include="System.Data.DataSetExtensions" />
|
---|
58 | <Reference Include="Microsoft.CSharp" />
|
---|
59 | <Reference Include="System.Data" />
|
---|
60 | <Reference Include="System.Net.Http" />
|
---|
61 | <Reference Include="System.Xml" />
|
---|
62 | </ItemGroup>
|
---|
63 | <ItemGroup>
|
---|
64 | <Compile Include="Constants.cs" />
|
---|
65 | <Compile Include="Converters\AlgorithmConverter.cs" />
|
---|
66 | <Compile Include="Converters\BatchRunConverter.cs" />
|
---|
67 | <Compile Include="Converters\ExperimentConverter.cs" />
|
---|
68 | <Compile Include="Converters\ItemCollectionConverter.cs" />
|
---|
69 | <Compile Include="Converters\RegressionProblemDataConverter.cs" />
|
---|
70 | <Compile Include="Converters\ResultParameterConverter.cs" />
|
---|
71 | <Compile Include="Converters\ValueLookupParameterConverter.cs" />
|
---|
72 | <Compile Include="Converters\ValueRangeConverter.cs" />
|
---|
73 | <Compile Include="Interfaces\IArrayJsonItem.cs" />
|
---|
74 | <Compile Include="Interfaces\IConcreteRestrictedJsonItem.cs" />
|
---|
75 | <Compile Include="Interfaces\IIntervalRestrictedJsonItem.cs" />
|
---|
76 | <Compile Include="Interfaces\IJsonItem.cs" />
|
---|
77 | <Compile Include="Interfaces\IJsonItemValidator.cs" />
|
---|
78 | <Compile Include="Interfaces\ILookupJsonItem.cs" />
|
---|
79 | <Compile Include="Interfaces\IMatrixJsonItem.cs" />
|
---|
80 | <Compile Include="Interfaces\IRangedJsonItem.cs" />
|
---|
81 | <Compile Include="Interfaces\IValueJsonItem.cs" />
|
---|
82 | <Compile Include="Interfaces\IValueLookupJsonItem.cs" />
|
---|
83 | <Compile Include="Interfaces\IListJsonItem.cs" />
|
---|
84 | <Compile Include="JsonItems\ArrayJsonItem.cs" />
|
---|
85 | <Compile Include="JsonItems\BoolJsonItems.cs" />
|
---|
86 | <Compile Include="JsonItems\ConcreteRestrictedArrayJsonItem.cs" />
|
---|
87 | <Compile Include="JsonItems\ConcreteRestrictedValueJsonItem.cs" />
|
---|
88 | <Compile Include="JsonItems\DateTimeJsonItem.cs" />
|
---|
89 | <Compile Include="JsonItems\DoubleJsonItems.cs" />
|
---|
90 | <Compile Include="JsonItems\EmptyJsonItem.cs" />
|
---|
91 | <Compile Include="JsonItems\IntervalRestrictedArrayJsonItem.cs" />
|
---|
92 | <Compile Include="JsonItems\IntervalRestrictedJsonItem.cs" />
|
---|
93 | <Compile Include="JsonItems\IntervalRestrictedMatrixJsonItem.cs" />
|
---|
94 | <Compile Include="JsonItems\IntervalRestrictedValueJsonItem.cs" />
|
---|
95 | <Compile Include="JsonItems\IntJsonItems.cs" />
|
---|
96 | <Compile Include="JsonItems\JsonItem.cs" />
|
---|
97 | <Compile Include="JsonItems\ListJsonItem.cs" />
|
---|
98 | <Compile Include="JsonItems\LookupJsonItem.cs" />
|
---|
99 | <Compile Include="JsonItems\MatrixJsonItem.cs" />
|
---|
100 | <Compile Include="JsonItems\RangedJsonItem.cs" />
|
---|
101 | <Compile Include="JsonItems\StringJsonItem.cs" />
|
---|
102 | <Compile Include="JsonItems\UnsupportedJsonItem.cs" />
|
---|
103 | <Compile Include="JsonItems\ValueJsonItem.cs" />
|
---|
104 | <Compile Include="JsonItems\ValueLookupJsonItem.cs" />
|
---|
105 | <Compile Include="ResultCollectionProcessors\AbstractProcessors\RunCollectionSRSolutionFormatter.cs" />
|
---|
106 | <Compile Include="ResultCollectionProcessors\FilterResultCollectionProcessor.cs" />
|
---|
107 | <Compile Include="ResultCollectionProcessors\RunCollectionSRSolutionGraphVizFormatter.cs" />
|
---|
108 | <Compile Include="ResultCollectionProcessors\RunCollectionSRSolutionLatexFormatter.cs" />
|
---|
109 | <Compile Include="ResultCollectionProcessors\RunCollectionSRSolutionPythonFormatter.cs" />
|
---|
110 | <Compile Include="SingleLineArrayJsonWriter.cs" />
|
---|
111 | <Compile Include="JsonTemplateGenerator.cs" />
|
---|
112 | <Compile Include="JsonTemplateInstantiator.cs" />
|
---|
113 | <Compile Include="Converters\ConstrainedValueParameterConverter.cs" />
|
---|
114 | <Compile Include="Converters\ParameterizedItemConverter.cs" />
|
---|
115 | <Compile Include="Converters\ValueParameterConverter.cs" />
|
---|
116 | <Compile Include="Converters\EnumTypeConverter.cs" />
|
---|
117 | <Compile Include="Converters\LookupParameterConverter.cs" />
|
---|
118 | <Compile Include="Converters\MultiCheckedOperatorConverter.cs" />
|
---|
119 | <Compile Include="Converters\StringValueConverter.cs" />
|
---|
120 | <Compile Include="Converters\ValueTypeArrayConverter.cs" />
|
---|
121 | <Compile Include="Converters\BaseConverter.cs" />
|
---|
122 | <Compile Include="Converters\ValueTypeMatrixConverter.cs" />
|
---|
123 | <Compile Include="Converters\ValueTypeValueConverter.cs" />
|
---|
124 | <Compile Include="JsonItemConverterFactory.cs" />
|
---|
125 | <Compile Include="Plugin.cs" />
|
---|
126 | <Compile Include="Properties\AssemblyInfo.cs" />
|
---|
127 | <Compile Include="Interfaces\IJsonItemConverter.cs" />
|
---|
128 | <Compile Include="JsonItemConverter.cs" />
|
---|
129 | </ItemGroup>
|
---|
130 | <ItemGroup>
|
---|
131 | <None Include="HeuristicLab.snk" />
|
---|
132 | <None Include="packages.config" />
|
---|
133 | <None Include="Plugin.cs.frame" />
|
---|
134 | </ItemGroup>
|
---|
135 | <ItemGroup>
|
---|
136 | <ProjectReference Include="..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
|
---|
137 | <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
|
---|
138 | <Name>HeuristicLab.Collections-3.3</Name>
|
---|
139 | </ProjectReference>
|
---|
140 | <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
|
---|
141 | <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
|
---|
142 | <Name>HeuristicLab.Common-3.3</Name>
|
---|
143 | </ProjectReference>
|
---|
144 | <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
|
---|
145 | <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
|
---|
146 | <Name>HeuristicLab.Core-3.3</Name>
|
---|
147 | </ProjectReference>
|
---|
148 | <ProjectReference Include="..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
|
---|
149 | <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
|
---|
150 | <Name>HeuristicLab.Data-3.3</Name>
|
---|
151 | </ProjectReference>
|
---|
152 | <ProjectReference Include="..\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding\3.4\HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4.csproj">
|
---|
153 | <Project>{06d4a186-9319-48a0-bade-a2058d462eea}</Project>
|
---|
154 | <Name>HeuristicLab.Encodings.SymbolicExpressionTreeEncoding-3.4</Name>
|
---|
155 | </ProjectReference>
|
---|
156 | <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
|
---|
157 | <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
|
---|
158 | <Name>HeuristicLab.Optimization-3.3</Name>
|
---|
159 | </ProjectReference>
|
---|
160 | <ProjectReference Include="..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
|
---|
161 | <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
|
---|
162 | <Name>HeuristicLab.Parameters-3.3</Name>
|
---|
163 | </ProjectReference>
|
---|
164 | <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
|
---|
165 | <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
|
---|
166 | <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
|
---|
167 | </ProjectReference>
|
---|
168 | <ProjectReference Include="..\HeuristicLab.Problems.DataAnalysis.Symbolic.Regression\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4.csproj">
|
---|
169 | <Project>{5ac82412-911b-4fa2-a013-edc5e3f3fcc2}</Project>
|
---|
170 | <Name>HeuristicLab.Problems.DataAnalysis.Symbolic.Regression-3.4</Name>
|
---|
171 | </ProjectReference>
|
---|
172 | <ProjectReference Include="..\HeuristicLab.Problems.DataAnalysis.Symbolic\3.4\HeuristicLab.Problems.DataAnalysis.Symbolic-3.4.csproj">
|
---|
173 | <Project>{3d28463f-ec96-4d82-afee-38be91a0ca00}</Project>
|
---|
174 | <Name>HeuristicLab.Problems.DataAnalysis.Symbolic-3.4</Name>
|
---|
175 | </ProjectReference>
|
---|
176 | <ProjectReference Include="..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
|
---|
177 | <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
|
---|
178 | <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
|
---|
179 | </ProjectReference>
|
---|
180 | </ItemGroup>
|
---|
181 | <ItemGroup />
|
---|
182 | <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
---|
183 | <PropertyGroup>
|
---|
184 | <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
|
---|
185 | set ProjectDir=$(ProjectDir)
|
---|
186 | set SolutionDir=$(SolutionDir)
|
---|
187 | set Outdir=$(Outdir)
|
---|
188 |
|
---|
189 | call PreBuildEvent.cmd
|
---|
190 |
|
---|
191 | </PreBuildEvent>
|
---|
192 | </PropertyGroup>
|
---|
193 | </Project> |
---|