Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DeploymentServer Prototype/HeuristicLab.Services/HeuristicLab.Services.Deployment/HeuristicLab.Services.Deployment.csproj @ 2742

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

Worked on prototype of plugin deployment service. #860 (Deployment server for plugin installation from web locations)

File size: 4.2 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.Xml" />
49    <Reference Include="System.Xml.Linq">
50      <RequiredTargetFramework>3.5</RequiredTargetFramework>
51    </Reference>
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="Admin.cs" />
55    <Compile Include="IAdmin.cs" />
56    <Compile Include="IUpdate.cs" />
57    <Compile Include="Properties\AssemblyInfo.cs" />
58    <Compile Include="Properties\Settings.Designer.cs">
59      <AutoGen>True</AutoGen>
60      <DesignTimeSharedInput>True</DesignTimeSharedInput>
61      <DependentUpon>Settings.settings</DependentUpon>
62    </Compile>
63    <Compile Include="Update.cs" />
64  </ItemGroup>
65  <ItemGroup>
66    <None Include="App.config" />
67  </ItemGroup>
68  <ItemGroup>
69    <WCFMetadata Include="Service References\" />
70  </ItemGroup>
71  <ItemGroup>
72    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
73  </ItemGroup>
74  <ItemGroup>
75    <None Include="Properties\Settings.settings">
76      <Generator>SettingsSingleFileGenerator</Generator>
77      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
78    </None>
79  </ItemGroup>
80  <ItemGroup>
81    <ProjectReference Include="..\HeuristicLab.Services.Deployment.DataAccess\HeuristicLab.Services.Deployment.DataAccess.csproj">
82      <Project>{EBEBA863-DD05-4331-BE25-5758B15F7407}</Project>
83      <Name>HeuristicLab.Services.Deployment.DataAccess</Name>
84    </ProjectReference>
85  </ItemGroup>
86  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
87  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
88       Other similar extension points exist, see Microsoft.Common.targets.
89  <Target Name="BeforeBuild">
90  </Target>
91  <Target Name="AfterBuild">
92  </Target>
93  -->
94  <ProjectExtensions>
95    <VisualStudio>
96      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
97        <WcfProjectProperties>
98          <AutoStart>True</AutoStart>
99        </WcfProjectProperties>
100      </FlavorProperties>
101    </VisualStudio>
102  </ProjectExtensions>
103</Project>
Note: See TracBrowser for help on using the repository browser.