Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/20/20 16:36:05 (4 years ago)
Author:
dpiringe
Message:

#3026:

  • fixed a bug in BaseConverter -> the range for percent values should be returned correctly now
  • fixed a bug in ConstrainedValueParameterConverter, ParameterizedItemConverter, ValueParameterConverter -> unsupported json items get filtered now
  • JCGenerator is now a dynamic class and can return all JsonItems for an IOptimizer now (instead of string only) + it is now possible to generate an template string with an IEnumerable<JsonItem>
  • added first version of an export dialog for JsonInterface
    • it is organized with a main view (for the dialog) and some user controls (for a better visualization of an JsonItem -> to reduce wrong user inputs)
    • the user controls inherit a base control, which organizes some base values of an JsonItem
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/HeuristicLab.JsonInterface.OptimizerIntegration.csproj

    r17331 r17404  
    3838  </PropertyGroup>
    3939  <ItemGroup>
     40    <Reference Include="HeuristicLab.Analysis-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     41      <SpecificVersion>False</SpecificVersion>
     42      <HintPath>..\bin\HeuristicLab.Analysis-3.3.dll</HintPath>
     43    </Reference>
     44    <Reference Include="HeuristicLab.Analysis.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     45      <SpecificVersion>False</SpecificVersion>
     46      <HintPath>..\bin\HeuristicLab.Analysis.Views-3.3.dll</HintPath>
     47    </Reference>
     48    <Reference Include="HeuristicLab.Collections-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     49      <SpecificVersion>False</SpecificVersion>
     50      <HintPath>..\bin\HeuristicLab.Collections-3.3.dll</HintPath>
     51    </Reference>
     52    <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     53      <SpecificVersion>False</SpecificVersion>
     54      <HintPath>..\bin\HeuristicLab.Core.Views-3.3.dll</HintPath>
     55    </Reference>
     56    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     57      <SpecificVersion>False</SpecificVersion>
     58      <HintPath>..\bin\HeuristicLab.Data-3.3.dll</HintPath>
     59    </Reference>
     60    <Reference Include="HeuristicLab.Optimization.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
     61      <SpecificVersion>False</SpecificVersion>
     62      <HintPath>..\bin\HeuristicLab.Optimization.Views-3.3.dll</HintPath>
     63    </Reference>
    4064    <Reference Include="System" />
    4165    <Reference Include="System.Core" />
     66    <Reference Include="System.Drawing" />
    4267    <Reference Include="System.Windows.Forms" />
    4368    <Reference Include="System.Xml.Linq" />
     
    4974  </ItemGroup>
    5075  <ItemGroup>
     76    <Compile Include="Properties\Resources.Designer.cs">
     77      <AutoGen>True</AutoGen>
     78      <DesignTime>True</DesignTime>
     79      <DependentUpon>Resources.resx</DependentUpon>
     80    </Compile>
     81    <Compile Include="Shared\JsonItemBaseControl.cs">
     82      <SubType>UserControl</SubType>
     83    </Compile>
     84    <Compile Include="Shared\JsonItemBaseControl.Designer.cs">
     85      <DependentUpon>JsonItemBaseControl.cs</DependentUpon>
     86    </Compile>
     87    <Compile Include="Views\ExportJsonDialog.cs">
     88      <SubType>Form</SubType>
     89    </Compile>
     90    <Compile Include="Views\ExportJsonDialog.Designer.cs">
     91      <DependentUpon>ExportJsonDialog.cs</DependentUpon>
     92    </Compile>
    5193    <Compile Include="FileManager.cs" />
     94    <Compile Include="Views\JsonItemBoolControl.cs">
     95      <SubType>UserControl</SubType>
     96    </Compile>
     97    <Compile Include="Views\JsonItemBoolControl.Designer.cs">
     98      <DependentUpon>JsonItemBoolControl.cs</DependentUpon>
     99    </Compile>
     100    <Compile Include="Views\JsonItemRangeControl.cs">
     101      <SubType>UserControl</SubType>
     102    </Compile>
     103    <Compile Include="Views\JsonItemRangeControl.Designer.cs">
     104      <DependentUpon>JsonItemRangeControl.cs</DependentUpon>
     105    </Compile>
     106    <Compile Include="Views\JsonItemValueControl.cs">
     107      <SubType>UserControl</SubType>
     108    </Compile>
     109    <Compile Include="Views\JsonItemValueControl.Designer.cs">
     110      <DependentUpon>JsonItemValueControl.cs</DependentUpon>
     111    </Compile>
     112    <Compile Include="Views\JsonItemValidValuesControl.cs">
     113      <SubType>UserControl</SubType>
     114    </Compile>
     115    <Compile Include="Views\JsonItemValidValuesControl.Designer.cs">
     116      <DependentUpon>JsonItemValidValuesControl.cs</DependentUpon>
     117    </Compile>
     118    <Compile Include="ViewModels\JsonItemVM.cs" />
    52119    <Compile Include="MenuItems\ImportJsonTemplateMenuItem.cs" />
    53120    <Compile Include="MenuItems\ExportJsonTemplateMenuItem.cs" />
     
    93160    </ProjectReference>
    94161  </ItemGroup>
     162  <ItemGroup>
     163    <EmbeddedResource Include="Properties\Resources.resx">
     164      <Generator>ResXFileCodeGenerator</Generator>
     165      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
     166    </EmbeddedResource>
     167    <EmbeddedResource Include="Shared\JsonItemBaseControl.resx">
     168      <DependentUpon>JsonItemBaseControl.cs</DependentUpon>
     169    </EmbeddedResource>
     170    <EmbeddedResource Include="Views\ExportJsonDialog.resx">
     171      <DependentUpon>ExportJsonDialog.cs</DependentUpon>
     172    </EmbeddedResource>
     173    <EmbeddedResource Include="Views\JsonItemBoolControl.resx">
     174      <DependentUpon>JsonItemBoolControl.cs</DependentUpon>
     175    </EmbeddedResource>
     176    <EmbeddedResource Include="Views\JsonItemRangeControl.resx">
     177      <DependentUpon>JsonItemRangeControl.cs</DependentUpon>
     178    </EmbeddedResource>
     179    <EmbeddedResource Include="Views\JsonItemValueControl.resx">
     180      <DependentUpon>JsonItemValueControl.cs</DependentUpon>
     181    </EmbeddedResource>
     182    <EmbeddedResource Include="Views\JsonItemValidValuesControl.resx">
     183      <DependentUpon>JsonItemValidValuesControl.cs</DependentUpon>
     184    </EmbeddedResource>
     185  </ItemGroup>
     186  <ItemGroup />
    95187  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
    96188  <PropertyGroup>
Note: See TracChangeset for help on using the changeset viewer.