Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.Orienteering/HeuristicLab.Problems.Instances.Orienteering/3.3/HeuristicLab.Problems.Instances.Orienteering-3.3.csproj @ 12721

Last change on this file since 12721 was 12721, checked in by abeham, 9 years ago

#2208:

  • Added missing license headers
  • Updates copyright year
  • Renamed analyzer (us spelling)
  • Removed script
  • Implemented samples unit test
  • Changed solution view to use horizontal splitting, removed viewhosts
  • Updated instance provider to use .NET45 zip compression
  • Restructuring and reformatting
File size: 5.6 KB
RevLine 
[11258]1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="12.0" DefaultTargets="Build" 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>{B37BF2DD-752C-456A-9DEF-FF5B41FC3C77}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Problems.Instances.Orienteering</RootNamespace>
11    <AssemblyName>HeuristicLab.Problems.Instances.Orienteering-3.3</AssemblyName>
[12721]12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
[11258]13    <FileAlignment>512</FileAlignment>
[12721]14    <TargetFrameworkProfile />
[11258]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>
[12721]24    <Prefer32Bit>false</Prefer32Bit>
[11258]25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>..\..\bin\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
[12721]33    <Prefer32Bit>false</Prefer32Bit>
[11258]34  </PropertyGroup>
35  <PropertyGroup>
36    <SignAssembly>true</SignAssembly>
37  </PropertyGroup>
38  <PropertyGroup>
39    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
40  </PropertyGroup>
[11305]41  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
42    <DebugSymbols>true</DebugSymbols>
[12721]43    <OutputPath>..\..\bin\</OutputPath>
[11305]44    <DefineConstants>DEBUG;TRACE</DefineConstants>
45    <DebugType>full</DebugType>
46    <PlatformTarget>x64</PlatformTarget>
47    <ErrorReport>prompt</ErrorReport>
48    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
[12721]49    <Prefer32Bit>false</Prefer32Bit>
[11305]50  </PropertyGroup>
51  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
[12721]52    <OutputPath>..\..\bin\</OutputPath>
[11305]53    <DefineConstants>TRACE</DefineConstants>
54    <Optimize>true</Optimize>
55    <DebugType>pdbonly</DebugType>
56    <PlatformTarget>x64</PlatformTarget>
57    <ErrorReport>prompt</ErrorReport>
58    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
[12721]59    <Prefer32Bit>false</Prefer32Bit>
[11305]60  </PropertyGroup>
61  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
62    <DebugSymbols>true</DebugSymbols>
[12721]63    <OutputPath>..\..\bin\</OutputPath>
[11305]64    <DefineConstants>DEBUG;TRACE</DefineConstants>
65    <DebugType>full</DebugType>
66    <PlatformTarget>x86</PlatformTarget>
67    <ErrorReport>prompt</ErrorReport>
68    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
[12721]69    <Prefer32Bit>false</Prefer32Bit>
[11305]70  </PropertyGroup>
71  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
[12721]72    <OutputPath>..\..\bin\</OutputPath>
[11305]73    <DefineConstants>TRACE</DefineConstants>
74    <Optimize>true</Optimize>
75    <DebugType>pdbonly</DebugType>
76    <PlatformTarget>x86</PlatformTarget>
77    <ErrorReport>prompt</ErrorReport>
78    <CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
[12721]79    <Prefer32Bit>false</Prefer32Bit>
[11305]80  </PropertyGroup>
[11258]81  <ItemGroup>
82    <Reference Include="System" />
[12721]83    <Reference Include="System.IO.Compression" />
[11258]84  </ItemGroup>
85  <ItemGroup>
[11301]86    <Compile Include="SchildeParser.cs" />
87    <EmbeddedResource Include="Data\Schilde.zip" />
[11258]88    <None Include="HeuristicLab.snk" />
89    <None Include="Plugin.cs.frame" />
[11260]90    <Compile Include="OPDataDescriptor.cs" />
[11301]91    <Compile Include="SchildeInstanceProvider.cs" />
[11258]92    <Compile Include="Plugin.cs" />
93    <None Include="Properties\AssemblyInfo.cs.frame" />
94    <Compile Include="Properties\AssemblyInfo.cs" />
95  </ItemGroup>
96  <ItemGroup>
[11260]97    <ProjectReference Include="..\..\HeuristicLab.Common\3.3\HeuristicLab.Common-3.3.csproj">
98      <Project>{A9AD58B9-3EF9-4CC1-97E5-8D909039FF5C}</Project>
99      <Name>HeuristicLab.Common-3.3</Name>
100    </ProjectReference>
[11258]101    <ProjectReference Include="..\..\HeuristicLab.PluginInfrastructure\3.3\HeuristicLab.PluginInfrastructure-3.3.csproj">
102      <Project>{94186A6A-5176-4402-AE83-886557B53CCA}</Project>
103      <Name>HeuristicLab.PluginInfrastructure-3.3</Name>
104    </ProjectReference>
[11260]105    <ProjectReference Include="..\..\HeuristicLab.Problems.Instances\3.3\HeuristicLab.Problems.Instances-3.3.csproj">
106      <Project>{3540E29E-4793-49E7-8EE2-FEA7F61C3994}</Project>
107      <Name>HeuristicLab.Problems.Instances-3.3</Name>
108    </ProjectReference>
[11258]109  </ItemGroup>
110  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
111  <PropertyGroup>
112    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
113set ProjectDir=$(ProjectDir)
114set SolutionDir=$(SolutionDir)
115set Outdir=$(Outdir)
116
117call PreBuildEvent.cmd</PreBuildEvent>
118  </PropertyGroup>
119  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
120       Other similar extension points exist, see Microsoft.Common.targets.
121  <Target Name="BeforeBuild">
122  </Target>
123  <Target Name="AfterBuild">
124  </Target>
125  -->
126</Project>
Note: See TracBrowser for help on using the repository browser.