Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Services.Deployment/3.3/HeuristicLab.Services.Deployment.csproj @ 3072

Last change on this file since 3072 was 3072, checked in by gkronber, 14 years ago

Copied projects related to the deployment service from the feature branch. #918 (Integrate deployment service into trunk and HL3.3 solution file)

File size: 4.4 KB
Line 
1<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{30D8C5F1-CD3A-4EC1-907F-430177A03FBE}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>HeuristicLab.Services.Deployment</RootNamespace>
11    <AssemblyName>HeuristicLab.Services.Deployment</AssemblyName>
12    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
13    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
14    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
15  </PropertyGroup>
16  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17    <DebugSymbols>true</DebugSymbols>
18    <DebugType>full</DebugType>
19    <Optimize>false</Optimize>
20    <OutputPath>bin\Debug\</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>bin\Release\</OutputPath>
29    <DefineConstants>TRACE</DefineConstants>
30    <ErrorReport>prompt</ErrorReport>
31    <WarningLevel>4</WarningLevel>
32  </PropertyGroup>
33  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core">
36      <RequiredTargetFramework>3.5</RequiredTargetFramework>
37    </Reference>
38    <Reference Include="System.Data" />
39    <Reference Include="System.Data.Linq">
40      <RequiredTargetFramework>3.5</RequiredTargetFramework>
41    </Reference>
42    <Reference Include="System.Runtime.Serialization">
43      <RequiredTargetFramework>3.0</RequiredTargetFramework>
44    </Reference>
45    <Reference Include="System.ServiceModel">
46      <RequiredTargetFramework>3.0</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Transactions" />
49    <Reference Include="System.Xml" />
50    <Reference Include="System.Xml.Linq">
51      <RequiredTargetFramework>3.5</RequiredTargetFramework>
52    </Reference>
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="Admin.cs" />
56    <Compile Include="IAdmin.cs" />
57    <Compile Include="IUpdate.cs" />
58    <Compile Include="PluginDescription.cs" />
59    <Compile Include="PluginStore.cs" />
60    <Compile Include="ProductDescription.cs" />
61    <Compile Include="Properties\AssemblyInfo.cs" />
62    <Compile Include="Properties\Settings.Designer.cs">
63      <AutoGen>True</AutoGen>
64      <DesignTimeSharedInput>True</DesignTimeSharedInput>
65      <DependentUpon>Settings.settings</DependentUpon>
66    </Compile>
67    <Compile Include="Update.cs" />
68  </ItemGroup>
69  <ItemGroup>
70    <None Include="App.config" />
71  </ItemGroup>
72  <ItemGroup>
73    <WCFMetadata Include="Service References\" />
74  </ItemGroup>
75  <ItemGroup>
76    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
77  </ItemGroup>
78  <ItemGroup>
79    <None Include="Properties\Settings.settings">
80      <Generator>SettingsSingleFileGenerator</Generator>
81      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
82    </None>
83  </ItemGroup>
84  <ItemGroup>
85    <ProjectReference Include="..\HeuristicLab.Services.Deployment.DataAccess\HeuristicLab.Services.Deployment.DataAccess.csproj">
86      <Project>{EBEBA863-DD05-4331-BE25-5758B15F7407}</Project>
87      <Name>HeuristicLab.Services.Deployment.DataAccess</Name>
88    </ProjectReference>
89  </ItemGroup>
90  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
91  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
92       Other similar extension points exist, see Microsoft.Common.targets.
93  <Target Name="BeforeBuild">
94  </Target>
95  <Target Name="AfterBuild">
96  </Target>
97  -->
98  <ProjectExtensions>
99    <VisualStudio>
100      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
101        <WcfProjectProperties>
102          <AutoStart>True</AutoStart>
103        </WcfProjectProperties>
104      </FlavorProperties>
105    </VisualStudio>
106  </ProjectExtensions>
107</Project>
Note: See TracBrowser for help on using the repository browser.