Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Services.ClientManagement/3.3/HeuristicLab.Services.ClientManagement.csproj @ 6800

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

#1648 started working on user management service

File size: 3.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.30703</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{63D4C87A-030B-4578-8E9E-DAE6F3E39C90}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.ClientManagement</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.ClientManagement</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.Runtime.Serialization" />
43    <Reference Include="System.ServiceModel" />
44    <Reference Include="System.Xml.Linq" />
45    <Reference Include="System.Data.DataSetExtensions" />
46    <Reference Include="Microsoft.CSharp" />
47    <Reference Include="System.Data" />
48    <Reference Include="System.Xml" />
49  </ItemGroup>
50  <ItemGroup>
51    <Compile Include="Convert.cs" />
52    <Compile Include="ClientManagementService.cs" />
53    <Compile Include="DataTransfer\Client.cs" />
54    <Compile Include="DataTransfer\ClientLog.cs" />
55    <Compile Include="DataTransfer\ClientManagementItem.cs" />
56    <Compile Include="DataTransfer\Group.cs" />
57    <Compile Include="DataTransfer\Resource.cs" />
58    <Compile Include="IClientManagementService.cs" />
59    <Compile Include="Properties\AssemblyInfo.cs" />
60  </ItemGroup>
61  <ItemGroup>
62    <None Include="HeuristicLab.snk" />
63    <None Include="Properties\AssemblyInfo.frame" />
64  </ItemGroup>
65  <ItemGroup>
66    <ProjectReference Include="..\..\HeuristicLab.Services.ClientManagement.DataAccess\3.3\HeuristicLab.Services.ClientManagement.DataAccess.csproj">
67      <Project>{5C6595CF-436E-4C45-9B6C-FC3948A6E117}</Project>
68      <Name>HeuristicLab.Services.ClientManagement.DataAccess</Name>
69    </ProjectReference>
70  </ItemGroup>
71  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
72  <PropertyGroup>
73    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
74set ProjectDir=$(ProjectDir)
75set SolutionDir=$(SolutionDir)
76set Outdir=$(Outdir)
77call PreBuildEvent.cmd</PreBuildEvent>
78  </PropertyGroup>
79  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
80       Other similar extension points exist, see Microsoft.Common.targets.
81  <Target Name="BeforeBuild">
82  </Target>
83  <Target Name="AfterBuild">
84  </Target>
85  -->
86</Project>
Note: See TracBrowser for help on using the repository browser.