Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/Persistence/Persistence.csproj @ 4005

Last change on this file since 4005 was 4002, checked in by bfarka, 14 years ago

made struture changes in persistence classes and provider

File size: 4.0 KB
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<Project ToolsVersion="3.5" 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>9.0.30729</ProductVersion>
7    <SchemaVersion>2.0</SchemaVersion>
8    <ProjectGuid>{0B9535EE-DB1E-4174-B6C3-692DE1D8D841}</ProjectGuid>
9    <OutputType>Library</OutputType>
10    <AppDesignerFolder>Properties</AppDesignerFolder>
11    <RootNamespace>Persistence</RootNamespace>
12    <AssemblyName>Persistence</AssemblyName>
13    <TargetFrameworkVersion>v3.5</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  <ItemGroup>
34    <Reference Include="System" />
35    <Reference Include="System.Core">
36      <RequiredTargetFramework>3.5</RequiredTargetFramework>
37    </Reference>
38    <Reference Include="System.Data.Linq">
39      <RequiredTargetFramework>3.5</RequiredTargetFramework>
40    </Reference>
41    <Reference Include="System.Runtime.Serialization">
42      <RequiredTargetFramework>3.0</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Web" />
45    <Reference Include="System.Xml.Linq">
46      <RequiredTargetFramework>3.5</RequiredTargetFramework>
47    </Reference>
48    <Reference Include="System.Data.DataSetExtensions">
49      <RequiredTargetFramework>3.5</RequiredTargetFramework>
50    </Reference>
51    <Reference Include="System.Data" />
52    <Reference Include="System.Xml" />
53  </ItemGroup>
54  <ItemGroup>
55    <Compile Include="HeuristicLabMembershipUser.cs" />
56    <Compile Include="HeuristicLabUserRole.cs" />
57    <Compile Include="DatabaseUtil.cs" />
58    <Compile Include="DataClasses.designer.cs">
59      <AutoGen>True</AutoGen>
60      <DesignTime>True</DesignTime>
61      <DependentUpon>DataClasses.dbml</DependentUpon>
62    </Compile>
63    <Compile Include="HeuristicLabUser.cs" />
64    <Compile Include="Properties\AssemblyInfo.cs" />
65    <Compile Include="Properties\Settings.Designer.cs">
66      <AutoGen>True</AutoGen>
67      <DesignTimeSharedInput>True</DesignTimeSharedInput>
68      <DependentUpon>Settings.settings</DependentUpon>
69    </Compile>
70  </ItemGroup>
71  <ItemGroup>
72    <Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" />
73  </ItemGroup>
74  <ItemGroup>
75    <None Include="DataClasses.dbml">
76      <Generator>MSLinqToSQLGenerator</Generator>
77      <SubType>Designer</SubType>
78      <LastGenOutput>DataClasses.designer.cs</LastGenOutput>
79    </None>
80  </ItemGroup>
81  <ItemGroup>
82    <None Include="app.config" />
83    <None Include="DataClasses.dbml.layout">
84      <DependentUpon>DataClasses.dbml</DependentUpon>
85    </None>
86    <None Include="Properties\Settings.settings">
87      <Generator>SettingsSingleFileGenerator</Generator>
88      <LastGenOutput>Settings.Designer.cs</LastGenOutput>
89    </None>
90  </ItemGroup>
91  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
92  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
93       Other similar extension points exist, see Microsoft.Common.targets.
94  <Target Name="BeforeBuild">
95  </Target>
96  <Target Name="AfterBuild">
97  </Target>
98  -->
99</Project>
Note: See TracBrowser for help on using the repository browser.