Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Services.UserManagement/3.3/HeuristicLab.Services.UserManagement.csproj @ 6810

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

#1648

  • added a db layer for user management
  • added a user management clients project
  • worked on user management service
File size: 4.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.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{7FAF6FD7-F5C4-42AA-BA32-E89B563BDF60}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.UserManagement</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.UserManagement</AssemblyName>
13    <ProjectTypeGuids>{3D9AD99F-2412-4246-B90B-4EAA41C64699};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
14    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
15    <FileAlignment>512</FileAlignment>
16  </PropertyGroup>
17  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18    <DebugSymbols>true</DebugSymbols>
19    <DebugType>full</DebugType>
20    <Optimize>false</Optimize>
21    <OutputPath>bin\Debug\</OutputPath>
22    <DefineConstants>DEBUG;TRACE</DefineConstants>
23    <ErrorReport>prompt</ErrorReport>
24    <WarningLevel>4</WarningLevel>
25  </PropertyGroup>
26  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27    <DebugType>pdbonly</DebugType>
28    <Optimize>true</Optimize>
29    <OutputPath>bin\Release\</OutputPath>
30    <DefineConstants>TRACE</DefineConstants>
31    <ErrorReport>prompt</ErrorReport>
32    <WarningLevel>4</WarningLevel>
33  </PropertyGroup>
34  <PropertyGroup>
35    <SignAssembly>true</SignAssembly>
36  </PropertyGroup>
37  <PropertyGroup>
38    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
39  </PropertyGroup>
40  <ItemGroup>
41    <Reference Include="System" />
42    <Reference Include="System.Core" />
43    <Reference Include="System.Runtime.Serialization" />
44    <Reference Include="System.ServiceModel" />
45    <Reference Include="System.Web" />
46    <Reference Include="System.Web.ApplicationServices" />
47    <Reference Include="System.Xml.Linq" />
48    <Reference Include="System.Data.DataSetExtensions" />
49    <Reference Include="Microsoft.CSharp" />
50    <Reference Include="System.Data" />
51    <Reference Include="System.Xml" />
52  </ItemGroup>
53  <ItemGroup>
54    <Compile Include="Convert.cs" />
55    <Compile Include="DataTransfer\Application.cs" />
56    <Compile Include="DataTransfer\Membership.cs" />
57    <Compile Include="UserManagementService.cs" />
58    <Compile Include="DataTransfer\Role.cs" />
59    <Compile Include="DataTransfer\User.cs" />
60    <Compile Include="DataTransfer\UserManagementItem.cs" />
61    <Compile Include="IUserManagementService.cs" />
62    <Compile Include="Properties\AssemblyInfo.cs" />
63    <None Include="app.config" />
64    <None Include="HeuristicLab.snk" />
65    <None Include="Properties\AssemblyInfo.frame" />
66  </ItemGroup>
67  <ItemGroup>
68    <ProjectReference Include="..\..\HeuristicLab.Services.UserManagement.DataAccess\3.3\HeuristicLab.Services.UserManagement.DataAccess.csproj">
69      <Project>{AB586CCE-F953-458F-9061-8E4B83FC90D6}</Project>
70      <Name>HeuristicLab.Services.UserManagement.DataAccess</Name>
71    </ProjectReference>
72  </ItemGroup>
73  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
74  <ProjectExtensions>
75    <VisualStudio>
76      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
77        <WcfProjectProperties>
78          <AutoStart>False</AutoStart>
79        </WcfProjectProperties>
80      </FlavorProperties>
81    </VisualStudio>
82  </ProjectExtensions>
83  <PropertyGroup>
84    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
85set ProjectDir=$(ProjectDir)
86set SolutionDir=$(SolutionDir)
87set Outdir=$(Outdir)
88call PreBuildEvent.cmd</PreBuildEvent>
89  </PropertyGroup>
90  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
91       Other similar extension points exist, see Microsoft.Common.targets.
92  <Target Name="BeforeBuild">
93  </Target>
94  <Target Name="AfterBuild">
95  </Target>
96  -->
97</Project>
Note: See TracBrowser for help on using the repository browser.