Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/ExternalEvaluation/CSharp/ExternalEvaluation.Service/ExternalEvaluation.Service.csproj @ 15014

Last change on this file since 15014 was 15014, checked in by pfleck, 7 years ago

Added code and tools for the ExternalEvaluationProblem. (e.g. Java-side evaluation)

File size: 6.1 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3  <PropertyGroup>
4    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6    <ProductVersion>8.0.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{79C76C35-4D81-4E8F-BC0A-15A1C435A112}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Problems.ExternalEvaluation.Service</RootNamespace>
12    <AssemblyName>HeuristicLab.Problems.ExternalEvaluation.Service-3.3</AssemblyName>
13    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
15    <TargetFrameworkProfile />
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25    <Prefer32Bit>false</Prefer32Bit>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34    <Prefer32Bit>false</Prefer32Bit>
35  </PropertyGroup>
36  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
37    <DebugSymbols>true</DebugSymbols>
38    <OutputPath>bin\x86\Debug\</OutputPath>
39    <DefineConstants>DEBUG;TRACE</DefineConstants>
40    <DebugType>full</DebugType>
41    <PlatformTarget>x86</PlatformTarget>
42    <CodeAnalysisLogFile>bin\Debug\HL3ExternalEvaluation.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
43    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
44    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
45    <ErrorReport>prompt</ErrorReport>
46    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
47    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
48    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
49    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
50    <Prefer32Bit>false</Prefer32Bit>
51  </PropertyGroup>
52  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
53    <OutputPath>bin\x86\Release\</OutputPath>
54    <DefineConstants>TRACE</DefineConstants>
55    <Optimize>true</Optimize>
56    <DebugType>pdbonly</DebugType>
57    <PlatformTarget>x86</PlatformTarget>
58    <CodeAnalysisLogFile>bin\Release\HL3ExternalEvaluation.dll.CodeAnalysisLog.xml</CodeAnalysisLogFile>
59    <CodeAnalysisUseTypeNameInSuppression>true</CodeAnalysisUseTypeNameInSuppression>
60    <CodeAnalysisModuleSuppressionsFile>GlobalSuppressions.cs</CodeAnalysisModuleSuppressionsFile>
61    <ErrorReport>prompt</ErrorReport>
62    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
63    <CodeAnalysisRuleSetDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets</CodeAnalysisRuleSetDirectories>
64    <CodeAnalysisRuleDirectories>;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules</CodeAnalysisRuleDirectories>
65    <CodeAnalysisIgnoreBuiltInRules>false</CodeAnalysisIgnoreBuiltInRules>
66    <Prefer32Bit>false</Prefer32Bit>
67  </PropertyGroup>
68  <PropertyGroup>
69    <SignAssembly>true</SignAssembly>
70  </PropertyGroup>
71  <PropertyGroup>
72    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
73  </PropertyGroup>
74  <ItemGroup>
75    <Reference Include="Google.ProtocolBuffers-2.4.1.473">
76      <HintPath>..\Google.ProtocolBuffers-2.4.1.473.dll</HintPath>
77      <Private>False</Private>
78    </Reference>
79    <Reference Include="System" />
80    <Reference Include="System.Core" />
81    <Reference Include="System.Xml.Linq" />
82    <Reference Include="System.Data.DataSetExtensions" />
83    <Reference Include="System.Data" />
84    <Reference Include="System.Xml" />
85  </ItemGroup>
86  <ItemGroup>
87    <Compile Include="BlockingQueue.cs" />
88    <Compile Include="Channel.cs" />
89    <Compile Include="EventArgs.cs" />
90    <Compile Include="ExternalEvaluationMessages.cs" />
91    <Compile Include="Interfaces\IListenerFactory.cs" />
92    <Compile Include="Interfaces\IChannel.cs" />
93    <Compile Include="Interfaces\IListener.cs" />
94    <Compile Include="ServerSocketListener.cs" />
95    <Compile Include="PollService.cs" />
96    <Compile Include="Properties\AssemblyInfo.cs" />
97    <Compile Include="ServerSocketListenerFactory.cs" />
98    <Compile Include="Service.cs" />
99    <Compile Include="StreamChannel.cs" />
100  </ItemGroup>
101  <ItemGroup>
102    <None Include="ClassDiagram1.cd" />
103    <None Include="ExternalEvaluationMessages.proto" />
104    <None Include="HeuristicLab.snk" />
105    <None Include="Properties\AssemblyInfo.cs.frame" />
106  </ItemGroup>
107  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
108  <PropertyGroup>
109    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
110set ProjectDir=$(ProjectDir)
111set SolutionDir=$(SolutionDir)
112set Outdir=$(Outdir)
113
114"$(SolutionDir)ProtoGen.exe" --proto_path="$(SolutionDir)" "$(ProjectDir)ExternalEvaluationMessages.proto" --include_imports -output_directory="$(ProjectDir)"
115call PreBuildEvent.cmd</PreBuildEvent>
116  </PropertyGroup>
117  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
118       Other similar extension points exist, see Microsoft.Common.targets.
119  <Target Name="BeforeBuild">
120  </Target>
121  <Target Name="AfterBuild">
122  </Target>
123  -->
124</Project>
Note: See TracBrowser for help on using the repository browser.