Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Services.Access/3.3/HeuristicLab.Services.Access-3.3.csproj @ 6843

Last change on this file since 6843 was 6840, checked in by ascheibe, 13 years ago

#1648 started implementing the web service

File size: 4.7 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>8.0.50727</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{9FAC0B23-2730-452A-9BA0-D7CA1746C541}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Access</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Access</AssemblyName>
13    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14    <StartArguments>/client:"WcfTestClient.exe"</StartArguments>
15    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
16    <TargetFrameworkProfile>
17    </TargetFrameworkProfile>
18  </PropertyGroup>
19  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <PropertyGroup>
37    <SignAssembly>true</SignAssembly>
38  </PropertyGroup>
39  <PropertyGroup>
40    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
41  </PropertyGroup>
42  <ItemGroup>
43    <Reference Include="Microsoft.CSharp" />
44    <Reference Include="System" />
45    <Reference Include="System.Core" />
46    <Reference Include="System.Data" />
47    <Reference Include="System.Data.Linq" />
48    <Reference Include="System.Runtime.Serialization" />
49    <Reference Include="System.ServiceModel" />
50    <Reference Include="System.Xml" />
51    <Reference Include="System.Xml.Linq" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="Convert.cs" />
55    <Compile Include="DataTransfer\Client.cs" />
56    <Compile Include="DataTransfer\ClientConfiguration.cs" />
57    <Compile Include="DataTransfer\ClientError.cs" />
58    <Compile Include="DataTransfer\ClientGroupMapping.cs" />
59    <Compile Include="DataTransfer\ClientLog.cs" />
60    <Compile Include="DataTransfer\AccessItem.cs" />
61    <Compile Include="DataTransfer\ClientGroup.cs" />
62    <Compile Include="DataTransfer\ClientType.cs" />
63    <Compile Include="DataTransfer\Country.cs" />
64    <Compile Include="DataTransfer\OperatingSystem.cs" />
65    <Compile Include="DataTransfer\Plugin.cs" />
66    <Compile Include="DataTransfer\Resource.cs" />
67    <Compile Include="DataTransfer\Role.cs" />
68    <Compile Include="DataTransfer\User.cs" />
69    <Compile Include="DataTransfer\UserGroup.cs" />
70    <Compile Include="DataTransfer\UserGroupBase.cs" />
71    <Compile Include="DataTransfer\UserGroupMapping.cs" />
72    <Compile Include="IAccessService.cs" />
73    <Compile Include="Properties\AssemblyInfo.cs" />
74    <Compile Include="AccessService.cs" />
75  </ItemGroup>
76  <ItemGroup>
77    <None Include="App.config" />
78    <None Include="HeuristicLab.snk" />
79    <None Include="Properties\AssemblyInfo.frame" />
80  </ItemGroup>
81  <ItemGroup>
82    <ProjectReference Include="..\..\HeuristicLab.Services.Access.DataAccess\3.3\HeuristicLab.Services.Access.DataAccess-3.3.csproj">
83      <Project>{0F652437-998A-4EAB-8BF1-444B5FE8CE97}</Project>
84      <Name>HeuristicLab.Services.Access.DataAccess-3.3</Name>
85    </ProjectReference>
86  </ItemGroup>
87  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
88  <ProjectExtensions>
89    <VisualStudio>
90      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
91        <WcfProjectProperties>
92          <AutoStart>True</AutoStart>
93        </WcfProjectProperties>
94      </FlavorProperties>
95    </VisualStudio>
96  </ProjectExtensions>
97  <PropertyGroup>
98    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
99set ProjectDir=$(ProjectDir)
100set SolutionDir=$(SolutionDir)
101set Outdir=$(Outdir)
102call PreBuildEvent.cmd</PreBuildEvent>
103  </PropertyGroup>
104  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
105       Other similar extension points exist, see Microsoft.Common.targets.
106  <Target Name="BeforeBuild">
107  </Target>
108  <Target Name="AfterBuild">
109  </Target>
110  -->
111</Project>
Note: See TracBrowser for help on using the repository browser.