Free cookie consent management tool by TermsFeed Policy Generator

source: branches/GeneralizedQAP/HeuristicLab.Services.Hello/HeuristicLab.Services.Hello.csproj @ 6778

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

#1619

  • Added simple Hello service for test and demonstration reasons
File size: 4.3 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>{2C1C8598-D001-4414-BD0F-531FA259A82C}</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.Hello</RootNamespace>
14    <AssemblyName>HeuristicLab.Services.Hello</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.Web.DynamicData" />
37    <Reference Include="System.Web.Entity" />
38    <Reference Include="System.Web.ApplicationServices" />
39    <Reference Include="System" />
40    <Reference Include="System.Configuration" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Data" />
43    <Reference Include="System.Drawing" />
44    <Reference Include="System.EnterpriseServices" />
45    <Reference Include="System.Runtime.Serialization" />
46    <Reference Include="System.ServiceModel" />
47    <Reference Include="System.ServiceModel.Web" />
48    <Reference Include="System.Web" />
49    <Reference Include="System.Web.Extensions" />
50    <Reference Include="System.Web.Services" />
51    <Reference Include="System.Xml" />
52    <Reference Include="System.Xml.Linq" />
53  </ItemGroup>
54  <ItemGroup>
55    <Content Include="HelloService.svc" />
56    <Content Include="Web.config" />
57    <Content Include="Web.Debug.config">
58      <DependentUpon>Web.config</DependentUpon>
59    </Content>
60    <Content Include="Web.Release.config">
61      <DependentUpon>Web.config</DependentUpon>
62    </Content>
63  </ItemGroup>
64  <ItemGroup>
65    <Compile Include="HelloService.svc.cs">
66      <DependentUpon>HelloService.svc</DependentUpon>
67    </Compile>
68    <Compile Include="IHelloService.cs" />
69    <Compile Include="Properties\AssemblyInfo.cs" />
70  </ItemGroup>
71  <ItemGroup>
72    <Folder Include="App_Data\" />
73  </ItemGroup>
74  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
75  <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
76  <ProjectExtensions>
77    <VisualStudio>
78      <FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
79        <WebProjectProperties>
80          <UseIIS>False</UseIIS>
81          <AutoAssignPort>True</AutoAssignPort>
82          <DevelopmentServerPort>12595</DevelopmentServerPort>
83          <DevelopmentServerVPath>/</DevelopmentServerVPath>
84          <IISUrl>
85          </IISUrl>
86          <NTLMAuthentication>False</NTLMAuthentication>
87          <UseCustomServer>False</UseCustomServer>
88          <CustomServerUrl>
89          </CustomServerUrl>
90          <SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
91          <EnableWcfTestClientForSVCDefaultValue>True</EnableWcfTestClientForSVCDefaultValue>
92        </WebProjectProperties>
93      </FlavorProperties>
94    </VisualStudio>
95  </ProjectExtensions>
96  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
97       Other similar extension points exist, see Microsoft.Common.targets.
98  <Target Name="BeforeBuild">
99  </Target>
100  <Target Name="AfterBuild">
101  </Target>
102  -->
103</Project>
Note: See TracBrowser for help on using the repository browser.