Free cookie consent management tool by TermsFeed Policy Generator

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

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

#1648 added data model and service interface for client management

File size: 4.1 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>{5C6595CF-436E-4C45-9B6C-FC3948A6E117}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>HeuristicLab.Services.ClientManagement.DataAccess</RootNamespace>
12    <AssemblyName>HeuristicLab.Services.ClientManagement.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="ClientManagement.designer.cs">
51      <AutoGen>True</AutoGen>
52      <DesignTime>True</DesignTime>
53      <DependentUpon>ClientManagement.dbml</DependentUpon>
54    </Compile>
55    <Compile Include="Properties\AssemblyInfo.cs" />
56    <None Include="Properties\AssemblyInfo.frame" />
57    <Compile Include="Properties\Settings.Designer.cs">
58      <AutoGen>True</AutoGen>
59      <DesignTimeSharedInput>True</DesignTimeSharedInput>
60      <DependentUpon>Settings.settings</DependentUpon>
61    </Compile>
62  </ItemGroup>
63  <ItemGroup>
64    <None Include="app.config" />
65    <None Include="ClientManagement.dbml">
66      <Generator>MSLinqToSQLGenerator</Generator>
67      <LastGenOutput>ClientManagement.designer.cs</LastGenOutput>
68      <SubType>Designer</SubType>
69    </None>
70    <None Include="HeuristicLab.snk" />
71    <None Include="Properties\Settings.settings">
72      <Generator>SettingsSingleFileGenerator</Generator>
73      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
74    </None>
75  </ItemGroup>
76  <ItemGroup>
77    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
78  </ItemGroup>
79  <ItemGroup>
80    <None Include="ClientManagement.dbml.layout">
81      <DependentUpon>ClientManagement.dbml</DependentUpon>
82    </None>
83  </ItemGroup>
84  <ItemGroup />
85  <ItemGroup>
86    <Content Include="SQL Scripts\Create ClientManagement.sql" />
87    <Content Include="SQL Scripts\Initialize ClientManagement.sql" />
88  </ItemGroup>
89  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
90  <PropertyGroup>
91    <PreBuildEvent>set Path=%25Path%25;$(ProjectDir);$(SolutionDir)
92set ProjectDir=$(ProjectDir)
93set SolutionDir=$(SolutionDir)
94set Outdir=$(Outdir)
95call PreBuildEvent.cmd</PreBuildEvent>
96  </PropertyGroup>
97  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
98       Other similar extension points exist, see Microsoft.Common.targets.
99  <Target Name="BeforeBuild">
100  </Target>
101  <Target Name="AfterBuild">
102  </Target>
103  -->
104</Project>
Note: See TracBrowser for help on using the repository browser.