Free cookie consent management tool by TermsFeed Policy Generator

source: branches/UserManagement/HeuristicLab.Services.Authentication/HeuristicLab.Services.Authentication.csproj @ 4926

Last change on this file since 4926 was 4926, checked in by mjesner, 13 years ago

#1196

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.50727</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{0E7ADDD6-C7EA-45F6-A7ED-48041ABF1A87}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Authentication</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Authentication</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>Client</TargetFrameworkProfile>
17  </PropertyGroup>
18  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
19    <DebugSymbols>true</DebugSymbols>
20    <DebugType>full</DebugType>
21    <Optimize>false</Optimize>
22    <OutputPath>bin\Debug\</OutputPath>
23    <DefineConstants>DEBUG;TRACE</DefineConstants>
24    <ErrorReport>prompt</ErrorReport>
25    <WarningLevel>4</WarningLevel>
26  </PropertyGroup>
27  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28    <DebugType>pdbonly</DebugType>
29    <Optimize>true</Optimize>
30    <OutputPath>bin\Release\</OutputPath>
31    <DefineConstants>TRACE</DefineConstants>
32    <ErrorReport>prompt</ErrorReport>
33    <WarningLevel>4</WarningLevel>
34  </PropertyGroup>
35  <ItemGroup>
36    <Reference Include="Microsoft.CSharp" />
37    <Reference Include="System" />
38    <Reference Include="System.Core" />
39    <Reference Include="System.Data" />
40    <Reference Include="System.Data.Linq" />
41    <Reference Include="System.Runtime.Serialization" />
42    <Reference Include="System.ServiceModel" />
43    <Reference Include="System.Xml" />
44    <Reference Include="System.Xml.Linq" />
45  </ItemGroup>
46  <ItemGroup>
47    <Compile Include="Convert.cs" />
48    <Compile Include="Interface\IAuthenticationService.cs" />
49    <Compile Include="Properties\AssemblyInfo.cs" />
50    <Compile Include="AuthenticationService.cs" />
51  </ItemGroup>
52  <ItemGroup>
53    <None Include="App.config" />
54    <None Include="HeuristicLab.snk" />
55  </ItemGroup>
56  <ItemGroup>
57    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataAccess\HeuristicLab.Services.Authentication.DataAccess.csproj">
58      <Project>{8700A834-561F-44F0-86B4-F220245A6BC8}</Project>
59      <Name>HeuristicLab.Services.Authentication.DataAccess</Name>
60    </ProjectReference>
61    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataTransfer\HeuristicLab.Services.Authentication.DataTransfer.csproj">
62      <Project>{AC44BDF4-AED7-4445-9A99-57B3237DBE88}</Project>
63      <Name>HeuristicLab.Services.Authentication.DataTransfer</Name>
64    </ProjectReference>
65  </ItemGroup>
66  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
67  <ProjectExtensions>
68    <VisualStudio>
69      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
70        <WcfProjectProperties>
71          <AutoStart>True</AutoStart>
72        </WcfProjectProperties>
73      </FlavorProperties>
74    </VisualStudio>
75  </ProjectExtensions>
76  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
77       Other similar extension points exist, see Microsoft.Common.targets.
78  <Target Name="BeforeBuild">
79  </Target>
80  <Target Name="AfterBuild">
81  </Target>
82  -->
83</Project>
Note: See TracBrowser for help on using the repository browser.