Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.GoalSeekingProblem/HeuristicLab.GoalSeekingProblem.Views/3.4/GoalSeekingProblem.Views.csproj @ 14333

Last change on this file since 14333 was 14333, checked in by bburlacu, 8 years ago

#2679: Refactor problems and extract common functionality in static util class.

File size: 4.7 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="14.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>{B0CBFF1B-6A06-4DDA-B622-E847B8ADC908}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.GoalSeekingProblem.Views</RootNamespace>
11    <AssemblyName>HeuristicLab.GoalSeekingProblem.Views-3.4</AssemblyName>
12    <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <TargetFrameworkProfile />
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>..\..\..\..\trunk\sources\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>..\..\..\..\trunk\sources\bin\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="HeuristicLab.Common-3.3">
35      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Common-3.3.dll</HintPath>
36      <Private>False</Private>
37    </Reference>
38    <Reference Include="HeuristicLab.Core-3.3, Version=3.3.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL">
39      <SpecificVersion>False</SpecificVersion>
40      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.Core-3.3.dll</HintPath>
41      <Private>False</Private>
42    </Reference>
43    <Reference Include="HeuristicLab.MainForm-3.3">
44      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.MainForm-3.3.dll</HintPath>
45      <Private>False</Private>
46    </Reference>
47    <Reference Include="HeuristicLab.MainForm.WindowsForms-3.3">
48      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.MainForm.WindowsForms-3.3.dll</HintPath>
49      <Private>False</Private>
50    </Reference>
51    <Reference Include="HeuristicLab.PluginInfrastructure-3.3">
52      <HintPath>..\..\..\..\trunk\sources\bin\HeuristicLab.PluginInfrastructure-3.3.dll</HintPath>
53      <Private>False</Private>
54    </Reference>
55    <Reference Include="System" />
56    <Reference Include="System.Core" />
57    <Reference Include="System.Drawing" />
58    <Reference Include="System.Windows.Forms" />
59    <Reference Include="System.Xml.Linq" />
60    <Reference Include="System.Data.DataSetExtensions" />
61    <Reference Include="Microsoft.CSharp" />
62    <Reference Include="System.Data" />
63    <Reference Include="System.Net.Http" />
64    <Reference Include="System.Xml" />
65  </ItemGroup>
66  <ItemGroup>
67    <Compile Include="InputParameterView.cs">
68      <SubType>UserControl</SubType>
69    </Compile>
70    <Compile Include="InputParameterView.Designer.cs">
71      <DependentUpon>InputParameterView.cs</DependentUpon>
72    </Compile>
73    <Compile Include="GoalParameterView.cs">
74      <SubType>UserControl</SubType>
75    </Compile>
76    <Compile Include="GoalParameterView.Designer.cs">
77      <DependentUpon>GoalParameterView.cs</DependentUpon>
78    </Compile>
79    <Compile Include="Plugin.cs" />
80    <Compile Include="Properties\AssemblyInfo.cs" />
81  </ItemGroup>
82  <ItemGroup>
83    <ProjectReference Include="..\..\HeuristicLab.GoalSeekingProblem\3.4\GoalSeekingProblem.csproj">
84      <Project>{79271bc8-4446-40e2-bb89-9be4e17174fe}</Project>
85      <Name>GoalSeekingProblem</Name>
86    </ProjectReference>
87  </ItemGroup>
88  <ItemGroup>
89    <None Include="Plugin.cs.frame" />
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <PropertyGroup>
93    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
94set ProjectDir=$(ProjectDir)
95set SolutionDir=$(SolutionDir)
96set Outdir=$(Outdir)
97
98call PreBuildEvent.cmd</PreBuildEvent>
99  </PropertyGroup>
100  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
101       Other similar extension points exist, see Microsoft.Common.targets.
102  <Target Name="BeforeBuild">
103  </Target>
104  <Target Name="AfterBuild">
105  </Target>
106  -->
107</Project>
Note: See TracBrowser for help on using the repository browser.