Mercurial > silverbladetech
annotate Library/LibrarySystem.Tests/LibrarySystem.Tests.csproj @ 117:9eadccc3b46c
REST working, next step unit tests
author | stevenh7776 |
---|---|
date | Sun, 27 May 2012 15:06:35 +0100 |
parents | aef06698d9e2 |
children |
rev | line source |
---|---|
41 | 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>{FD4E2D24-E13C-431F-9679-70A5A6753A15}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>LibrarySystem.Tests</RootNamespace> | |
12 <AssemblyName>LibrarySystem.Tests</AssemblyName> | |
13 <TargetFrameworkVersion>v4.0</TargetFrameworkVersion> | |
14 <FileAlignment>512</FileAlignment> | |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
15 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\Library\</SolutionDir> |
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
16 <RestorePackages>true</RestorePackages> |
41 | 17 </PropertyGroup> |
18 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | |
19 <DebugSymbols>true</DebugSymbols> | |
20 <DebugType>full</DebugType> | |
21 <Optimize>false</Optimize> | |
22 <OutputPath>bin\Debug\</OutputPath> | |
23 <DefineConstants>DEBUG;TRACE</DefineConstants> | |
24 <ErrorReport>prompt</ErrorReport> | |
25 <WarningLevel>4</WarningLevel> | |
26 </PropertyGroup> | |
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | |
28 <DebugType>pdbonly</DebugType> | |
29 <Optimize>true</Optimize> | |
30 <OutputPath>bin\Release\</OutputPath> | |
31 <DefineConstants>TRACE</DefineConstants> | |
32 <ErrorReport>prompt</ErrorReport> | |
33 <WarningLevel>4</WarningLevel> | |
34 </PropertyGroup> | |
35 <ItemGroup> | |
36 <Reference Include="nunit.framework"> | |
37 <HintPath>..\packages\NUnit.2.6.0.12054\lib\nunit.framework.dll</HintPath> | |
38 </Reference> | |
39 <Reference Include="System" /> | |
40 <Reference Include="System.Core" /> | |
41 </ItemGroup> | |
42 <ItemGroup> | |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
43 <Compile Include="Core\BookTests.cs" /> |
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
44 <Compile Include="Core\LibraryTests.cs" /> |
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
45 <Compile Include="Core\PersonTests.cs" /> |
41 | 46 <Compile Include="Properties\AssemblyInfo.cs" /> |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
47 <Compile Include="Core\PublicationTests.cs" /> |
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
48 <Compile Include="Core\PublisherTests.cs" /> |
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
49 <Compile Include="Core\StockTests.cs" /> |
41 | 50 </ItemGroup> |
51 <ItemGroup> | |
52 <ProjectReference Include="..\LibrarySystem\LibrarySystem.csproj"> | |
53 <Project>{36FBA53C-CC81-4670-9151-5AD0CED4F235}</Project> | |
54 <Name>LibrarySystem</Name> | |
55 </ProjectReference> | |
56 </ItemGroup> | |
57 <ItemGroup> | |
58 <None Include="packages.config" /> | |
59 </ItemGroup> | |
60 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
61 <Import Project="$(SolutionDir)\.nuget\nuget.targets" /> |
41 | 62 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
63 Other similar extension points exist, see Microsoft.Common.targets. | |
64 <Target Name="BeforeBuild"> | |
65 </Target> | |
66 <Target Name="AfterBuild"> | |
67 </Target> | |
68 --> | |
69 </Project> |