Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ClientUserManagement/HeuristicLab.Services.Access/3.3/HeuristicLab.Services.Access-3.3.csproj @ 6821

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

#1648 some cosmetic fixes

File size: 4.2 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>{9FAC0B23-2730-452A-9BA0-D7CA1746C541}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.Access</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.Access</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>
17    </TargetFrameworkProfile>
18  </PropertyGroup>
19  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
20    <DebugSymbols>true</DebugSymbols>
21    <DebugType>full</DebugType>
22    <Optimize>false</Optimize>
23    <OutputPath>bin\Debug\</OutputPath>
24    <DefineConstants>DEBUG;TRACE</DefineConstants>
25    <ErrorReport>prompt</ErrorReport>
26    <WarningLevel>4</WarningLevel>
27  </PropertyGroup>
28  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
29    <DebugType>pdbonly</DebugType>
30    <Optimize>true</Optimize>
31    <OutputPath>bin\Release\</OutputPath>
32    <DefineConstants>TRACE</DefineConstants>
33    <ErrorReport>prompt</ErrorReport>
34    <WarningLevel>4</WarningLevel>
35  </PropertyGroup>
36  <PropertyGroup>
37    <SignAssembly>true</SignAssembly>
38  </PropertyGroup>
39  <PropertyGroup>
40    <AssemblyOriginatorKeyFile>HeuristicLab.snk</AssemblyOriginatorKeyFile>
41  </PropertyGroup>
42  <ItemGroup>
43    <Reference Include="Microsoft.CSharp" />
44    <Reference Include="System" />
45    <Reference Include="System.Core" />
46    <Reference Include="System.Data" />
47    <Reference Include="System.Runtime.Serialization" />
48    <Reference Include="System.ServiceModel" />
49    <Reference Include="System.Xml" />
50    <Reference Include="System.Xml.Linq" />
51  </ItemGroup>
52  <ItemGroup>
53    <Compile Include="Convert.cs" />
54    <Compile Include="DataTransfer\Client.cs" />
55    <Compile Include="DataTransfer\ClientLog.cs" />
56    <Compile Include="DataTransfer\AccessItem.cs" />
57    <Compile Include="DataTransfer\ClientGroup.cs" />
58    <Compile Include="DataTransfer\Resource.cs" />
59    <Compile Include="DataTransfer\Role.cs" />
60    <Compile Include="DataTransfer\User.cs" />
61    <Compile Include="DataTransfer\UserGroup.cs" />
62    <Compile Include="IAccessService.cs" />
63    <Compile Include="Properties\AssemblyInfo.cs" />
64    <Compile Include="AccessService.cs" />
65  </ItemGroup>
66  <ItemGroup>
67    <None Include="App.config" />
68    <None Include="HeuristicLab.snk" />
69    <None Include="Properties\AssemblyInfo.frame" />
70  </ItemGroup>
71  <ItemGroup>
72    <ProjectReference Include="..\..\HeuristicLab.Services.Access.DataAccess\3.3\HeuristicLab.Services.Access.DataAccess-3.3.csproj">
73      <Project>{0F652437-998A-4EAB-8BF1-444B5FE8CE97}</Project>
74      <Name>HeuristicLab.Services.Access.DataAccess-3.3</Name>
75    </ProjectReference>
76  </ItemGroup>
77  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
78  <ProjectExtensions>
79    <VisualStudio>
80      <FlavorProperties GUID="{3D9AD99F-2412-4246-B90B-4EAA41C64699}">
81        <WcfProjectProperties>
82          <AutoStart>True</AutoStart>
83        </WcfProjectProperties>
84      </FlavorProperties>
85    </VisualStudio>
86  </ProjectExtensions>
87  <PropertyGroup>
88    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
89set ProjectDir=$(ProjectDir)
90set SolutionDir=$(SolutionDir)
91set Outdir=$(Outdir)
92call PreBuildEvent.cmd</PreBuildEvent>
93  </PropertyGroup>
94  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
95       Other similar extension points exist, see Microsoft.Common.targets.
96  <Target Name="BeforeBuild">
97  </Target>
98  <Target Name="AfterBuild">
99  </Target>
100  -->
101</Project>
Note: See TracBrowser for help on using the repository browser.