Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1648 added GeoIP support to access webservice

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>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.Web" />
51    <Reference Include="System.Web.ApplicationServices" />
52    <Reference Include="System.Xml" />
53    <Reference Include="System.Xml.Linq" />
54  </ItemGroup>
55  <ItemGroup>
56    <Compile Include="Convert.cs" />
57    <Compile Include="DataTransfer\Client.cs" />
58    <Compile Include="DataTransfer\ClientConfiguration.cs" />
59    <Compile Include="DataTransfer\ClientError.cs" />
60    <Compile Include="DataTransfer\ClientGroupMapping.cs" />
61    <Compile Include="DataTransfer\ClientLog.cs" />
62    <Compile Include="DataTransfer\AccessItem.cs" />
63    <Compile Include="DataTransfer\ClientGroup.cs" />
64    <Compile Include="DataTransfer\ClientType.cs" />
65    <Compile Include="DataTransfer\Country.cs" />
66    <Compile Include="DataTransfer\OperatingSystem.cs" />
67    <Compile Include="DataTransfer\Plugin.cs" />
68    <Compile Include="DataTransfer\Resource.cs" />
69    <Compile Include="DataTransfer\Role.cs" />
70    <Compile Include="DataTransfer\User.cs" />
71    <Compile Include="DataTransfer\UserGroup.cs" />
72    <Compile Include="DataTransfer\UserGroupBase.cs" />
73    <Compile Include="DataTransfer\UserGroupMapping.cs" />
74    <Compile Include="IAccessService.cs" />
75    <Compile Include="Interfaces\IUserManager.cs" />
76    <Compile Include="Properties\AssemblyInfo.cs" />
77    <Compile Include="AccessService.cs" />
78    <Compile Include="UserManager.cs" />
79  </ItemGroup>
80  <ItemGroup>
81    <None Include="App.config" />
82    <None Include="HeuristicLab.snk" />
83    <None Include="Properties\AssemblyInfo.frame" />
84  </ItemGroup>
85  <ItemGroup>
86    <ProjectReference Include="..\..\HeuristicLab.GeoIP\1.12\HeuristicLab.GeoIP.csproj">
87      <Project>{BE9B0229-9150-49A4-AEA6-BB58E055992F}</Project>
88      <Name>HeuristicLab.GeoIP</Name>
89    </ProjectReference>
90    <ProjectReference Include="..\..\HeuristicLab.Services.Access.DataAccess\3.3\HeuristicLab.Services.Access.DataAccess-3.3.csproj">
91      <Project>{0F652437-998A-4EAB-8BF1-444B5FE8CE97}</Project>
92      <Name>HeuristicLab.Services.Access.DataAccess-3.3</Name>
93    </ProjectReference>
94  </ItemGroup>
95  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
96  <ProjectExtensions>
97    <VisualStudio>
98      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
99        <WcfProjectProperties>
100          <AutoStart>True</AutoStart>
101        </WcfProjectProperties>
102      </FlavorProperties>
103    </VisualStudio>
104  </ProjectExtensions>
105  <PropertyGroup>
106    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
107set ProjectDir=$(ProjectDir)
108set SolutionDir=$(SolutionDir)
109set Outdir=$(Outdir)
110call PreBuildEvent.cmd</PreBuildEvent>
111  </PropertyGroup>
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.