Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.OptimizerIntegration/HeuristicLab.JsonInterface.OptimizerIntegration.csproj @ 17417

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

#3026:

  • added initial VM (ArrayValueVM) and control for array values (JsonItemArrayValueControl)
  • new types of JsonItems for better type safety:
    • for arrays: DoubleArrayJsonItem, IntArrayJsonItem, BoolArrayJsonItem
    • for matrix: DoubleMatrixJsonItem, IntMatrixJsonItem, BoolMatrixJsonItem
  • refactored ValueTypeArrayConverter and ValueTypeMatrixConverter -> better type safety with new JsonItems
  • enhanced StringValueVM and implemented JsonItemValidValuesControl with MVVM architecture
  • the VM of JsonItemBaseControl is now protected (was private)
  • improved JsonItem<V,R> -> now handles JTokens correctly
File size: 10.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>{5A3413F8-0928-4167-80E7-AAD9D6E38A94}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.JsonInterface.OptimizerIntegration</RootNamespace>
11    <AssemblyName>HeuristicLab.JsonInterface.OptimizerIntegration</AssemblyName>
12    <TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <Deterministic>true</Deterministic>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\bin\</OutputPath>
21    <DefineConstants>DEBUG;TRACE</DefineConstants>
22    <ErrorReport>prompt</ErrorReport>
23    <WarningLevel>4</WarningLevel>
24  </PropertyGroup>
25  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26    <DebugType>pdbonly</DebugType>
27    <Optimize>true</Optimize>
28    <OutputPath>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <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.Common.Resources-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
53      <SpecificVersion>False</SpecificVersion>
54      <HintPath>..\bin\HeuristicLab.Common.Resources-3.3.dll</HintPath>
55    </Reference>
56    <Reference Include="HeuristicLab.Core.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
57      <SpecificVersion>False</SpecificVersion>
58      <HintPath>..\bin\HeuristicLab.Core.Views-3.3.dll</HintPath>
59    </Reference>
60    <Reference Include="HeuristicLab.Data-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
61      <SpecificVersion>False</SpecificVersion>
62      <HintPath>..\bin\HeuristicLab.Data-3.3.dll</HintPath>
63    </Reference>
64    <Reference Include="HeuristicLab.Optimization.Views-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
65      <SpecificVersion>False</SpecificVersion>
66      <HintPath>..\bin\HeuristicLab.Optimization.Views-3.3.dll</HintPath>
67    </Reference>
68    <Reference Include="System" />
69    <Reference Include="System.Core" />
70    <Reference Include="System.Drawing" />
71    <Reference Include="System.Windows.Forms" />
72    <Reference Include="System.Xml.Linq" />
73    <Reference Include="System.Data.DataSetExtensions" />
74    <Reference Include="Microsoft.CSharp" />
75    <Reference Include="System.Data" />
76    <Reference Include="System.Net.Http" />
77    <Reference Include="System.Xml" />
78  </ItemGroup>
79  <ItemGroup>
80    <Compile Include="Properties\Resources.Designer.cs">
81      <AutoGen>True</AutoGen>
82      <DesignTime>True</DesignTime>
83      <DependentUpon>Resources.resx</DependentUpon>
84    </Compile>
85    <Compile Include="Shared\JsonItemBaseControl.cs">
86      <SubType>UserControl</SubType>
87    </Compile>
88    <Compile Include="Shared\JsonItemBaseControl.Designer.cs">
89      <DependentUpon>JsonItemBaseControl.cs</DependentUpon>
90    </Compile>
91    <Compile Include="Shared\NumericRangeControl.cs">
92      <SubType>UserControl</SubType>
93    </Compile>
94    <Compile Include="Shared\NumericRangeControl.Designer.cs">
95      <DependentUpon>NumericRangeControl.cs</DependentUpon>
96    </Compile>
97    <Compile Include="ViewModels\ArrayValueVM.cs" />
98    <Compile Include="ViewModels\JsonItemVMBase.cs" />
99    <Compile Include="ViewModels\RangeVM.cs" />
100    <Compile Include="ViewModels\SingleValueVM.cs" />
101    <Compile Include="ViewModels\StringValueVM.cs" />
102    <Compile Include="Views\ExportJsonDialog.cs">
103      <SubType>Form</SubType>
104    </Compile>
105    <Compile Include="Views\ExportJsonDialog.Designer.cs">
106      <DependentUpon>ExportJsonDialog.cs</DependentUpon>
107    </Compile>
108    <Compile Include="FileManager.cs" />
109    <Compile Include="Views\JsonItemArrayValueControl.cs">
110      <SubType>UserControl</SubType>
111    </Compile>
112    <Compile Include="Views\JsonItemArrayValueControl.Designer.cs">
113      <DependentUpon>JsonItemArrayValueControl.cs</DependentUpon>
114    </Compile>
115    <Compile Include="Views\JsonItemBoolControl.cs">
116      <SubType>UserControl</SubType>
117    </Compile>
118    <Compile Include="Views\JsonItemBoolControl.Designer.cs">
119      <DependentUpon>JsonItemBoolControl.cs</DependentUpon>
120    </Compile>
121    <Compile Include="Views\JsonItemRangeControl.cs">
122      <SubType>UserControl</SubType>
123    </Compile>
124    <Compile Include="Views\JsonItemRangeControl.Designer.cs">
125      <DependentUpon>JsonItemRangeControl.cs</DependentUpon>
126    </Compile>
127    <Compile Include="Views\JsonItemValueControl.cs">
128      <SubType>UserControl</SubType>
129    </Compile>
130    <Compile Include="Views\JsonItemValueControl.Designer.cs">
131      <DependentUpon>JsonItemValueControl.cs</DependentUpon>
132    </Compile>
133    <Compile Include="Views\JsonItemValidValuesControl.cs">
134      <SubType>UserControl</SubType>
135    </Compile>
136    <Compile Include="Views\JsonItemValidValuesControl.Designer.cs">
137      <DependentUpon>JsonItemValidValuesControl.cs</DependentUpon>
138    </Compile>
139    <Compile Include="MenuItems\ImportJsonTemplateMenuItem.cs" />
140    <Compile Include="MenuItems\ExportJsonTemplateMenuItem.cs" />
141    <Compile Include="Plugin.cs" />
142    <Compile Include="Properties\AssemblyInfo.cs" />
143  </ItemGroup>
144  <ItemGroup>
145    <None Include="HeuristicLab.snk" />
146    <None Include="Plugin.cs.frame" />
147  </ItemGroup>
148  <ItemGroup>
149    <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
150      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
151      <Name>HeuristicLab.Common-3.3</Name>
152    </ProjectReference>
153    <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
154      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
155      <Name>HeuristicLab.Core-3.3</Name>
156    </ProjectReference>
157    <ProjectReference Include="..\HeuristicLab.Data.Views\3.3\HeuristicLab.Data.Views-3.3.csproj">
158      <Project>{72104A0B-90E7-42F3-9ABE-9BBBADD4B943}</Project>
159      <Name>HeuristicLab.Data.Views-3.3</Name>
160    </ProjectReference>
161    <ProjectReference Include="..\HeuristicLab.JsonInterface\HeuristicLab.JsonInterface.csproj">
162      <Project>{0e3aab5e-f152-44e0-a054-4d9a83ecee08}</Project>
163      <Name>HeuristicLab.JsonInterface</Name>
164    </ProjectReference>
165    <ProjectReference Include="..\HeuristicLab.MainForm.WindowsForms\3.3\HeuristicLab.MainForm.WindowsForms-3.3.csproj">
166      <Project>{ab687bbe-1bfe-476b-906d-44237135431d}</Project>
167      <Name>HeuristicLab.MainForm.WindowsForms-3.3</Name>
168    </ProjectReference>
169    <ProjectReference Include="..\HeuristicLab.MainForm\3.3\HeuristicLab.MainForm-3.3.csproj">
170      <Project>{3bd61258-31da-4b09-89c0-4f71fef5f05a}</Project>
171      <Name>HeuristicLab.MainForm-3.3</Name>
172    </ProjectReference>
173    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
174      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
175      <Name>HeuristicLab.Optimization-3.3</Name>
176    </ProjectReference>
177    <ProjectReference Include="..\HeuristicLab.Optimizer\3.3\HeuristicLab.Optimizer-3.3.csproj">
178      <Project>{C664305E-497C-4533-A140-967DEDB05C19}</Project>
179      <Name>HeuristicLab.Optimizer-3.3</Name>
180    </ProjectReference>
181    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
182      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
183      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
184    </ProjectReference>
185  </ItemGroup>
186  <ItemGroup>
187    <EmbeddedResource Include="Properties\Resources.resx">
188      <Generator>ResXFileCodeGenerator</Generator>
189      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
190    </EmbeddedResource>
191    <EmbeddedResource Include="Shared\JsonItemBaseControl.resx">
192      <DependentUpon>JsonItemBaseControl.cs</DependentUpon>
193    </EmbeddedResource>
194    <EmbeddedResource Include="Shared\NumericRangeControl.resx">
195      <DependentUpon>NumericRangeControl.cs</DependentUpon>
196    </EmbeddedResource>
197    <EmbeddedResource Include="Views\ExportJsonDialog.resx">
198      <DependentUpon>ExportJsonDialog.cs</DependentUpon>
199    </EmbeddedResource>
200    <EmbeddedResource Include="Views\JsonItemBoolControl.resx">
201      <DependentUpon>JsonItemBoolControl.cs</DependentUpon>
202    </EmbeddedResource>
203    <EmbeddedResource Include="Views\JsonItemRangeControl.resx">
204      <DependentUpon>JsonItemRangeControl.cs</DependentUpon>
205    </EmbeddedResource>
206    <EmbeddedResource Include="Views\JsonItemValueControl.resx">
207      <DependentUpon>JsonItemValueControl.cs</DependentUpon>
208    </EmbeddedResource>
209    <EmbeddedResource Include="Views\JsonItemValidValuesControl.resx">
210      <DependentUpon>JsonItemValidValuesControl.cs</DependentUpon>
211    </EmbeddedResource>
212  </ItemGroup>
213  <ItemGroup />
214  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
215  <PropertyGroup>
216    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
217set ProjectDir=$(ProjectDir)
218set SolutionDir=$(SolutionDir)
219set Outdir=$(Outdir)
220
221call PreBuildEvent.cmd
222
223</PreBuildEvent>
224  </PropertyGroup>
225</Project>
Note: See TracBrowser for help on using the repository browser.