Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1196

File size: 3.8 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="Interfaces\IAuthenticationService.cs" />
49    <Compile Include="Properties\AssemblyInfo.cs" />
50    <Compile Include="AuthenticationService.cs" />
51  </ItemGroup>
52  <ItemGroup>
53    <None Include="App.config">
54      <SubType>Designer</SubType>
55    </None>
56    <None Include="HeuristicLab.snk" />
57  </ItemGroup>
58  <ItemGroup>
59    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataAccess\HeuristicLab.Services.Authentication.DataAccess.csproj">
60      <Project>{8700A834-561F-44F0-86B4-F220245A6BC8}</Project>
61      <Name>HeuristicLab.Services.Authentication.DataAccess</Name>
62    </ProjectReference>
63    <ProjectReference Include="..\HeuristicLab.Services.Authentication.DataTransfer\HeuristicLab.Services.Authentication.DataTransfer.csproj">
64      <Project>{AC44BDF4-AED7-4445-9A99-57B3237DBE88}</Project>
65      <Name>HeuristicLab.Services.Authentication.DataTransfer</Name>
66    </ProjectReference>
67  </ItemGroup>
68  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
69  <ProjectExtensions>
70    <VisualStudio>
71      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
72        <WcfProjectProperties>
73          <AutoStart>True</AutoStart>
74        </WcfProjectProperties>
75      </FlavorProperties>
76    </VisualStudio>
77  </ProjectExtensions>
78  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
79       Other similar extension points exist, see Microsoft.Common.targets.
80  <Target Name="BeforeBuild">
81  </Target>
82  <Target Name="AfterBuild">
83  </Target>
84  -->
85</Project>
Note: See TracBrowser for help on using the repository browser.