Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/HeuristicLab.JsonInterface.csproj @ 17439

Last change on this file since 17439 was 17439, checked in by dpiringe, 4 years ago

#3026:

  • fixed a bug in HeuristicLab.JsonInterface.App -> now the Runner checks if the instantiated optimizer is an EngineAlgorithm, if true: Engine = SequentialEngine (engine can be configured in later versions)
  • added a TabControl in ExportJsonDialog for parameters and results
  • updated parameter tree view with checkboxes (and linked them with VM)
  • renamed ActivatedResults to Results for templates
  • fixed a bug with injection of operators in MultiCheckedOperatorConverter -> now operators of an ValueParameter get set correctly
  • updated MultiCheckedOperatorConverter to extract/inject parameters of operators
  • fixed bug with path for template -> removed usage of method Path.GetDirectoryName, returned wrong results
  • splitted cache for JsonItemConverter into a cache for injection and extraction
  • JsonTemplateInstantiator now uses first item in objects array instead of searching for an object with template name
File size: 7.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>{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>..\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>bin\Release\</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.Xml.Linq" />
56    <Reference Include="System.Data.DataSetExtensions" />
57    <Reference Include="Microsoft.CSharp" />
58    <Reference Include="System.Data" />
59    <Reference Include="System.Net.Http" />
60    <Reference Include="System.Xml" />
61  </ItemGroup>
62  <ItemGroup>
63    <Compile Include="Constants.cs" />
64    <Compile Include="Converters\AlgorithmConverter.cs" />
65    <Compile Include="Converters\RegressionProblemDataConverter.cs" />
66    <Compile Include="Converters\ResultParameterConverter.cs" />
67    <Compile Include="Converters\ValueLookupParameterConverter.cs" />
68    <Compile Include="Converters\ValueRangeConverter.cs" />
69    <Compile Include="Interfaces\IJsonItem.cs" />
70    <Compile Include="Interfaces\IJsonItemValidator.cs" />
71    <Compile Include="Models\GenericJsonItem.cs" />
72    <Compile Include="Models\JsonItem.cs" />
73    <Compile Include="Models\JsonItems.cs" />
74    <Compile Include="Models\ResultItem.cs" />
75    <Compile Include="Models\UnsupportedJsonItem.cs" />
76    <Compile Include="SingleLineArrayJsonWriter.cs" />
77    <Compile Include="Extensions\TypeExtensions.cs" />
78    <Compile Include="JCGenerator.cs" />
79    <Compile Include="JsonTemplateInstantiator.cs" />
80    <Compile Include="Converters\ConstrainedValueParameterConverter.cs" />
81    <Compile Include="Converters\ParameterizedItemConverter.cs" />
82    <Compile Include="Converters\ValueParameterConverter.cs" />
83    <Compile Include="Converters\EnumTypeConverter.cs" />
84    <Compile Include="Converters\LookupParameterConverter.cs" />
85    <Compile Include="Converters\MultiCheckedOperatorConverter.cs" />
86    <Compile Include="Converters\StringValueConverter.cs" />
87    <Compile Include="Converters\ValueTypeArrayConverter.cs" />
88    <Compile Include="Converters\BaseConverter.cs" />
89    <Compile Include="Converters\ValueTypeMatrixConverter.cs" />
90    <Compile Include="Converters\ValueTypeValueConverter.cs" />
91    <Compile Include="JsonItemConverterFactory.cs" />
92    <Compile Include="Plugin.cs" />
93    <Compile Include="Properties\AssemblyInfo.cs" />
94    <Compile Include="Interfaces\IJsonItemConverter.cs" />
95    <Compile Include="JsonItemConverter.cs" />
96  </ItemGroup>
97  <ItemGroup>
98    <None Include="HeuristicLab.snk" />
99    <None Include="packages.config" />
100    <None Include="Plugin.cs.frame" />
101  </ItemGroup>
102  <ItemGroup>
103    <ProjectReference Include="..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
104      <Project>{958b43bc-cc5c-4fa2-8628-2b3b01d890b6}</Project>
105      <Name>HeuristicLab.Collections-3.3</Name>
106    </ProjectReference>
107    <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
108      <Project>{a9ad58b9-3ef9-4cc1-97e5-8d909039ff5c}</Project>
109      <Name>HeuristicLab.Common-3.3</Name>
110    </ProjectReference>
111    <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
112      <Project>{c36bd924-a541-4a00-afa8-41701378ddc5}</Project>
113      <Name>HeuristicLab.Core-3.3</Name>
114    </ProjectReference>
115    <ProjectReference Include="..\HeuristicLab.Data\3.3\HeuristicLab.Data-3.3.csproj">
116      <Project>{BBAB9DF5-5EF3-4BA8-ADE9-B36E82114937}</Project>
117      <Name>HeuristicLab.Data-3.3</Name>
118    </ProjectReference>
119    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
120      <Project>{14ab8d24-25bc-400c-a846-4627aa945192}</Project>
121      <Name>HeuristicLab.Optimization-3.3</Name>
122    </ProjectReference>
123    <ProjectReference Include="..\HeuristicLab.Parameters\3.3\HeuristicLab.Parameters-3.3.csproj">
124      <Project>{56F9106A-079F-4C61-92F6-86A84C2D84B7}</Project>
125      <Name>HeuristicLab.Parameters-3.3</Name>
126    </ProjectReference>
127    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
128      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
129      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
130    </ProjectReference>
131    <ProjectReference Include="..\HeuristicLab.Problems.DataAnalysis\3.4\HeuristicLab.Problems.DataAnalysis-3.4.csproj">
132      <Project>{df87c13e-a889-46ff-8153-66dcaa8c5674}</Project>
133      <Name>HeuristicLab.Problems.DataAnalysis-3.4</Name>
134    </ProjectReference>
135    <ProjectReference Include="..\HeuristicLab.Problems.Instances.DataAnalysis\3.3\HeuristicLab.Problems.Instances.DataAnalysis-3.3.csproj">
136      <Project>{94c7714e-29d4-4d6d-b213-2c18d627ab75}</Project>
137      <Name>HeuristicLab.Problems.Instances.DataAnalysis-3.3</Name>
138    </ProjectReference>
139    <ProjectReference Include="..\HeuristicLab.SequentialEngine\3.3\HeuristicLab.SequentialEngine-3.3.csproj">
140      <Project>{DC3D7072-7999-4719-B65D-3997744D5DC1}</Project>
141      <Name>HeuristicLab.SequentialEngine-3.3</Name>
142    </ProjectReference>
143  </ItemGroup>
144  <ItemGroup />
145  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
146  <PropertyGroup>
147    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
148set ProjectDir=$(ProjectDir)
149set SolutionDir=$(SolutionDir)
150set Outdir=$(Outdir)
151
152call PreBuildEvent.cmd
153
154</PreBuildEvent>
155  </PropertyGroup>
156</Project>
Note: See TracBrowser for help on using the repository browser.