Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Services.Authentication Prototype/UnitTests/UnitTests.csproj @ 3943

Last change on this file since 3943 was 3943, checked in by hmayr, 14 years ago

following changes (#1046):

  • extended DatabaseUtil.cs
  • extended HeuristicLabUser.cs
  • created HeuristicLabUserTest.cs
  • created AbstractHeuristicLabTest.cs
  • implemented a demo method in HeuristicLabMembershipProvider.cs to show usage of HeuristicLabUser.cs and DatabaseUtil.cs
File size: 3.9 KB
Line 
1<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2  <PropertyGroup>
3    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5    <ProductVersion>9.0.30729</ProductVersion>
6    <SchemaVersion>2.0</SchemaVersion>
7    <ProjectGuid>{90873656-FC76-4759-A451-F0FCDA35CAA4}</ProjectGuid>
8    <OutputType>Library</OutputType>
9    <AppDesignerFolder>Properties</AppDesignerFolder>
10    <RootNamespace>UnitTests</RootNamespace>
11    <AssemblyName>UnitTests</AssemblyName>
12    <TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
13    <FileAlignment>512</FileAlignment>
14    <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
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="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
35    <Reference Include="System" />
36    <Reference Include="System.configuration" />
37    <Reference Include="System.Core">
38      <RequiredTargetFramework>3.5</RequiredTargetFramework>
39    </Reference>
40    <Reference Include="System.Data" />
41    <Reference Include="System.Data.DataSetExtensions">
42      <RequiredTargetFramework>3.5</RequiredTargetFramework>
43    </Reference>
44    <Reference Include="System.Data.Linq">
45      <RequiredTargetFramework>3.5</RequiredTargetFramework>
46    </Reference>
47    <Reference Include="System.Runtime.Serialization">
48      <RequiredTargetFramework>3.0</RequiredTargetFramework>
49    </Reference>
50    <Reference Include="System.ServiceModel">
51      <RequiredTargetFramework>3.0</RequiredTargetFramework>
52    </Reference>
53    <Reference Include="System.Web" />
54    <Reference Include="System.Xml" />
55    <Reference Include="System.Xml.Linq">
56      <RequiredTargetFramework>3.5</RequiredTargetFramework>
57    </Reference>
58  </ItemGroup>
59  <ItemGroup>
60    <Compile Include="AbstractHeuristicLabTest.cs" />
61    <Compile Include="HeuristicLabMembershipProviderTest.cs" />
62    <Compile Include="HeuristicLabRoleProviderTest.cs" />
63    <Compile Include="HeuristicLabUserTest.cs" />
64    <Compile Include="Properties\AssemblyInfo.cs" />
65  </ItemGroup>
66  <ItemGroup>
67    <Content Include="AuthoringTests.txt" />
68  </ItemGroup>
69  <ItemGroup>
70    <ProjectReference Include="..\Persistence\Persistence.csproj">
71      <Project>{0B9535EE-DB1E-4174-B6C3-692DE1D8D841}</Project>
72      <Name>Persistence</Name>
73    </ProjectReference>
74    <ProjectReference Include="..\Service\Service.csproj">
75      <Project>{E10132CA-5E9E-41F4-A855-45E5E759790A}</Project>
76      <Name>Service</Name>
77    </ProjectReference>
78  </ItemGroup>
79  <ItemGroup>
80    <Shadow Include="Test References\Persistence.accessor" />
81  </ItemGroup>
82  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
83  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
84       Other similar extension points exist, see Microsoft.Common.targets.
85  <Target Name="BeforeBuild">
86  </Target>
87  <Target Name="AfterBuild">
88  </Target>
89  -->
90</Project>
Note: See TracBrowser for help on using the repository browser.