Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 7619 was 7619, checked in by ascheibe, 12 years ago

#1648

  • added service description file
  • renamed database to correct name
  • fixed sql scripts for creating the db
File size: 5.6 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>..\..\ServerBinaries\</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>..\..\ServerBinaries\</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="AccessServiceLocator.cs" />
57    <Compile Include="AccessServiceRoles.cs" />
58    <Compile Include="Convert.cs" />
59    <Compile Include="DataTransfer\Client.cs" />
60    <Compile Include="DataTransfer\ClientConfiguration.cs" />
61    <Compile Include="DataTransfer\ClientError.cs" />
62    <Compile Include="DataTransfer\ClientGroupMapping.cs" />
63    <Compile Include="DataTransfer\ClientLog.cs" />
64    <Compile Include="DataTransfer\AccessItem.cs" />
65    <Compile Include="DataTransfer\ClientGroup.cs" />
66    <Compile Include="DataTransfer\ClientType.cs" />
67    <Compile Include="DataTransfer\Country.cs" />
68    <Compile Include="DataTransfer\LightweightUser.cs" />
69    <Compile Include="DataTransfer\OperatingSystem.cs" />
70    <Compile Include="DataTransfer\Plugin.cs" />
71    <Compile Include="DataTransfer\Resource.cs" />
72    <Compile Include="DataTransfer\Role.cs" />
73    <Compile Include="DataTransfer\User.cs" />
74    <Compile Include="DataTransfer\UserGroup.cs" />
75    <Compile Include="DataTransfer\UserGroupBase.cs" />
76    <Compile Include="DataTransfer\UserGroupMapping.cs" />
77    <Compile Include="IAccessService.cs" />
78    <Compile Include="Interfaces\IAccessServiceLocator.cs" />
79    <Compile Include="Interfaces\IRoleVerifier.cs" />
80    <Compile Include="Interfaces\IUserManager.cs" />
81    <Compile Include="Properties\AssemblyInfo.cs" />
82    <Compile Include="AccessService.cs" />
83    <Compile Include="RoleVerifier.cs" />
84    <Compile Include="UserManager.cs" />
85  </ItemGroup>
86  <ItemGroup>
87    <None Include="App.config" />
88    <None Include="HeuristicLab.snk" />
89    <None Include="Properties\AssemblyInfo.cs.frame" />
90  </ItemGroup>
91  <ItemGroup>
92    <ProjectReference Include="..\..\HeuristicLab.GeoIP\1.12\HeuristicLab.GeoIP.csproj">
93      <Project>{BE9B0229-9150-49A4-AEA6-BB58E055992F}</Project>
94      <Name>HeuristicLab.GeoIP</Name>
95      <Private>False</Private>
96    </ProjectReference>
97    <ProjectReference Include="..\..\HeuristicLab.Services.Access.DataAccess\3.3\HeuristicLab.Services.Access.DataAccess-3.3.csproj">
98      <Project>{0F652437-998A-4EAB-8BF1-444B5FE8CE97}</Project>
99      <Name>HeuristicLab.Services.Access.DataAccess-3.3</Name>
100      <Private>False</Private>
101    </ProjectReference>
102  </ItemGroup>
103  <ItemGroup>
104    <Content Include="AccessService.svc" />
105  </ItemGroup>
106  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
107  <ProjectExtensions>
108    <VisualStudio>
109      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
110        <WcfProjectProperties>
111          <AutoStart>True</AutoStart>
112        </WcfProjectProperties>
113      </FlavorProperties>
114    </VisualStudio>
115  </ProjectExtensions>
116  <PropertyGroup>
117    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
118set ProjectDir=$(ProjectDir)
119set SolutionDir=$(SolutionDir)
120set Outdir=$(Outdir)
121call PreBuildEvent.cmd</PreBuildEvent>
122  </PropertyGroup>
123  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
124       Other similar extension points exist, see Microsoft.Common.targets.
125  <Target Name="BeforeBuild">
126  </Target>
127  <Target Name="AfterBuild">
128  </Target>
129  -->
130</Project>
Note: See TracBrowser for help on using the repository browser.