Free cookie consent management tool by TermsFeed Policy Generator

source: misc/tools/HeuristicLab.HiveDrain/HiveStatus/HiveStatus.csproj @ 15921

Last change on this file since 15921 was 15921, checked in by abeham, 6 years ago

#2829:

  • Updated project's references
  • Renamed solution file
  • Added HiveStatus console application to query the job status
File size: 4.2 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>{E5FAA64A-CDE0-4932-8813-4F1AC041D8A4}</ProjectGuid>
8    <OutputType>Exe</OutputType>
9    <RootNamespace>HiveStatus</RootNamespace>
10    <AssemblyName>HiveStatus</AssemblyName>
11    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12    <FileAlignment>512</FileAlignment>
13  </PropertyGroup>
14  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
15    <PlatformTarget>AnyCPU</PlatformTarget>
16    <DebugSymbols>true</DebugSymbols>
17    <DebugType>full</DebugType>
18    <Optimize>false</Optimize>
19    <OutputPath>bin\Debug\</OutputPath>
20    <DefineConstants>DEBUG;TRACE</DefineConstants>
21    <ErrorReport>prompt</ErrorReport>
22    <WarningLevel>4</WarningLevel>
23  </PropertyGroup>
24  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25    <PlatformTarget>AnyCPU</PlatformTarget>
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  <ItemGroup>
34    <Reference Include="CommandLine, Version=2.2.1.0, Culture=neutral, PublicKeyToken=de6f01bd326f8c32, processorArchitecture=MSIL">
35      <HintPath>..\packages\CommandLineParser.2.2.1\lib\net45\CommandLine.dll</HintPath>
36    </Reference>
37    <Reference Include="HeuristicLab.Clients.Common-3.3">
38      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Clients.Common-3.3.dll</HintPath>
39    </Reference>
40    <Reference Include="HeuristicLab.Clients.Hive-3.3">
41      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Clients.Hive-3.3.dll</HintPath>
42    </Reference>
43    <Reference Include="HeuristicLab.Collections-3.3">
44      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Collections-3.3.dll</HintPath>
45    </Reference>
46    <Reference Include="HeuristicLab.Common-3.3">
47      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Common-3.3.dll</HintPath>
48    </Reference>
49    <Reference Include="HeuristicLab.Common.Resources-3.3">
50      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Common.Resources-3.3.dll</HintPath>
51    </Reference>
52    <Reference Include="HeuristicLab.Core-3.3">
53      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Core-3.3.dll</HintPath>
54    </Reference>
55    <Reference Include="HeuristicLab.Data-3.3">
56      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Data-3.3.dll</HintPath>
57    </Reference>
58    <Reference Include="HeuristicLab.Hive-3.3">
59      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Hive-3.3.dll</HintPath>
60    </Reference>
61    <Reference Include="HeuristicLab.MainForm-3.3">
62      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.MainForm-3.3.dll</HintPath>
63    </Reference>
64    <Reference Include="HeuristicLab.Persistence-3.3">
65      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.Persistence-3.3.dll</HintPath>
66    </Reference>
67    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
68      <HintPath>..\..\..\..\trunk\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
69    </Reference>
70    <Reference Include="System" />
71    <Reference Include="System.Core" />
72    <Reference Include="System.ServiceModel" />
73    <Reference Include="System.Xml.Linq" />
74    <Reference Include="System.Data.DataSetExtensions" />
75    <Reference Include="Microsoft.CSharp" />
76    <Reference Include="System.Data" />
77    <Reference Include="System.Net.Http" />
78    <Reference Include="System.Xml" />
79  </ItemGroup>
80  <ItemGroup>
81    <Compile Include="Options.cs" />
82    <Compile Include="Program.cs" />
83    <Compile Include="Properties\AssemblyInfo.cs" />
84  </ItemGroup>
85  <ItemGroup>
86    <None Include="App.config" />
87    <None Include="packages.config" />
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90</Project>
Note: See TracBrowser for help on using the repository browser.