Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 17364 was 17324, checked in by dpiringe, 5 years ago

#3026

  • added new project HeuristicLab.JsonInterface.App -> takes two arguments (template and config) to create an IOptimizer-Item, starts the run and writes the results to a file (currently hardcoded: C:\Workspace\test.txt)
  • made HeuristicLab.JsonInterface and HeuristicLab.JsonInterface.App to valid plugins
  • fixed a reference resolving bug with not-changeable parameters
File size: 4.4 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>..\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="System" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Xml.Linq" />
43    <Reference Include="System.Data.DataSetExtensions" />
44    <Reference Include="Microsoft.CSharp" />
45    <Reference Include="System.Data" />
46    <Reference Include="System.Net.Http" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <None Include="HeuristicLab.snk" />
51    <None Include="Plugin.cs.frame" />
52    <Compile Include="Runner.cs" />
53    <Compile Include="Plugin.cs" />
54    <Compile Include="Properties\AssemblyInfo.cs" />
55  </ItemGroup>
56  <ItemGroup>
57    <ProjectReference Include="..\HeuristicLab.Collections\3.3\HeuristicLab.Collections-3.3.csproj">
58      <Project>{958B43BC-CC5C-4FA2-8628-2B3B01D890B6}</Project>
59      <Name>HeuristicLab.Collections-3.3</Name>
60    </ProjectReference>
61    <ProjectReference Include="..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
62      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
63      <Name>HeuristicLab.Common-3.3</Name>
64    </ProjectReference>
65    <ProjectReference Include="..\HeuristicLab.Core\3.3\HeuristicLab.Core-3.3.csproj">
66      <Project>{C36BD924-A541-4A00-AFA8-41701378DDC5}</Project>
67      <Name>HeuristicLab.Core-3.3</Name>
68    </ProjectReference>
69    <ProjectReference Include="..\HeuristicLab.JsonInterface\HeuristicLab.JsonInterface.csproj">
70      <Project>{0e3aab5e-f152-44e0-a054-4d9a83ecee08}</Project>
71      <Name>HeuristicLab.JsonInterface</Name>
72    </ProjectReference>
73    <ProjectReference Include="..\HeuristicLab.Optimization\3.3\HeuristicLab.Optimization-3.3.csproj">
74      <Project>{14AB8D24-25BC-400C-A846-4627AA945192}</Project>
75      <Name>HeuristicLab.Optimization-3.3</Name>
76    </ProjectReference>
77    <ProjectReference Include="..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
78      <Project>{94186a6a-5176-4402-ae83-886557b53cca}</Project>
79      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
80    </ProjectReference>
81    <ProjectReference Include="..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
82      <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>
83      <Name>HeuristicLab.Problems.Instances-3.3</Name>
84    </ProjectReference>
85  </ItemGroup>
86  <ItemGroup />
87  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
88  <PropertyGroup>
89    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
90set ProjectDir=$(ProjectDir)
91set SolutionDir=$(SolutionDir)
92set Outdir=$(Outdir)
93
94call PreBuildEvent.cmd
95
96</PreBuildEvent>
97  </PropertyGroup>
98</Project>
Note: See TracBrowser for help on using the repository browser.