Mercurial > silverbladetech
annotate Library/LibrarySystem/LibrarySystem.csproj @ 43:aef06698d9e2 Test
Added the library tests
author | Steven Hollidge <stevenhollidge@hotmail.com> |
---|---|
date | Wed, 04 Apr 2012 19:20:20 +0100 |
parents | dbd242eb9c33 |
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>{36FBA53C-CC81-4670-9151-5AD0CED4F235}</ProjectGuid> | |
9 <OutputType>Library</OutputType> | |
10 <AppDesignerFolder>Properties</AppDesignerFolder> | |
11 <RootNamespace>LibrarySystem</RootNamespace> | |
12 <AssemblyName>LibrarySystem</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="System" /> | |
37 <Reference Include="System.Core" /> | |
38 </ItemGroup> | |
39 <ItemGroup> | |
40 <Compile Include="Core\Book.cs" /> | |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
41 <Compile Include="Core\Person.cs" /> |
41 | 42 <Compile Include="Interfaces\IBook.cs" /> |
43 <Compile Include="Interfaces\ILibrary.cs" /> | |
44 <Compile Include="Interfaces\IPerson.cs" /> | |
45 <Compile Include="Interfaces\IPublication.cs" /> | |
46 <Compile Include="Interfaces\IPublisher.cs" /> | |
47 <Compile Include="Interfaces\IStock.cs" /> | |
48 <Compile Include="Core\Library.cs" /> | |
49 <Compile Include="Properties\AssemblyInfo.cs" /> | |
50 <Compile Include="Core\Publication.cs" /> | |
51 <Compile Include="Core\Publisher.cs" /> | |
52 <Compile Include="Core\Stock.cs" /> | |
53 </ItemGroup> | |
54 <ItemGroup> | |
55 <None Include="Diagrams\Overview.cd" /> | |
56 </ItemGroup> | |
57 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> | |
43
aef06698d9e2
Added the library tests
Steven Hollidge <stevenhollidge@hotmail.com>
parents:
41
diff
changeset
|
58 <Import Project="$(SolutionDir)\.nuget\nuget.targets" /> |
41 | 59 <!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
60 Other similar extension points exist, see Microsoft.Common.targets. | |
61 <Target Name="BeforeBuild"> | |
62 </Target> | |
63 <Target Name="AfterBuild"> | |
64 </Target> | |
65 --> | |
66 </Project> |