Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Services.ProblemInstances/HeuristicLab.Services.ProblemInstances-3.3.csproj @ 6685

Last change on this file since 6685 was 6659, checked in by abeham, 13 years ago

#1619

  • experimented with a first locally working version
File size: 5.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>
7    </ProductVersion>
8    <SchemaVersion>2.0</SchemaVersion>
9    <ProjectGuid>{D4E9242F-DAA4-4A15-8DE7-91CECFFFD898}</ProjectGuid>
10    <ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
11    <OutputType>Library</OutputType>
12    <AppDesignerFolder>Properties</AppDesignerFolder>
13    <RootNamespace>HeuristicLab.Services.ProblemInstances</RootNamespace>
14    <AssemblyName>HeuristicLab.Services.ProblemInstances-3.3</AssemblyName>
15    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
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>
33  </PropertyGroup>
34  <ItemGroup>
35    <Reference Include="Microsoft.CSharp" />
36    <Reference Include="System.Data.Entity" />
37    <Reference Include="System.Security" />
38    <Reference Include="System.Web.DynamicData" />
39    <Reference Include="System.Web.Entity" />
40    <Reference Include="System.Web.ApplicationServices" />
41    <Reference Include="System" />
42    <Reference Include="System.Configuration" />
43    <Reference Include="System.Core" />
44    <Reference Include="System.Data" />
45    <Reference Include="System.Drawing" />
46    <Reference Include="System.EnterpriseServices" />
47    <Reference Include="System.Runtime.Serialization" />
48    <Reference Include="System.ServiceModel" />
49    <Reference Include="System.ServiceModel.Web" />
50    <Reference Include="System.Web" />
51    <Reference Include="System.Web.Extensions" />
52    <Reference Include="System.Web.Services" />
53    <Reference Include="System.Xml" />
54    <Reference Include="System.Xml.Linq" />
55  </ItemGroup>
56  <ItemGroup>
57    <Content Include="QAP\QAP.svc" />
58    <Content Include="Web.config" />
59    <Content Include="Web.Debug.config">
60      <DependentUpon>Web.config</DependentUpon>
61    </Content>
62    <Content Include="Web.Release.config">
63      <DependentUpon>Web.config</DependentUpon>
64    </Content>
65  </ItemGroup>
66  <ItemGroup>
67    <EntityDeploy Include="ProblemInstancesModel.edmx">
68      <Generator>EntityModelCodeGenerator</Generator>
69      <LastGenOutput>ProblemInstancesModel.Designer.cs</LastGenOutput>
70    </EntityDeploy>
71    <None Include="Properties\AssemblyInfo.frame" />
72    <Compile Include="PrimitiveSerializationException.cs" />
73    <Compile Include="PrimitiveSerializer.cs" />
74    <Compile Include="ProblemInstancesModel.Designer.cs">
75      <AutoGen>True</AutoGen>
76      <DesignTime>True</DesignTime>
77      <DependentUpon>ProblemInstancesModel.edmx</DependentUpon>
78    </Compile>
79    <Compile Include="QAP\IQAP.cs" />
80    <Compile Include="QAP\QAP.svc.cs">
81      <DependentUpon>QAP.svc</DependentUpon>
82    </Compile>
83    <Compile Include="Properties\AssemblyInfo.cs" />
84    <Compile Include="QAP\QAPInstanceDto.cs" />
85    <Compile Include="QAP\QAPSolutionDto.cs" />
86  </ItemGroup>
87  <ItemGroup>
88    <Folder Include="App_Data\" />
89  </ItemGroup>
90  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
91  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
92  <ProjectExtensions>
93    <VisualStudio>
94      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
95        <WebProjectProperties>
96          <UseIIS>False</UseIIS>
97          <AutoAssignPort>True</AutoAssignPort>
98          <DevelopmentServerPort>3978</DevelopmentServerPort>
99          <DevelopmentServerVPath>/</DevelopmentServerVPath>
100          <IISUrl>
101          </IISUrl>
102          <NTLMAuthentication>False</NTLMAuthentication>
103          <UseCustomServer>False</UseCustomServer>
104          <CustomServerUrl>
105          </CustomServerUrl>
106          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
107          <EnableWcfTestClientForSVCDefaultValue>True</EnableWcfTestClientForSVCDefaultValue>
108        </WebProjectProperties>
109      </FlavorProperties>
110    </VisualStudio>
111  </ProjectExtensions>
112  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
113       Other similar extension points exist, see Microsoft.Common.targets.
114  <Target Name="BeforeBuild">
115  </Target>
116  <Target Name="AfterBuild">
117  </Target>
118  -->
119</Project>
Note: See TracBrowser for help on using the repository browser.