Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface.App/HeuristicLab.JsonInterface.App.csproj

Last change on this file was 18044, checked in by dpiringe, 3 years ago

#3026

  • adjusted the necessary plugin dependencies for all three JsonInterface projects (depending on CheckPluginDependenciesForReferencedAssemblies and CheckReferenceAssembliesForPluginDependencies tests)
  • using now the error handling dialog in FileManager
  • added a AggregateException in RegressionProblemDataConverter for unconvertable values
File size: 6.5 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>{039D995F-1AA5-4461-92B3-B466F612D998}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.JsonInterface.App</RootNamespace>
11    <AssemblyName>HeuristicLab.JsonInterface.App</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>$(SolutionDir)\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>$(SolutionDir)\bin\</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="Google.Protobuf, Version=3.6.1.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
41      <HintPath>..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath>
42    </Reference>
43    <Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
44      <HintPath>..\packages\Newtonsoft.Json.12.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
45    </Reference>
46    <Reference Include="System" />
47    <Reference Include="System.Core" />
48    <Reference Include="System.Drawing" />
49    <Reference Include="System.Drawing.Common, Version=4.0.0.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
50      <HintPath>..\packages\System.Drawing.Common.4.5.1\lib\net461\System.Drawing.Common.dll</HintPath>
51    </Reference>
52    <Reference Include="System.Windows.Forms" />
53    <Reference Include="System.Xml.Linq" />
54    <Reference Include="System.Data.DataSetExtensions" />
55    <Reference Include="Microsoft.CSharp" />
56    <Reference Include="System.Data" />
57    <Reference Include="System.Net.Http" />
58    <Reference Include="System.Xml" />
59  </ItemGroup>
60  <ItemGroup>
61    <None Include="HeuristicLab.snk" />
62    <None Include="packages.config" />
63    <None Include="Plugin.cs.frame" />
64    <Compile Include="JsonInterfaceForm.cs">
65      <SubType>Form</SubType>
66    </Compile>
67    <Compile Include="JsonInterfaceForm.Designer.cs">
68      <DependentUpon>JsonInterfaceForm.cs</DependentUpon>
69    </Compile>
70    <Compile Include="Properties\Resources.Designer.cs">
71      <AutoGen>True</AutoGen>
72      <DesignTime>True</DesignTime>
73      <DependentUpon>Resources.resx</DependentUpon>
74    </Compile>
75    <Compile Include="Runner.cs" />
76    <Compile Include="Plugin.cs" />
77    <Compile Include="Properties\AssemblyInfo.cs" />
78  </ItemGroup>
79  <ItemGroup>
80    <ProjectReference Include="..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
81      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
82      <Name>HeuristicLab.Collections-3.3</Name>
83      <Private>False</Private>
84    </ProjectReference>
85    <ProjectReference Include="..\HeuristicLab.Common.Resources\3.3\HeuristicLab.Common.Resources-3.3.csproj">
86      <Project>{0e27a536-1c4a-4624-a65e-dc4f4f23e3e1}</Project>
87      <Name>HeuristicLab.Common.Resources-3.3</Name>
88      <Private>False</Private>
89    </ProjectReference>
90    <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
91      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
92      <Name>HeuristicLab.Common-3.3</Name>
93    </ProjectReference>
94    <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
95      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
96      <Name>HeuristicLab.Core-3.3</Name>
97      <Private>False</Private>
98    </ProjectReference>
99    <ProjectReference Include="..\HeuristicLab.JsonInterface\HeuristicLab.JsonInterface.csproj">
100      <Project>{0e3aab5e-f152-44e0-a054-4d9a83ecee08}</Project>
101      <Name>HeuristicLab.JsonInterface</Name>
102      <Private>False</Private>
103    </ProjectReference>
104    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
105      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
106      <Name>HeuristicLab.Optimization-3.3</Name>
107      <Private>False</Private>
108    </ProjectReference>
109    <ProjectReference Include="..\HeuristicLab.ParallelEngine\3.3\HeuristicLab.ParallelEngine-3.3.csproj">
110      <Project>{00814351-4AB8-4088-9B99-F62787B89E93}</Project>
111      <Name>HeuristicLab.ParallelEngine-3.3</Name>
112      <Private>False</Private>
113    </ProjectReference>
114    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
115      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
116      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
117      <Private>False</Private>
118    </ProjectReference>
119  </ItemGroup>
120  <ItemGroup>
121    <EmbeddedResource Include="JsonInterfaceForm.resx">
122      <DependentUpon>JsonInterfaceForm.cs</DependentUpon>
123    </EmbeddedResource>
124    <EmbeddedResource Include="Properties\Resources.resx">
125      <Generator>ResXFileCodeGenerator</Generator>
126      <LastGenOutput>Resources.Designer.cs</LastGenOutput>
127    </EmbeddedResource>
128  </ItemGroup>
129  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130  <PropertyGroup>
131    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
132set ProjectDir=$(ProjectDir)
133set SolutionDir=$(SolutionDir)
134set Outdir=$(Outdir)
135
136call PreBuildEvent.cmd
137
138</PreBuildEvent>
139  </PropertyGroup>
140</Project>
Note: See TracBrowser for help on using the repository browser.