Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Services.UserManagement.DataAccess/3.3/HeuristicLab.Services.UserManagement.DataAccess.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: 3.9 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>{AB586CCE-F953-458F-9061-8E4B83FC90D6}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.UserManagement.DataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.UserManagement.DataAccess</AssemblyName>
13    <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14    <FileAlignment>512</FileAlignment>
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  <PropertyGroup>
34    <SignAssembly>true</SignAssembly>
35  </PropertyGroup>
36  <PropertyGroup>
37    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
38  </PropertyGroup>
39  <ItemGroup>
40    <Reference Include="System" />
41    <Reference Include="System.Core" />
42    <Reference Include="System.Data.Linq" />
43    <Reference Include="System.Xml.Linq" />
44    <Reference Include="System.Data.DataSetExtensions" />
45    <Reference Include="Microsoft.CSharp" />
46    <Reference Include="System.Data" />
47    <Reference Include="System.Xml" />
48  </ItemGroup>
49  <ItemGroup>
50    <Compile Include="Properties\AssemblyInfo.cs" />
51    <Compile Include="Properties\Settings.Designer.cs">
52      <AutoGen>True</AutoGen>
53      <DesignTimeSharedInput>True</DesignTimeSharedInput>
54      <DependentUpon>Settings.settings</DependentUpon>
55    </Compile>
56    <Compile Include="UserManagement.designer.cs">
57      <AutoGen>True</AutoGen>
58      <DesignTime>True</DesignTime>
59      <DependentUpon>UserManagement.dbml</DependentUpon>
60    </Compile>
61    <None Include="app.config" />
62    <None Include="HeuristicLab.snk" />
63    <None Include="Properties\AssemblyInfo.frame" />
64    <None Include="Properties\Settings.settings">
65      <Generator>SettingsSingleFileGenerator</Generator>
66      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
67    </None>
68    <None Include="UserManagement.dbml">
69      <Generator>MSLinqToSQLGenerator</Generator>
70      <LastGenOutput>UserManagement.designer.cs</LastGenOutput>
71      <SubType>Designer</SubType>
72    </None>
73  </ItemGroup>
74  <ItemGroup>
75    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
76  </ItemGroup>
77  <ItemGroup>
78    <None Include="UserManagement.dbml.layout">
79      <DependentUpon>UserManagement.dbml</DependentUpon>
80    </None>
81  </ItemGroup>
82  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
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.