Free cookie consent management tool by TermsFeed Policy Generator

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

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

added first service method and unittest for service
added abstract unit test for starting a service host (1046)

File size: 5.2 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    <Compile Include="Service References\ServiceManagementRemote\Reference.cs">
66      <AutoGen>True</AutoGen>
67      <DesignTime>True</DesignTime>
68      <DependentUpon>Reference.svcmap</DependentUpon>
69    </Compile>
70    <Compile Include="service\AbstractHeuristicLabServiceTest.cs" />
71    <Compile Include="service\HeuristicLabAuthorizationManagementServiceTest_old.cs" />
72    <Compile Include="service\HeuristicLabManagementServiceTest.cs" />
73  </ItemGroup>
74  <ItemGroup>
75    <Content Include="AuthoringTests.txt" />
76    <None Include="Service References\ServiceManagementRemote\Reference.svcmap">
77      <Generator>WCF Proxy Generator</Generator>
78      <LastGenOutput>Reference.cs</LastGenOutput>
79    </None>
80    <None Include="Service References\ServiceManagementRemote\configuration.svcinfo" />
81    <None Include="Service References\ServiceManagementRemote\configuration91.svcinfo" />
82  </ItemGroup>
83  <ItemGroup>
84    <ProjectReference Include="..\Persistence\Persistence.csproj">
85      <Project>{0B9535EE-DB1E-4174-B6C3-692DE1D8D841}</Project>
86      <Name>Persistence</Name>
87    </ProjectReference>
88    <ProjectReference Include="..\Service\Service.csproj">
89      <Project>{E10132CA-5E9E-41F4-A855-45E5E759790A}</Project>
90      <Name>Service</Name>
91    </ProjectReference>
92  </ItemGroup>
93  <ItemGroup>
94    <Shadow Include="Test References\Persistence.accessor" />
95  </ItemGroup>
96  <ItemGroup>
97    <WCFMetadata Include="Service References\" />
98  </ItemGroup>
99  <ItemGroup>
100    <None Include="app.config" />
101    <None Include="Service References\ServiceManagementRemote\AuthorizationManagementService.wsdl" />
102    <None Include="Service References\ServiceManagementRemote\metadata.xsd" />
103    <None Include="Service References\ServiceManagementRemote\metadata1.xsd" />
104  </ItemGroup>
105  <ItemGroup>
106    <WCFMetadataStorage Include="Service References\ServiceManagementRemote\" />
107  </ItemGroup>
108  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
109  <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
110       Other similar extension points exist, see Microsoft.Common.targets.
111  <Target Name="BeforeBuild">
112  </Target>
113  <Target Name="AfterBuild">
114  </Target>
115  -->
116</Project>
Note: See TracBrowser for help on using the repository browser.